/* scroll bar css starts */

html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 12px; /* Width of the scrollbar */
}

/* Customize the scrollbar thumb */
::-webkit-scrollbar-thumb {
  background-color: gray;
  border-radius: 10px; /* Rounded corners for the thumb */
}

/* Customize the scrollbar track */
::-webkit-scrollbar-track {
  background-color: var(--secondry-color); /* Track color */
}

/* dark mode section starts  */

:root {
  --primary-color: white;
  --secondry-color: linear-gradient(to right, #ff0000, blue);
  --secondry-color2: #212121;
}

.dark-theme {
  --primary-color: #212121;
  --secondry-color: linear-gradient(to right, cyan, orange);
  --secondry-color2: white;
}

body {
  background-color: var(--primary-color);
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

#icon {
  width: 40px;
  cursor: pointer;
}

/* side bar starts  */

.container {
  display: flex;
}

.menu-icon {
  cursor: pointer;
  padding: 10px;
  color: white;
  margin-bottom: 40px;
  margin-right: 20px;
}

.bar {
  width: 25px;
  height: 2px;
  background-color: orange;
  margin: 4px 0;
  margin-top: 0px;
  transition: 0.4s;
}

.sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  top: 0;
  right: -250px;
  background-image: linear-gradient(to left, #4b0082, #800080, #ff69b4);
  overflow-x: hidden;
  transition: 0.4s;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.sidebar li {
  margin: 10px 0;
}

.sidebar a {
  text-decoration: none;
  color: white;
  font-size: 22px;
  font-weight: bold;
}

.sidebar a:hover {
  color: #007bff;
}

.sidebar.active {
  width: 250px;
  left: 0;
}

.close-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
  color: white;
}

.close-icon:hover {
  color: #007bff;
}

/* header-down side starts */

.marquee {
  position: fixed;
  top: 0;
  left: 0;
  margin-top: 70px;
  font-size: 30px;
  font-weight: bold;
  color: rgb(15, 14, 13);
  background-color: rgb(249, 230, 205);
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
  white-space: nowrap;
  z-index: 1000;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

/* republic day offer css starts  */

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

/* Republic Day Offer Section */

.republic-theme-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  color: #2200ff;
  background: linear-gradient(to right, #ff9933, #ffffff, #128807); /* Saffron, White, Green */
  border: 2px solid #00008b; /* Navy blue border */
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.republic-theme-button:hover {
  background: linear-gradient(to right, #128807, #ffffff, #ff9933); /* Reverse colors on hover */
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
}

.republic-theme-button:active {
  transform: scale(1);
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.2);
}

.chakra-icon {
  width: 24px;
  height: 24px;
  /* margin-right: 10px; */
  border-radius: 50%;
}




.republic-day-offer {
  background-color: #fff;
  padding: 50px 0;
  text-align: center;
  margin-top: 100px;
}

.sale-container {
  width: 80%;
  margin: 0 auto;
}

.offer-title {
  font-size: 36px;
  color: #30247d; /* Orange from Tiranga */
  font-weight: bold;
  margin-bottom: 20px;
}

.offer-subtitle {
  font-size: 18px;
  color: #3e3e3e;
  margin-bottom: 40px;
}

.offers {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.offer-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  width: 22%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  position: relative;
}

.offer-item:hover {
  transform: translateY(-10px);
}

.offer-item h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 15px;
}

.original-price {
  font-size: 18px;
  font-weight: bold;
  color: #ff6600; /* Orange */
  /* margin-top: 20px; */
}
#third {
  margin-top: 45px;
}
#fourth {
  margin-top: 45px;
}

.crossed-price {
  text-decoration: line-through;
  color: #ff0000; /* Red */
}

.discounted-price {
  font-size: 22px;
  font-weight: bold;
  color: #28a745; /* Green for discount */
}

.you-saved {
  font-size: 18px;
  color: #ff0000; /* Red for savings */
  font-weight: bold;
  margin-top: 10px;
}

.flag-strip {
  position: absolute;
  top: -10px;
  left: 50%;
  width: 100%;
  height: 8px;
  background: linear-gradient(
    to right,
    #200c81 33%,
    #ffffff 33%,
    #ffffff 66%,
    #1289fe 66%
  );
  transform: translateX(-50%);
}

