.carousel-inner {
    position: relative;
  }
  
  .carousel-text h1 {
    font-size: 2.5rem;
    font-weight: bold;
  }

  .carousel-text p {
    font-size: 1.2rem;
    
  }

  @media (max-width: 768px) {
    .carousel-text h1 {
      font-size: 2rem;
    }
    .carousel-text p {
      font-size: 1rem;
    }
  }
  .about-egimt {
    background-color: #f9f9f9; /* Light background for contrast */
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.about-image img {
    border-radius: 15px;
    transition: transform 0.3s ease-in-out;
}
 
.about-image img:hover {
    transform: scale(1.05);
}

.about-egimt p {
    /* font-size: 17px;
    line-height: 1.7; */
    color: var(--text-color);
    text-align: justify;
  }
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgb(0, 0, 0); /* Semi-transparent black */
  border-radius: 50%; /* Optional: Makes the buttons circular */
  padding: 10px; /* Adjust padding for better visibility */
}

@media (max-width: 768px) {
    .about-image img {
        width: 80%;
    }
}
.flowchart {
  text-align: center;
  position: relative;
}

/* Base Box Styling */
.box {
  width: 200px;
  padding: 15px;
  color: white;
  text-align: center;
  font-weight: bold;
  border-radius: 5px;
  margin: 10px auto;
  position: relative;
}

/* Different Box Colors */
.chancellor { background: #77216B; } /* Purple */
.vice-chancellor { background: #C04F15; } /* Dark Red */
.executive-council, .academic-council, .finance-committee { background: #0B5369; } /* Dark Blue */

/* Vertical line from Chancellor to Vice Chancellor */
.vertical-line {
  width: 2px;
  height: 40px;
  background: black;
  margin: 0 auto;
}

/* Lower section to align left & right elements */
.lower-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 70%;
  margin: auto;
  position: relative;
}

/* Left Side (Executive Council) */
.left-branch {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Horizontal line from Vice Chancellor to Executive Council */
.horizontal-line-left {
  width: 80px;
  height: 2px;
  background: black;
  position: relative;
  right: 30px;
  top: 25px;
}

/* Right Side (Academic Council & Finance Committee) */
.right-branch {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

/* Horizontal line from Vice Chancellor to the right branch */
.horizontal-line-right {
  width: 80px;
  height: 2px;
  background: black;
  position: relative;
  left: 30px;
  top: 25px;
}

/* Vertical line connecting Academic & Finance Committee */
.vertical-line-right {
  width: 2px;
  height: 40px;
  background: black;
  position: absolute;
  left: 80px;
  top: 30px;
}

