/* =====================================
   NAVBAR TEXT – LIGHT WEIGHT FINAL
   ===================================== */

#theme-menu-two .navbar-nav > .nav-item > .nav-link {
    color: #000 !important;

    /* Make text LIGHT */
    font-family: 'Poppins', sans-serif !important;
    font-weight: 200 !important;      /* light */
    letter-spacing: 0.3px;

    /* Size control */
    transform: scale(1.2);            /* keep readable, not thick */
    transform-origin: center;

    line-height: 1.2 !important;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Hover & active */
#theme-menu-two .navbar-nav > .nav-item > .nav-link:hover,
#theme-menu-two .navbar-nav > .nav-item.active > .nav-link {
    color: #2878EB !important;
}

/* =====================================
   REMOVE DROPDOWN ARROW – HOME & ABOUT
   ===================================== */

#theme-menu-two .navbar-nav .nav-link.no-arrow::before,
#theme-menu-two .navbar-nav .nav-link.no-arrow::after {
    content: none !important;
    display: none !important;
}

#theme-menu-two .navbar-nav .nav-link.no-arrow {
    padding-right: 0 !important;
}


/* for bullet ponts */

.edu-list {
  list-style: none;
  line-height: 1.8;     
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

.edu-list li {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.edu-list li span {
  margin-left: 10px;
   line-height: 1.2 !important;
}

/* Book colors */
.book-8th { color: #1E88E5; }     /* Blue */
.book-10th { color: #43A047; }   /* Green */
.book-12th { color: #E53935; }   /* Red */
.book-open { color: #8E24AA; }   /* Purple */



/* for add PDF Icon */
.pdf-container {
    margin-top: 20px;
    display: flex;
    justify-content: flex-start;
}

.pdf-button {
    display: inline-flex;
    align-items: center;
    background-color: #fdf2f2; /* Light red background */
    border: 1px solid #d32f2f; /* Red border */
    color: #d32f2f; /* Red text */
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.pdf-button:hover {
    background-color: #d32f2f; /* Turns red on hover */
    color: #ffffff; /* Turns text white on hover */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.pdf-icon {
    font-style: normal;
    font-size: 1.4rem;
    margin-right: 10px;
}