.hurry-up {
  margin-top: 30px;
  font-size: 20px;
  font-weight: bold;
  color: #ff0000; /* Red */
  background-color: #fff3cd;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* pay button for sale css starts  */

.pay-button {
  padding: 15px 30px;
  font-size: 20px;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  background: linear-gradient(
    to right,
    #ff9933,
    #ffffff,
    #138808
  ); /* Tiranga colors */
  background-size: 300% 100%;
  background-position: 0 0;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  margin-top: 5px;
  font-style: italic;
  font-weight: 600;
}
.pay-button a {
  text-decoration: none;
  font-style: none;
}

.pay-button:hover {
  background-position: 100% 0;
}

.pay-button:active {
  transform: scale(0.95);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* pay button for sale css ends  */

/* Responsive Design */
@media (max-width: 768px) {
  .offers {
    flex-direction: column;
    align-items: center;
  }

  .offer-item {
    width: 80%;
  }

  .offer-title {
    font-size: 30px;
  }

  .offer-subtitle {
    font-size: 16px;
  }

  .hurry-up {
    font-size: 18px;
  }
}





/* republic day offer css ends  */

.borber-hover {
  text-align: center;
}

:hover.borber-hover {
  border: 2px solid blue;
  transition: 0.5s;
  scale: 1.1;
}

.container {
  margin-bottom: 20px;
  margin-top: 2%;
  display: flex;
  flex-direction: column;
}

.container h2 {
  font-size: 25px;
  font-style: bold;
  color: var(--secondry-color2);
  text-align: center;
}

/* MCA Integrated */

.semesters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* Creates four equal columns */
  row-gap: 40px;
  column-gap: 60px;
  margin-left: 20px;
  margin-right: 20px;
  margin-top: 40px;
  
}

.curriculum1 {
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  height: 140px;
  text-align: center;
   padding: 20px;

}

.curriculum1 h1 {
  font-size: 25px;
  font-weight: bold;
}

.curriculum1 label {
  font-weight: bold;
  margin-left: 10px;
}

.btn {
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  width: 90px;
  font-size: 16px;
  font-weight: bold;
  margin-left: 20px;
  text-decoration: none;
  /* margin-bottom: 10px; */
  border-radius: 10px;
}

#downloadLink1 {
  text-align: center;
}

/* semester2 */

.curriculum2 {
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  height: 140px;
  padding: 20px;
}

.curriculum2 h1 {
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  /* margin-bottom: 20px; */
}

.curriculum2 label {
  font-weight: bold;
  margin-left: 10px;
}

/* semester3 */

.curriculum3 {
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  height: 140px;
  padding: 20px;
}

.curriculum3 h1 {
  font-size: 25px;
  font-weight: bold;
  text-align: center;
}

.curriculum3 label {
  font-weight: bold;
  margin-left: 10px;
}

/* semester4 */

.curriculum4 {
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  height: 140px;
  padding: 20px;
}

.curriculum4 h1 {
  font-size: 25px;
  font-weight: bold;
  text-align: center;
}

.curriculum4 label {
  font-weight: bold;
  margin-left: 10px;
}

/* semester5 */

.curriculum5 {
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  height: 140px; 
  padding: 20px;
}

.curriculum5 h1 {
  font-size: 25px;
  font-weight: bold;
  text-align: center;
}

.curriculum5 label {
  font-weight: bold;
  margin-left: 10px;
}

/* semester 6 */

.curriculum6 {
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  height: 140px;
  padding: 20px;
}

.curriculum6 h1 {
  font-size: 25px;
  font-weight: bold;
  text-align: center;
}

.curriculum6 label {
  font-weight: bold;
  margin-left: 10px;
}

/* semester 7 */

.curriculum7 {
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  height: 140px;
  padding: 20px;
}

.curriculum7 h1 {
  font-size: 25px;
  font-weight: bold;
  text-align: center;
}

.curriculum7 label {
  font-weight: bold;
  margin-left: 10px;
}

/* semester 8 */

.curriculum8 {
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  height: 140px;
  padding: 20px;
}

.curriculum8 h1 {
  font-size: 25px;
  font-weight: bold;
  text-align: center;
}

.curriculum8 label {
  font-weight: bold;
  margin-left: 10px;
}

/* semester 9 */

.curriculum9 {
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  height: 140px;
  padding: 20px;
}

.curriculum9 h1 {
  font-size: 25px;
  font-weight: bold;
  text-align: center;
}

.curriculum9 label {
  font-weight: bold;
  margin-left: 10px;
}

/* mba section starts */

.mba-container {
  margin-bottom: 20px;
  margin-top: 5%;
  
}

.mba-container h2 {
  font-size: 25px;
  font-style: bold;
  color: var(--secondry-color2);
  text-align: center;
  text-decoration: underline;
  margin-bottom: 40px;
}

.mba-semesters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* Creates four equal columns */
  row-gap: 40px;
  column-gap: 60px;
  margin-left: 20px;
  margin-right: 20px;
  
}

.mba-curriculum1 {
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  height: 140px;
  text-align: center;
  padding: 20px;
}

.mba-curriculum1 h1 {
  font-size: 25px;
  font-weight: bold;
  text-align: center;
  /* color: blue; */
}

