body,
/* Base font-size for the root element */
html {
  font-size: 16px; /* Adjust this for global scaling */
}

/* Default styling for desktop view */
h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.75rem;
}

h5 {
  font-size: 1.5rem;
}

p {
  font-size: 1rem;
}

/* Responsive adjustments for mobile view */
@media (max-width: 768px) {
  /* Target tablets and smaller devices */
  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.75rem;
  }

  h4 {
    font-size: 1.5rem;
  }

  h5 {
    font-size: 1.25rem;
  }

  p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  /* Target small screens */
  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1.25rem;
  }

  h5 {
    font-size: 1rem;
  }

  p {
    font-size: 0.85rem;
  }
}
ul {
  margin: 0;
  padding: 0;
}

.hero-para-text {
  line-height: 1.1rem;
}
/* Initial hidden state */
.animate-text {
  opacity: 0;
  transform: translateY(20px); /* Move text slightly down */
  transition: opacity 0.5s, transform 0.5s;
}

/* Visible state with animation */
.animate-text.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Animation for side cards */
.animate-card {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-card.animate {
  opacity: 1;
  transform: translateX(0);
}

/* Subtle animation for program cards */
.animate-program {
  opacity: 0;
  transform: translateX(-10px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.animate-program.animate {
  opacity: 1;
  transform: translateX(0);
}

/* Hover effect for side cards */
.side-card:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease-in-out;
}
/* Style the navbar */
.navbar {
  background-color: #fff;
  color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 81px;
}

.scroll-to-top-button-2 {
  font-family: "Roboto Slab", serif;
  font-weight: 400;
  display: flex;
  align-items: center;
  padding-left: 1rem;
  position: fixed;
  bottom: 100px;
  right: 20px;
  background-color: #000000c7;
  color: #fff;
  border: none;
  border-radius: 20px;
  width: 130px;
  height: 50px;
  font-size: 1rem;
  cursor: pointer;
  z-index: 1000;
  transition: background-color 0.3s ease-in-out;
  text-decoration: none;
}

/* Style the navigation brand */
.nav-brand a {
  /* flex:2; */
  display: block;
  width: 175px;
  font-family: "Merriweather Sans", sans-serif;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  font-size: 24px;
}
.nav-brand img {
  width: 100%;
  height: auto;
}
/* .nav-body{
    flex:3;
} */

/* Style the navigation links */
.nav-links {
  font-family: "Roboto Slab", serif;
  font-weight: 400;
  list-style: none;
  display: flex;
  font-size: 20px;
}

/* .nav-links li {
    margin-right: 20px;
    margin-left: 2rem;
} */
.nav-link {
  margin-left: 2rem;
}

.nav-links a {
  color: #000;
  text-decoration: none;
}

.nav-links li.active a {
  color: #7c1f00;
}

/* Add a forward slash (::before pseudo-element) between navlinks */
.nav-links .nav-link:not(:last-child)::after {
  content: "/";
  margin-right: 5px;
  margin-left: 2rem;
}

/* Style the dropdown menu */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 2rem;
  background-color: #333;
  list-style: none;
  padding: 1rem;
  border-radius: 10px;
  z-index: 100;
}
.dropdown-menu--nav a {
  color: #000000;
  text-decoration: none;
  /* display: block; */
  /* display: inline-flex; Makes the anchor and icon display as inline elements */
  text-align: center; /* Vertically aligns the content */
}
.dropdown-menu--nav {
  width: 230px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  padding: 10px;
}

.dropdown-menu--admin a {
  color: #fff;
  text-decoration: none;
  display: inline-flex; /* Makes the anchor and icon display as inline elements */
  align-items: center; /* Vertically aligns the content */
}
.dropdown-menu i {
  margin: 1rem;
}

.hero {
  display: flex;
}

.side-card {
  padding: 2rem;
  display: flex;
}
.side-card h2 {
  font-family: "Merriweather Sans", sans-serif;
  font-weight: 800;
  font-size: larger;
}

.side-card h5 {
  font-family: "Roboto Slab", serif;
  font-weight: 400;
  font-size: small;
}
.side-card a {
  color: #f03d03;
  text-decoration: none;
  display: inline-flex; /* Makes the anchor and icon display as inline elements */
  align-items: center;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
.side-card.one {
  background-color: #10044a;
  background-image: url("assets/checkered-pattern.png");
  color: #e3e0f5;
}

.side-card.two {
  background-color: #10044a;
  background-image: url("assets/checkered-pattern.png");
  color: #e3e0f5;
}

.side-card.three {
  background-color: #10044a;
  background-image: url("assets/checkered-pattern.png");
  color: #e3e0f5;
}
.side-card-icon {
  margin: 2rem;
}
.side-card-icon i {
  font-size: 2rem;
}
.hero-image {
  flex: 3;
  width: 800px; /* Set the width of your container as needed */
  height: 970px; /* Set the height of your container as needed */
  overflow: hidden; /* Clip the image if it overflows the container */
}

.hero-image img {
  width: 100%; /* Make the image width 100% of the container's width */
  height: 100%; /* Make the image height 100% of the container's height */
  object-fit: cover; /* Preserve aspect ratio and cover the container */
}
/* Style the button container */
.section-middle {
  text-align: center; /* Center the buttons horizontally */
  background-color: #f4f4f4; /* Set the background color */
  padding: 2rem; /* Add some padding for spacing */
  background-image: url("assets/axiom-pattern.png");
}

/* Style the buttons */
.button {
  padding: 10px 20px; /* Adjust the button size as needed */
  margin: 1rem; /* Add margin for spacing between buttons */
  font-size: 16px; /* Set the font size */
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #fff; /* Set the text color */
  border: none; /* Remove button borders */
  cursor: pointer;
  border-radius: 10px;
}
.button.yl-bg {
  background-color: #10044a;
}
.button.bl-bg {
  background-color: #10044a;
}
.button.pr-bg {
  background-color: #10044a;
}

.button:hover {
  background-color: #000000; /* Change button color on hover */
}
.about-wsu {
  display: flex;
  padding: 4rem 5rem;
  background-color: #ffb197;
  background-image: url("assets/back-pattern.png");
  color: #10044a;
}
.about-wsu-side {
  flex: 3;
  display: flex; /* Use flexbox to align items vertically */
  flex-direction: column; /* Stack items vertically */
  /* align-items: center;  */
  padding-right: 1rem;
}
.about-wsu-side h2 {
  font-family: "Merriweather Sans", sans-serif;
  font-weight: 800;
  font-size: 2.8rem;
}
.about-wsu-side li {
  list-style: none;
  margin-top: 2rem;
}
.about-wsu-side a {
  text-decoration: none;
  font-family: "Roboto Slab", serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: #10044a;
}
.about-wsu-side a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px; /* Height of the underline */
  bottom: 0;
  left: 0;
  background-color: #007bff;
  transform: scaleX(0); /* Initial scale to hide the underline */
  transform-origin: bottom left; /* Set the transform origin to the bottom left */
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.home_style_custom_text {
  font-size: 0.8rem;
}
.about-wsu-side a:hover {
  font-size: 1rem;
  color: #494077;
}
/* .about-wsu-side a:hover::before{
    transform: scaleX(1); 
    
    
} */

.about-wsu-img {
  flex: 4;
}

.contact-section {
  /* display: flex; */
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 50px;
  background-color: #f4f4f4;
  background-image: url("assets/axiom-pattern.png");
}

.contact-form {
  max-width: 400px;
  flex: 1;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.contact-form--home {
  flex: 1;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.contact-form--home form {
  padding: 2rem;
  width: 100%;
  max-width: 400px;
  text-align: left;
  margin-top: 20px;
  font-family: "Roboto Slab", serif;
  font-weight: 400;
  background-color: #f0f0f0;
  border-radius: 10px;
}

.contact-section h2 {
  color: #333;
  font-family: "Merriweather Sans", sans-serif;
  font-weight: 500;
}

.contact-form {
  padding: 2rem;
  width: 400px;
  text-align: left;
  margin-top: 20px;
  font-family: "Roboto Slab", serif;
  font-weight: 400;
  background-color: #f0f0f0;
  border-radius: 10px;
}

.contact-form label,
.contact-form input,
.contact-form textarea,
.contact-form button {
  display: block;
  margin-bottom: 10px;
}

.contact-description {
  flex: 1;
  max-width: 400px;
  text-align: center;
  padding: 20px;
  background-color: #f0f0f0;
  border-radius: 10px;
}

.contact-description h3 {
  color: #333;
  font-family: "Roboto Slab", serif;
  font-weight: 400;
}

.contact-description p {
  color: #777;
  margin: 10px 0;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

.contact-description a {
  color: #007bff;
  text-decoration: none;
}

.contact-description a:hover {
  text-decoration: underline;
}
form {
  margin: 0 auto;
  text-align: center;
}

label {
  display: block;
  font-weight: bold;
  margin: 10px 0;
}

input[type="tel"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  margin: 5px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f7f7f7;
  color: #333;
  font-size: 16px;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

input[type="submit"] {
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
button[type="submit"] {
  background-color: #000;
  color: #fff;
  padding: 1rem;
  border-radius: 5px;
}
button[type="submit"]:hover {
  background-color: #fff;
  color: #000;
}
.explore-program {
  /* display: flex; */
  font-family: "Merriweather Sans", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  text-align: center;
  background-color: rgb(213, 194, 255);
  padding: 4rem 5rem;
  background-image: url("assets/black-thread-light.png");
}
.program-card {
  width: 90%;
  /* padding: 1rem; */
  box-sizing: border-box;
  margin: 0.5rem;
  text-align: center;
  background-color: #edebf3;
  padding: 1rem;
  /* margin: 2rem; */
  border-radius: 10px;
  /* width: 150px; */
  max-width: 290px;
  background-image: url("assets/diagonal-noise.png");
  transform: translateY(0);
  z-index: 1;
}
@media (max-width: 1250px) {
  .program-cards {
    flex-direction: column;
    /* Any other styles for smaller screens */
  }
  .program-card {
    margin-left: auto;
    margin-right: auto;
    /* Any other styles for smaller screens */
  }
}
.program-card a {
  font-size: 1rem;
  cursor: pointer;
  color: #f03d03;
}
.program-cards {
  display: flex;
  justify-content: space-between;
  color: #220c42;
}

.pro-card-title {
  font-family: "Merriweather Sans", sans-serif;
  font-weight: 300;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.card-icon {
  font-size: 2rem;
}
.program-card p {
  font-family: "Roboto Slab", serif;
  font-weight: 400;
  font-size: 1rem;
  margin-top: 0px;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 100, "GRAD" 0, "opsz" 24;
  color: #f59b29;
}
/* .card {
    background-color: #007bff;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.bottom-card {
    margin-top: 20px;
    transform: translateY(100%);
    
}
.top-card {
    background-color: #f0f0f0;
    color: #333;
    transform: translateY(0);
    z-index: 1;
    position: relative;
}
.card-container:hover .top-card {
    transform: translateY(-100%);
} */
.campus-section {
  text-align: center;
  padding: 4rem 5rem;
  background-image: url("assets/back-pattern.html\ \(1\).png");
}

.campus-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-family: "Merriweather Sans", sans-serif;
  font-weight: 800;
  display: block;
  font-weight: bold;
  color: #220c42;
}

.campus-cards {
  display: flex;
  justify-content: space-between;
}

.campus-card {
  /* flex: 0 0 calc(33.33% - 20px); */
  width: 500px;
  background-image: url("assets/campus_1.png");

  border-radius: 10px;
  padding: 1rem;
  color: #fff;
  text-align: left;
  margin: 1rem;
}

.card-content {
  padding: 1rem;
}

.card-content h3 {
  font-family: "Roboto Slab", serif;
  font-weight: 400;
  font-size: 1.3rem;
  margin: 0;
  color: #220c42;
}

.card-content p {
  font-family: "Merriweather Sans", sans-serif;
  font-weight: 800;
  font-size: 16px;
  margin: 10px 0;
  color: #220c42;
}

.visit-button {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #220c42;
  color: #ddd5e9;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out;
}

.visit-button:hover {
  background-color: #ddd5e9;
  color: #220c42;
}
.news-section {
  padding: 4rem 5rem;
  /* display: flex; */
  text-align: center;
  background-image: url("assets/checkered-pattern.png");
  background-color: #eebbdf;
  color: #160c13;
}
.news-section h2 {
  font-family: "Merriweather Sans", sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
}

.left-div p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}
.left-div h3 {
  font-family: "Roboto Slab", serif;
  font-weight: 400;
}
.right-div h3 {
  font-family: "Roboto Slab", serif;
  font-weight: 200;
  font-size: 2rem;
}
.it-st {
  font-weight: 300;
}

.left-div,
.right-div {
  width: 50%;
  padding: 2rem 5rem;
}

.news-card {
  display: flex;
  margin: 10px 0;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #22121e;
  color: #f5cceb;
}
.news-card a {
  text-decoration: none;
}

.news-image img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 5px;
}
.news-container {
  display: flex;
}
.news-card-container {
  display: flex;
}

.news-card-date {
  margin: 4px;
  padding: 4px;
  width: 100px;
  height: 100px;
  border: 1px solid #f5cceb;
}
.news-card-month {
  font-family: "Merriweather Sans", sans-serif;
  font-weight: 800;
  color: #ffffff;
}
.rm-1 {
  margin: 1rem;
}
.news-info-container {
  margin-left: 1rem;
  margin-right: 1rem;
}
.news-info-container h5 {
  font-family: "Roboto Slab", serif;
  font-weight: 400;
  color: #ffffff;
  font-size: 1rem;
}
.news-info-container p {
  font-family: "Merriweather Sans", sans-serif;
  font-weight: 800;
  color: #ffffff;
}
.news-info-container span {
  margin-right: 10px;
}
/* .news-card:hover{
    background-color: #f5cceb;
    
}
.news-card-date:hover{
    color: #22121e;
} */
.footer {
  background-color: #000000;
  background-image: url("assets/dark-geometric.png");
  color: #e9e7e7;

  /* display: flex; */
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 4rem 5rem;

  padding-bottom: 1rem;
}

.brand-info {
  flex: 1;
  /* display: flex; */
  align-items: center;
  margin-bottom: 10px;
  text-align: center;
  margin-left: 3rem;
  margin-right: 3rem;
}

.brand-info img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
.brand-info h4 {
  font-family: "Merriweather Sans", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  margin-top: 26px;
}
.brand-info h5 {
  font-size: 1rem;
}
.brand-info h5,
.brand-info p,
.brand-info a {
  font-family: "Roboto Slab", serif;
  font-weight: 400;
}

.programs-and-links {
  flex: 2;
  display: flex;
  justify-content: space-between;
  margin-left: 2rem;
}

/* .programs-and-links h5{
    
    font-size: 1rem;
} */
.programs-and-links a {
  font-family: "Roboto Slab", serif;
  font-weight: 400;
}
.programs-and-links li {
  margin-top: 2rem;
}

.programs,
.site-links,
.essential-links {
  flex: 1;
  margin-right: 20px;
}
.essential-links li {
  margin-top: 2rem;
  font-family: "Roboto Slab", serif;
  font-weight: 400;
}

.programs h5,
.site-links h5,
.essential-links h5 {
  font-size: 1rem;
  margin-bottom: 10px;
  font-family: "Merriweather Sans", sans-serif;
  font-weight: 800;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 5px;
}

.footer a {
  text-decoration: none;
  color: #fff;
}

.footer a:hover {
  text-decoration: underline;
}

.secondary-navbar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  color: #000000;
  /* padding: 10px 0; */
  transition: top 0.3s ease;
  z-index: 1000;
}

.secondary-navbar.show {
  top: 0;
  display: block;
  display: flex;
}
.secondary-navbar-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 5rem;
}
.secondary-navbrand a {
  text-decoration: none;
  font-family: "Roboto Slab", serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: #000;
  width: 50px;
  display: block;
}
.secondary-navbrand img {
  width: 100%;
  height: auto;
}
.scroll-line {
  height: 4px;
  background-color: #f03d03;
  width: 0;
  position: absolute;
  bottom: 0;
  transition: width 0.3s ease;
}
.scroll-to-top-button {
  font-family: "Roboto Slab", serif;
  font-weight: 400;
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #000000c7;
  color: #fff;
  border: none;
  border-radius: 20px;
  width: 130px;
  height: 50px;
  font-size: 1rem;
  cursor: pointer;
  z-index: 1000;
  transition: background-color 0.3s ease-in-out;
}

.scroll-to-top-button:hover {
  background-color: #000000;
}
.sidebar {
  flex: 1;
  /* background: #333; */
  color: #fff;
  /* padding: 20px; */
  padding-left: 4rem;
  background-color: #d0c3f7;
  background-image: url("assets/diagonal-noise.png");
}
.sidebar h2 {
  font-family: "Merriweather Sans", sans-serif;
  font-weight: 800;
  color: #1a181f;
  font-size: 1.5rem;
}
.sidebar a {
  text-decoration: none;
  color: #1a181f;
  font-family: "Roboto Slab", serif;
  font-weight: 400;
}
.sidebar ul {
  list-style-type: none;
}
.sidebar li {
  margin: 1rem;
}

.main-content {
  flex: 5;
  padding: 20px;
}

/* Breadcrumb styles */
.breadcrumb {
  margin-bottom: 10px;
  text-decoration: none;

  color: #1a181f;
  font-family: "Merriweather Sans", sans-serif;
  font-weight: 800;
}
.main-content h1 {
  color: #1a181f;
  font-family: "Merriweather Sans", sans-serif;
  font-weight: 800;
  font-size: 2rem;
}
.main-content h2 {
  color: #1a181f;
  font-family: "Roboto Slab", serif;
  font-weight: 400;
}
.main-content h4 {
  color: #1a181f;
  font-family: "Roboto Slab", serif;
  font-weight: 400;
  font-size: 1.2rem;
}
.main-content h5 {
  color: #1a181f;
  font-family: "Roboto Slab", serif;
  font-weight: 400;
  font-size: 1rem;
}
.breadcrumb a {
  text-decoration: none;

  color: #1a181f;
  font-family: "Merriweather Sans", sans-serif;
  font-weight: 800;
}
/* Program cards styles */
/* .program-cards {
    display: grid;
    grid-template-columns: 1fr 1fr; 
            grid-template-rows: auto auto;  
            gap: 1rem; 
} */

/* Additional styles for cards */
.program-card h3 {
  font-size: 18px;
  margin: 0;
  color: #1b1104;
  font-family: "Roboto Slab", serif;
  font-weight: 400;
}

.program-card p {
  font-size: 14px;
  margin: 0;
}
.programs-section {
  display: flex;
}
.sidebar a.active {
  font-size: 1.5rem;
}
.content-type-1 h3 {
  color: #1b1104;
  font-family: "Roboto Slab", serif;
  font-weight: 400;
  font-size: 2rem;
}
.content-type-1 h4 {
  color: #1b1104;
  font-family: "Roboto Slab", serif;
  font-weight: 200;
  font-size: 1.7rem;
}
.ct1-cards {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two columns with equal width */
  grid-template-rows: auto auto; /* Two rows with automatic height */
  gap: 1rem;
}
.ct1-card {
  width: 450px;
  height: 250px;
  overflow: hidden;
  margin: 2rem 1rem;
}
.content-type-2 {
  text-align: center;
}
.ct2-cards {
  display: flex;
  justify-content: space-between;
}
.content-type-2 h3 {
  color: #1b1104;
  font-family: "Roboto Slab", serif;
  font-weight: 400;
  font-size: 2rem;
}
.ct2-card {
  background-color: #f59b29;
  padding: 1rem 2rem;
  border-radius: 10px;
  background-image: url("assets/dimension.png");
}
.ct2-card h4 {
  color: #1b1104;
  font-family: "Merriweather Sans", sans-serif;
  font-weight: 800;
  font-size: 2rem;
}
.ct2-card p {
  font-family: "Roboto Slab", serif;
  font-weight: bold;
}
.content-type-3 {
  padding: 1rem 2rem;
}
.ct3-card {
  padding: 0.2rem;
  background-color: #f59b29;
  display: inline-block;
  background-image: url("assets/axiom-pattern.png");
}
.content-type-3 h3 {
  color: #1b1104;
  font-family: "Merriweather Sans", sans-serif;
  font-weight: 800;
  font-size: 2rem;
}
.ct3-card-text {
  max-width: 430px;
  padding: 1rem;
  font-family: "Roboto Slab", serif;
  font-weight: bold;
  color: #1b1104;
}
.footer-brand-name {
  margin-top: 0.7rem;
}
.ticker-container {
  width: 100%;
  height: 50px;
  background-color: #10044a;
  overflow: hidden;
  position: relative;
  font-family: "Roboto Slab", serif;
  font-weight: 400;
}

.ticker {
  white-space: nowrap;
  position: absolute;
  animation: tickerMove 15s linear infinite;
  transform: translateX(100%);
}

.ticker p {
  color: #f03d03;
  font-size: 18px;
  margin: 0;
  padding: 10px;
}

@keyframes tickerMove {
  0% {
    transform: translateX(200%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.faculty-cards {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two columns with equal width */
  grid-template-rows: auto auto; /* Two rows with automatic height */
  gap: 1rem;
}
.faculty-card {
  background-color: #edebf3;
  /* padding: 2rem; */
  /* margin: 2rem; */
  border-radius: 10px;
  width: 150px;
  background-image: url("assets/diagonal-noise.png");
  transform: translateY(0);
  z-index: 1;
  text-align: center;
  width: 90%;

  padding: 1rem;
  box-sizing: border-box;
  margin: 0.5rem;
}
.faculty-card h3 {
  font-size: 18px;
  margin: 0;
  color: #1b1104;
  font-family: "Roboto Slab", serif;
  font-weight: 400;
}
.CTA {
  text-decoration: none;
}
.hamburger {
  display: none;
  cursor: pointer;
}
.foot-main {
  display: flex;
}
.foot-end-text {
  color: #fafafa;
  font-family: "Roboto", serif;
  font-weight: 400;
  font-size: 0.7rem;
}

/* .faculty-card p{

} */
@media only screen and (max-width: 950px) {
  /* Styles for tablets */
  .ticker-container {
    display: none;
  }
  .navbar {
    display: none;
  }
  .secondary-navbar {
    display: block;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 60px;
    left: 0;
    background-color: #ffffff;
    z-index: 1;
  }

  .nav-links.show {
    display: flex;
    display: block;
  }

  .hamburger {
    display: block;
  }
  .nav-link {
    margin: 1rem;
  }
  .nav-links .nav-link:not(:last-child)::after {
    content: none;
    margin-right: 0;
    margin-left: 0;
  }
  .about-wsu {
    flex-direction: column-reverse;
    text-align: center;
  }
  .hero {
    flex-direction: column-reverse;
    /* text-align: center; */
  }
  .hero-image {
    width: 100%;
  }
  .programs-and-links {
    flex-direction: column;
  }
  .brand-info h4 {
    font-size: 1.5rem;
  }
  .programs-section {
    flex-direction: column;
  }
  .sidebar {
    margin-top: 60px;
  }
  .content-type-1 h3 {
    font-size: 1.5rem;
  }
  .foot-main {
    text-align: center;
    flex-direction: column;
  }
  .contact-section {
    padding: 30px 20px;
  }
  .contact-form--home form {
    width: 90%;
    max-width: 400px;
    padding: 1.5rem;
  }
}
@media only screen and (max-width: 500px) {
  .programs-and-links {
    text-align: center;
    flex-direction: column;
  }
  /* .footer-main{
        text-align: center;
        flex-direction: column;
    } */
  .explore-program h2 {
    font-size: 1.5rem;
  }
  .main-content h1 {
    font-size: 1.5rem;
  }
  .main-content h2 {
    font-size: 1.2rem;
  }
  .faculty-cards {
    grid-template-columns: 1fr;
  }
  .content-type-1 h3 {
    font-size: 1.2rem;
  }
  .content-type-1 {
    text-align: center;
  }
  .contact-section {
    padding: 20px 10px;
  }
  .contact-form--home form {
    width: 95%;
    padding: 1rem;
  }
}

/* Style for the dropdown container */
.dropdown {
  position: relative;
  display: inline-block;
}
.faq-item {
  margin-bottom: 20px;
  font-family: "Roboto", serif;
  font-weight: 400;
}

.question {
  font-weight: bold;
  cursor: pointer;
  color: #000000;
  padding: 1rem;
  margin: 1rem;
  background-color: #d0c3f7;
}

.answer {
  display: none;
  margin-top: 10px;
  padding: 1rem;
  margin: 1rem;
}
.pro_link_style:hover {
  color: #f03d03;
}

.fac_sec_list_text_2 {
  position: relative;
  top: -50px;
  text-align: center;
}
.fac__list_index_2 {
  position: relative;
  text-align: center;
  top: -50px;
  font-family: "Roboto Slab", serif;
  font-weight: bold;
  color: #466fd6;
}
.fac_sec_card_1 {
  flex: 1;
  margin: 10px;
  padding: 20px;
  background-color: #dee7f7;
  border-radius: 10px;
}
.fac_sec_card_2 {
  flex: grow;
  margin: 10px;
  padding: 20px;
  background-color: #dee7f7;
  border-radius: 10px;
}
.zero_pad {
  padding: 0;
}
.fac_img_style {
  border-radius: 5px;
}
.fac_img_container {
  padding: 4rem 0;
}
.fac_sec_container_1 {
  display: flex;
  flex-direction: row-reverse;
}
.text_center {
  text-align: center;
}
.quadrilateral {
  width: 25px;
  height: auto;
  background-color: #c7dbff;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 10% 100%);
  border-radius: 5px;
}
.quadrilateral_opp {
  width: 25px;
  height: auto;
  background-color: #c7dbff;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
  border-radius: 5px;
  position: relative;
  top: -1px;
}
.list_style_4 {
  padding: 0.5rem 0.8rem;
  background-color: #dee7f7;
  border-radius: 15%;
  color: #466fd6;
  font-family: "Roboto Slab", serif;
  position: relative;
}
.fac_section {
  margin: 4rem 10rem;
  padding: 1rem 2rem;
  background-color: #f0f2f7;
  border-radius: 5px;
}
.fac_card_container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* two equal-width columns */
}
.fac_hero_heading {
  font-family: "Roboto Slab", serif;
  font-weight: bold;
  color: #f98a47;
  font-size: 45px;
}
.fac_hero_text {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #f1f5ff;
}
.fac_list_index {
  margin: 2rem;
  padding: 0.5rem 0.8rem;
  background-color: #dee7f7;
  border-radius: 15%;
  color: #466fd6;
  font-family: "Roboto Slab", serif;
  font-weight: bold;
}
.fac_card_title {
  font-family: "Roboto Slab", serif;
  font-weight: bold;
  color: #466fd6;
}
.fac_card_text {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #010c29;
}
.fac_card {
  margin: 1rem;
  padding: 2rem;
  background-color: #dee7f7;
  border-radius: 5px;
}
.fac_sec_title {
  font-family: "Roboto Slab", serif;
  font-weight: bold;
  color: #466fd6;
}
.fac_sec_text {
  padding: 0 2rem;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #010c29;
}
/* .sec_text_pad {
            
        } */
.fac_hero {
  position: relative;
  padding: 5rem 3rem;

  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../assets/22_2_new_5.webp"); /* Replace with your image path */
  background-size: cover;

  filter: brightness(0.5); /* Adjust the brightness as needed */
  z-index: -1;
}

.content {
  z-index: 1;
  text-align: center;
  color: #fff;
}
.fac_list_container {
  list-style: none;
  padding: 0;
}
.fac_list_container li {
  position: relative;
  padding-left: 20px; /* Adjust the padding as needed */
  margin-bottom: 10px; /* Adjust the margin as needed */
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #010c29;
}
.fac_list_container li::before {
  content: "#"; /* Custom dot character or use an image if needed */
  position: absolute;
  left: 0;
  color: #3498db; /* Adjust the color as needed */
  font-size: 1.1rem; /* Adjust the font size as needed */
  margin-right: 5px; /* Adjust the spacing between dot and text */
}
.fac_disclaimer {
  font-size: 0.7rem;
}
.list_style_5 {
  padding: 0.5rem 0.8rem;
  margin: 2rem 0;
  background-color: #dee7f7;
  border-radius: 15%;
  color: #466fd6;
  font-family: "Roboto Slab", serif;
  position: relative;
}
.part_sec_1 {
  background-color: #fbe3cd;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.part_sec_1 h2 {
  color: #331b03;
  text-align: center;
}
.part_sec_1 p {
  color: #331b03;
  text-align: center;
}
.part_sec_2 {
  background-color: #c8e4fd;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.part_sec_2 h2 {
  color: #011527;
  text-align: left;
}
.part_sec_2 p {
  color: #011527;
  text-align: left;
  padding: 0;
}
.part_sec_3 {
  background-color: #e3ffeb;
}
.part_sec_3 h2 {
  color: #01200a;
  text-align: left;
}
/* .part_sec_3 p{
        color: #01200A;
        text-align: left;
        
       } */
.part_text_mute {
  color: #01200a80;
  font-weight: bolder;
  padding: 0;
}

.form-container {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  width: 80%;
  margin: 2rem auto;
  /* margin-left: auto;
            margin-right: auto; */
}

input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

input[type="date"] {
  -webkit-appearance: none;
  appearance: none;
  padding: 10px;
}

input[type="submit"] {
  background-color: #4caf50;
  color: #fff;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.main_container {
  display: flex;
  flex-direction: column;
  font-family: "Roboto Slab", serif;
  font-weight: 400;
}
.btn-primary {
  padding: 10px 20px;
  margin: 1rem;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #000000;
  border: none;
  cursor: pointer;
  border-radius: 10px;
}

.scroll-to-top-button-2 {
  font-family: "Roboto Slab", serif;
  font-weight: 400;
  display: flex;
  align-items: center;
  padding-left: 1rem;
  position: fixed;
  bottom: 100px;
  right: 20px;
  background-color: #000000c7;
  color: #fff;
  border: none;
  border-radius: 20px;
  width: 130px;
  height: 50px;
  font-size: 1rem;
  cursor: pointer;
  z-index: 1000;
  transition: background-color 0.3s ease-in-out;
  text-decoration: none;
}
.scroll-to-top-button-2:hover {
  background-color: #000000ff;
}
.whatsapp-logo {
  height: 40px;
  width: 40px;
  padding-right: 0.5rem;
}
.contact-whatsapp {
  font-family: "Roboto Slab", serif;
  text-decoration: none;
  font-weight: bold;
  margin: 1rem;
  text-align: center;

  display: block;
  color: black;
}
.con-logo {
  height: 16px;
  width: 16px;
}
.contact-text {
  font-size: larger;
  font-weight: bold;
  text-align: center;
}
.footer-cta__wa {
  display: flex;
  border-bottom: 1px dashed #fff;
}
.footer-cta__wa span {
  margin-bottom: 5px;
}
.lazyload {
  opacity: 0;
  transition: opacity 0.5s;
}
.lazyloaded {
  opacity: 1;
}