.mba-curriculum1 label {
  font-weight: bold;
  margin-left: 10px;
}

/* semester2 */

.mba-curriculum2 {
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  height: 140px;
  text-align: center;
  padding: 20px;
}

.mba-curriculum2 h1 {
  font-size: 25px;
  font-weight: bold;
  text-align: center;
}

.mba-curriculum2 label {
  font-weight: bold;
  margin-left: 10px;
}

/* semester3 */

.mba-curriculum3 {
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  height: 140px;
  text-align: center;
  padding: 20px;
}

.mba-curriculum3 h1 {
  font-size: 25px;
  font-weight: bold;
  text-align: center;
}

.mba-curriculum3 label {
  font-weight: bold;
  margin-left: 10px;
}

/* semester4 */

.mba-curriculum4 {
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  height: 140px;
  text-align: center;
  padding: 20px;
}

.mba-curriculum4 h1 {
  font-size: 25px;
  font-weight: bold;
  text-align: center;
}

.mba-curriculum4 label {
  font-weight: bold;
  margin-left: 10px;
}

/* semester5 */

.mba-curriculum5 {
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  height: 140px;
  text-align: center;
  padding: 20px;
}

.mba-curriculum5 h1 {
  font-size: 25px;
  font-weight: bold;
  text-align: center;
}

.mba-curriculum5 label {
  font-weight: bold;
  margin-left: 10px;
}

/* semester 6 */

.mba-curriculum6 {
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  height: 140px;
  text-align: center;
  padding: 20px;
}

.mba-curriculum6 h1 {
  font-size: 25px;
  font-weight: bold;
  text-align: center;
}

.mba-curriculum6 label {
  font-weight: bold;
  margin-left: 10px;
}

/* semester 7 */

.mba-curriculum7 {
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  height: 140px;
  text-align: center;
  padding: 20px;
}

.mba-curriculum7 h1 {
  font-size: 25px;
  font-weight: bold;
  text-align: center;
}

.mba-curriculum7 label {
  font-weight: bold;
  margin-left: 10px;
}

/* semester 8 */

.mba-curriculum8 {
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  height: 140px;
  text-align: center;
  padding: 20px;
}

.mba-curriculum8 h1 {
  font-size: 25px;
  font-weight: bold;
  text-align: center;
}

.mba-curriculum8 label {
  font-weight: bold;
  margin-left: 10px;
}

/* semester 9 */

.mba-curriculum9 {
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  height: 140px;
  text-align: center;
  padding: 20px;
}

.mba-curriculum9 h1 {
  font-size: 25px;
  font-weight: bold;
  text-align: center;
}

.mba-curriculum9 label {
  font-weight: bold;
  margin-left: 10px;
}

/* mba starts */

.mba1-container {
  margin-bottom: 20px;
  margin-top: 5%;
  display: flex;
  flex-direction: column;
}

.mba1-container h2 {
  font-size: 25px;
  font-style: bold;
  color: var(--secondry-color2);
  text-align: center;
  margin-bottom: 40px;
}

.mba1-semesters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* Creates four equal columns */
  row-gap: 40px;
  column-gap: 60px;
  margin-left: 20px;
  margin-right: 20px;
}

.mba1-curriculum {
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  height: 140px;
  text-align: center;
  padding: 20px;
}

.mba1-curriculum h1 {
  font-size: 25px;
  font-weight: bold;
}

.mba1-curriculum label {
  font-weight: bold;
  margin-left: 10px;
}

.mba1-downloadButton {
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  width: 110px;
  font-size: 16px;
  font-weight: bold;
  margin-left: 20px;
  /* margin-bottom: 10px; */
}

.mba1-downloadLink {
  text-align: center;
}

/* mba ends  */

/* mca starts  */

.mca-container {
  margin-bottom: 20px;
  margin-top: 5%;
  display: flex;
  flex-direction: column;
}

.mca-container h2 {
  font-size: 25px;
  font-style: bold;
  color: var(--secondry-color2);
  text-align: center;
  margin-bottom: 40px;
}

.mca-semesters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* Creates four equal columns */
  row-gap: 40px;
  column-gap: 60px;
  margin-left: 20px;
  margin-right: 20px;
}

.mca-curriculum {
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  height: 140px;
  text-align: center;
  padding: 20px;
}

.mca-curriculum h1 {
  font-size: 25px;
  font-weight: bold;
}

.mca-curriculum label {
  font-weight: bold;
  margin-left: 10px;
}

.mca-downloadButton {
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  width: 110px;
  font-size: 16px;
  font-weight: bold;
  margin-left: 20px;
  /* margin-bottom: 10px; */
}

.mca-downloadLink {
  text-align: center;
}

/* mca ends  */

/*BCA start*/
.bca-container {
  margin-bottom: 20px;
  margin-top: 5%;
  display: flex;
  flex-direction: column;
}

.bca-container h2 {
  font-size: 25px;
  font-style: bold;
  color: var(--secondry-color2);
  text-align: center;
  margin-bottom: 40px;
}

/* BCA */

.bca-semesters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* Creates four equal columns */
  row-gap: 40px;
  column-gap: 60px;
  margin-left: 20px;
  margin-right: 20px;
}

.bca-curriculum {
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  height: 140px;
  text-align: center;
  padding: 20px;
}

.bca-curriculum h1 {
  font-size: 25px;
  font-weight: bold;
}

.bca-curriculum label {
  font-weight: bold;
  margin-left: 10px;
}

.bca-downloadButton {
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  width: 110px;
  font-size: 16px;
  font-weight: bold;
  margin-left: 20px;
  /* margin-bottom: 10px; */
}

.bca-downloadLink {
  text-align: center;
}

/*BCA end*/

/*BBA start*/
.bba-container {
  margin-bottom: 20px;
  margin-top: 5%;
  display: flex;
  flex-direction: column;
}

.bba-container h2 {
  font-size: 25px;
  font-style: bold;
  color: var(--secondry-color2);
  text-align: center;
  margin-bottom: 40px;
}

/* BBA */

.bba-semesters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* Creates four equal columns */
  row-gap: 40px;
  column-gap: 60px;
  margin-left: 20px;
  margin-right: 20px;
}

.bba-curriculum {
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  height: 140px;
  text-align: center;
  padding: 20px;
}

.bba-curriculum h1 {
  font-size: 25px;
  font-weight: bold;
}

.bba-curriculum label {
  font-weight: bold;
  margin-left: 10px;
}

.bba-downloadButton {
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  width: 110px;
  font-size: 16px;
  font-weight: bold;
  margin-left: 20px;
  /* margin-bottom: 10px; */
}

.bba-downloadLink {
  text-align: center;
}

/*BBA end*/

/* footer section starts */

.footer {
  /* background-color: #ccc; */
  height: 230px;
  background-color: slategray;
}

.footer1 {
  display: flex;
  justify-content: space-around;
}

.footer2 {
  width: 300px;
}

.footer2 h2 {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-size: 24px;
  margin-top: 30px;
  color: #ffa500;
}

.footer2 p {
  font-size: 17px;
  color: white;
}

.header-line {
  width: 210px;
  height: 2px;
  background-color: #ffa500;
}

/* .text-white {
  color: #fff;
} */

.footer-quotes {
  width: 150px;
  font-weight: bold;
  color: #fff;
  margin-top: 5px;
}

.copyright {
  width: 92%;
  /* 11/12 in percentage */
  height: 0.5px;
  background-color: #fff;
  margin: auto;
  margin-top: 8px;
}

.copyright-text {
  font-weight: bold;
  color: #fff;
  margin-left: 12px;
  margin-top: 5px;
  text-align: center;
}

.quick-links h5 {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-size: 20px;
  color: #ffa500;
  margin-top: 35px;
}

.quick-links a {
  text-decoration: none;
  color: #fff;
  display: block;
  margin-top: 5px;
  font-size: 18px;
}

/* @media (min-width: 360px) and (max-width: 740px) {
 
 
    .mca{
        display: none;
        opacity: 0;
        overflow: hidden;
        margin-top: 0px;
        
        
    }
    .mca-integrated{
        margin-top: 0px;
        
    }
    .mba{
        display: none;
        opacity: 0;
        overflow: hidden;
    }
    
    .media-mca{
        visibility: visible; 
        position: static; 
       
        height: auto; 
        clip: auto; 
        white-space: normal; 
        
        margin-top: 10px;
        width:300px;
        margin-left: 30px;
       
    }
    .media-mba{
        visibility: visible; 
        position: static; 
        
        height: auto; 
        clip: auto; 
        white-space: normal; 
       
        margin-top: 50px;
        width:300px;
        margin-left: 30px;
       
    }
    .container h1{
        margin-bottom: 0px;
        text-align: center;
        color: darkorange;
        font-size: 25px;
        text-decoration: underline;
    }

 .footer{
    display: flex;
    flex-direction: column;
    height: 700px;
  }
  .footer h2{
    font-size: 25px;
    margin-left: 60px;
    font-weight: 700;
    
  }
  .footer p{
    font-size: 19px;
    margin-left: 20px;
    margin-right: 0px;
  }
  .header-line{
    width: 220px;
    height: 2px;
   margin-left: 60px;
  }
  .footer1{
    display: flex;
    flex-direction: column;
  }
  .quick-links h5{
    font-size:18px;
    margin-left: 20px;
  }
  .footer-quotes p{
   color: orange;
    font-size: 17px;
    width: 320px;
    
  }
} 

 */
