/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #444444;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #2a2c39;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ef6603;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;
  /* The default color of the main navmenu links */
  --nav-hover-color: #ef6603;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #060606;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ef6603;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}



/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}


/*--------------------------------------------------------------
  # Global Header
  --------------------------------------------------------------*/
.header {
  --background-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
  margin-top: 81px;
  position: absolute;
}

.header .logo {
  line-height: 1;
}

.header .logo img {

  padding: 0;
  position: absolute;
  max-width: 5rem;
  padding: 2px;
  /* background: #ffffff; */
  border-radius: 50%;

}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
  ------------------------------*/
.scrolled .header {
  --background-color: rgba(42, 44, 57, 0.9);
}

/*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
    margin-left: 5px;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #000;
    padding: 8px 20px;
    font-size: 14px;
    font-family: ui-serif, Georgia, Cambria, Times New Roman, Times, serif;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    border-radius: 50px;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:hover>a,
  .navmenu .active:focus {
    background-color: #ffc107;
    border-radius: 0px 19px 0px 19px;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 0;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 15px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);

  }

  .navmenu .dropdown ul li {
    min-width: 200px;
    margin-left: 0;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    background-color: transparent;
    color: #ffc107;

  }
  .dropdown-menu .dropdown-item {
  padding-top: 8px;
  padding-bottom: 8px;
}

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 105%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }

}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: #662e91;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: #ffffff;
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: #ffc107;
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #ffffff;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: #ffc107;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}


p {
  font-size: 16px;
  text-align: justify;
  font-family: ui-serif, Georgia, Cambria, Times New Roman, Times, serif;
}
/* --------------------header slider--------------------- */
.carousel-item img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  /* filter: brightness(65%); */
}
.carousel-caption {
  position: absolute;
  left: 7%;
  top: 30%;
  text-align: left;
}
.carousel-caption h1 {
  font-weight: bold;
  text-shadow: 2px 3px 5px #dd8615;
}
/* --------------------header slider End--------------------- */


/*--------------------------------------------------------------
  # Disable aos animation delay on mobile devices
  --------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }

  .latest {
    display: none;
  }

  .school-title {
    display: none;
  }
  /* .banner{
    height: 25rem;
  } */
  .header{
    margin-top: 74px;
  }
}


/*===================Top Header Slider===========================*/

body {
  margin: 0;
  color: #eee;
  font-size: 12px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

a {
  text-decoration: none;
}

section,
.section {
  color: var(--default-color);
  /* background-color: var(--background-color); */
  /* padding: 35px 0; */
  scroll-margin-top: 77px;
  overflow: clip;
}
h4{
  color: #000;
  font-family: ui-serif, Georgia, Cambria, Times New Roman, Times, serif;
}

/*===========================latest news style=========================*/
.marqee-section {
  font-size: 14px;
  font-weight: 600;
  /* height: 40px; */
  color: #161b5f;
  background: #e7e7e7;
}

.marqee-section .latest {
  width: 100%;
  font-size: 1rem;
  color: #000;
  font-weight: bold;
  /* background: linear-gradient(150deg, #877c7c, #a2bcfb); */
  line-height: 40px;
  text-align: center;
  font-weight: 700;
  font-family: ui-serif, Georgia, Cambria, Times New Roman, Times, serif;
}

::placeholder {
  color: #fff !important;
  opacity: 1;
}

/*---------------header-section-two----------------------*/
.alimini-reg {
  color: #11273c;
  float: right;
  font-size: 12px !important;
  /* line-height: 13px; */
  font-weight: 600;
  padding: 10px;
  padding: 6px 20px 8px 20px;
  background: radial-gradient(circle, rgba(255, 226, 79, 1) 0%, rgba(255, 182, 19, 1) 100%);
  text-transform: none;
  margin: 6px 2px 10px 0px;
  top: 0px;
  border-radius: 24px;
}

.header-section-two {
  background: linear-gradient(135deg, #c33cc6, #5700d8);
}

.school-title {
  text-align: center;
  font-size: 1.5rem;
  color: #fff;
  margin: 4px 2px 4px 0px;
  font-family: ui-serif, Georgia, Cambria, Times New Roman, Times, serif;
}

.header-letest-news {
  /* background: linear-gradient(135deg, #c33cc6, #5700d8); */
  color: white;
  /* border: 1px solid gray; */
  background-color: #560b7d;
}

.bg-latest-news {
  background: radial-gradient(circle, rgba(255, 226, 79, 1) 0%, rgba(255, 182, 19, 1) 100%);
}

/*================school Detail Start=====================*/


.cid-bg {
  padding-top: 70px;
  padding-bottom: 100px;
  background-image: url(/assets/img/vision-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}



.cid-bg .row {
  margin: auto;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 100%);
  backdrop-filter: blur(3.5px);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 4rem 3rem;
  overflow: visible;
  position: relative;
}

.cid-bg .row:before {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.3;
  height: 100%;
  width: 100%;
  border: 2px solid white;
  border-radius: 30px;
  pointer-events: none;
}

.mbr-section-title {
  color: #263d5a;
  font-family: ui-serif, Georgia, Cambria, Times New Roman, Times, serif;

}

.vm-btn {
  color: #11273c;
  font-size: 22px !important;
  line-height: 13px;
  font-weight: 700;
  padding: 10px;
  border-radius: 17px 2px;
  text-align: center;
  font-family: ui-serif, Georgia, Cambria, Times New Roman, Times, serif;
  background: radial-gradient(circle, rgba(255, 226, 79, 1) 0%, rgba(255, 182, 19, 1) 100%);
}

ul {
  margin: 0px;
  padding: 0px;
}

li {
  list-style-type: none;
  font-size: 13px;
  font-family: ui-serif, Georgia, Cambria, Times New Roman, Times, serif;
  text-align: justify;
}
/* For screens between 992px and 1024px */
@media (min-width: 992px) and (max-width: 1024px) {

  /* Logo smaller */
  .navbar-brand img {
    height: 28px !important;
  }

  /* Menu links smaller */
  .navbar-nav .nav-link {
    font-size: 12px !important;
    /* padding: 6px 10px !important; */
  }

  /* Brochure & Admin Login links smaller */
  .buttons-box a {
    /* padding: 4px 10px !important; */
    font-size: 0.8rem !important;
  }
  
  /* Reduce gaps */
  .buttons-box {
    gap: 6px !important;
  }
}

.panel {
  padding: 0 18px;
  display: none;
  background-color: white;
  overflow: hidden;
  font-size: 14px;
}

@media (min-width: 992px) {
  .row>[class*=col] {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

@media (min-width: 992px) {
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  


}

.image-wrapper {
  border: 5px solid #0000;
  background: linear-gradient(#c33cc6, #ffb613) border-box;

}

img,
iframe {
  display: block;
  width: 100%;
}

img,
svg {
  vertical-align: middle;
}

/*================school Details End=====================*/

/*====================Founder Section Start======================*/

.founder-bg {
  background: #662e91;
}

.founder-section {
  background-color: #fff;
  box-shadow: #060606;
  box-shadow: 9px 13px 5px #ffc107;
}

.founder-msg {
  margin-top: 100px;
  color: #112d4e;
  font-family: ui-serif, Georgia, Cambria, Times New Roman, Times, serif;
}

.founder-para {
  font-size: 17px;
  text-align: justify;
  line-height: 26px;
}

.founders-img {
  border-radius: 20px;
}

.sister-msg {
  margin-top: 100px;
  color: #112d4e;
  font-family: ui-serif, Georgia, Cambria, Times New Roman, Times, serif;

}

.sister-section {
  background-color: #fff;
  box-shadow: 9px 13px 5px #ffc107;

}

/*====================Founder Section End======================*/


/*====================Achivements Start======================*/

.card {
  background: transparent;
}

.card-body {
  border-bottom: 2px solid #e662db;
  border-right: 2px solid #e662db;
  box-shadow: #060606;
  box-shadow: 9px 13px 5px #2d2b28;

}

.card-title {
  font-size: 3rem;
  color: #ffc107;
  font-weight: bold;
}

.card-text {
  color: #ffffff;
}

.achivement-bg {
  /* background: linear-gradient(90deg, rgba(0, 0, 0, 1) 3%, rgba(195, 60, 198, 0.773546918767507) 88%); */
  background: linear-gradient(90deg, rgba(0, 0, 0, 1) 3%, #662e91 88%);
}

.achivements-heading {
  color: #ffffff;
  font-family: ui-serif, Georgia, Cambria, Times New Roman, Times, serif;
}

.achivements-para {
  font-size: 16px;
  text-align: center;
  color: #fff;
  padding: 15px;
  box-shadow: 0px 0px 30px rgba(227, 228, 237, 0.37);
  border: 2px solid rgba(255, 255, 255, 0.18);

}

/*====================Achivements End======================*/

/*====================Organisational======================*/

.organisation-heading {
  color: #9e3cc6;
  font-family: fangsong;
  text-align: center;
  box-shadow: 0px 0px 9px 1px #212529;
  font-weight: 600;
}

/*====================Organisational End======================*/

/*==================== Our Features ======================*/
.our-feature {
  width: 100%;
  height: 100%;
}

.our-feature-heading {
  color: #112d4e;
  font-family: ui-serif, Georgia, Cambria, Times New Roman, Times, serif;
}

.carousel-icon i {
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.3);
}

.carousel-item i {
  font-size: 1.6rem;
  color: #000;
}

.t-card {
  padding: 56px;
  background-color: #ffc107;
  border-radius: 1.25rem;
  /* color: #fff; */
  height: auto;
  font-family: ui-serif, Georgia, Cambria, Times New Roman, Times, serif;
}

.arrow-down {
  width: 0;
  height: 0;
  border-left: 1.5625rem solid transparent;
  border-right: 1.5625rem solid transparent;
  border-top: 1.25rem solid #ffc107;
}

/*==================== Our Features End ======================*/
/*==================== our-school-Management-terms&condition ======================*/

.banner-about-img {
  background: url(/website/public/assets/img/banner/aboutus.jpg) no-repeat center center;
  background-size: cover;
  height: 420px;
  /* display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  position: relative; */
  /* filter: brightness(50%); */

}
.banner-infrastructure-img {
  background: url(/website/public/assets/img/banner/infrastructure.jpg) no-repeat center center;
  background-size: cover;
  height: 420px;
  /* filter: brightness(50%); */
}

.page-headings h1 {
  font-weight: bold;
  text-align: center;
  font-family: math;
  font-weight: 800;
}

.page-headings p {
  font-size: 16px;
  text-align: justify;
  color: #110f0f;
  padding: 15px;
  box-shadow: 0px 0px 30px rgba(227, 228, 237, 0.37);
  border: 2px solid rgba(255, 255, 255, 0.18);
  line-height: 31px;
}
.sub-heading-bg h3{
  background-color: #662e91;
  padding: 7px;
  color: #fff;
  margin-bottom: 2rem;
  font-family: ui-serif, Georgia, Cambria, Times New Roman, Times, serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 25px;
}
.sub-heading-bg p{
  color: #000;
}

.sub-headings h3 {
  color: black;
  margin-bottom: 2rem;
  font-family: ui-serif, Georgia, Cambria, Times New Roman, Times, serif;
  font-weight: 700;
}

.sub-headings p {
  color: #000;
}

.members {
  color: #000;
  background: #ffc107;
  padding: 10px;
  border-radius: 10px;
  text-align: justify;
  font-family: ui-serif, Georgia, Cambria, Times New Roman, Times, serif;
}

.fonts {
  font-family: ui-serif, Georgia, Cambria, Times New Roman, Times, serif;
}

/*==================== our-school-Management-terms&condition End ======================*/

/* ----------------------sports & co-curricular & other activity & newsletter------------------------------- */
.banner-events-img {
  background: url(/website/public/assets/img/banner/events.jpg) no-repeat center center;
  background-size: cover;
  height: 420px;
  /* filter: brightness(50%); */
}
.events-para p {
  text-align: justify;
  color: #110f0f;
  line-height: 33px;
  font-size: 18px;
}
.shadow{
    border-bottom: 2px solid #e662db;
    border-right: 2px solid #e662db;
    box-shadow: 7px 8px 0px #9a7cb1 !important;
    border: 2px solid #000;
}

/* ---------------------sports & co-curricular & other activity & newsletter End------------------------------- */

/* ---------------------------------Career-------------------------------------- */
.career {
  margin: auto;
}
.parabg{
  background: #f1e9f7;
}

.career .card-title {
  font-size: 1.5rem;
  color: #fff;
  font-weight: bold;
  background: linear-gradient(135deg, #c33cc6, #5700d8);
  text-align: center;
  padding: 7px;

}

.career .card-body {
  background: #a972bb;
}

.career p {
  color: #fff;
  text-align: center;
  font-weight: 600;
}

.career span {
  color: #e9ecef;
  font-size: 13px;
  padding: 10px;
}

.career-btn {
  color: #11273c;
  font-size: 19px !important;
  line-height: 13px;
  font-weight: 700;
  padding: 10px;
  border-radius: 6px 6px;
  text-align: center;
  font-family: fangsong;
  background: radial-gradient(circle, rgba(255, 226, 79, 1) 0%, rgba(255, 182, 19, 1) 100%);
  text-align: center;

}

/* ---------------------------------Career-------------------------------------- */

/*====================  DMI Group ======================*/
.banner-dmigroup-img {
  background: url(/website/public/assets/img/banner/dmigroup.jpg) no-repeat center center;
  background-size: cover;
  height: 420px;
  /* filter: brightness(50%); */
}
.tab {
  float: left;
  border: 1px solid #212529;
  background-color: #662e91;
  width: 35%;
  /* height: 300px; */
}

.tab button {
  display: block;
  background-color: inherit;
  color: #fff;
  padding: 22px 16px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
  font-size: 17px;
  border-radius: 10px;
  font-family: ui-serif, Georgia, Cambria, Times New Roman, Times, serif;
}

.tab button:hover {
  background-color: radial-gradient(circle, rgba(255, 226, 79, 1) 0%, rgba(255, 182, 19, 1) 100%);
}


.tab button.active {
  background: radial-gradient(circle, rgba(255, 226, 79, 1) 0%, rgba(255, 182, 19, 1) 100%);
}


.tabcontent {
  float: left;
  padding: 0px 12px;
  border: 1px solid #343a40;
  width: 65%;
  border-left: none;
  /* height: 300px; */
  color: #495057;
}
.tabcontent p{
  color: #000;
}

/*====================  DMI Group End ======================*/
/* -----------------------contact-------------------------- */
.banner-contact-img {
  background: url(/assets/img/banner/contact.jpg) no-repeat center center;
  background-size: cover;
  height: 320px;
  /* filter: brightness(50%); */
}
.map-container {
  border: 2px solid #662e91;
  border-radius: 10px;
  overflow: hidden;
}

.form-container {
  background: #662e91;
  padding: 20px;
  border-radius: 10px;
  color: white;
  width: 100%;
  height: 28rem;

}

.form-control:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 .25rem #ffc107;
}

.form-control {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.btn-custom {
  background: #ffc107;
  color: #212529;
  font-weight: bold;
  width: 50% !important;
}

.btn-custom:hover {
  background: #c5c3bc;
  color: #212529;

}

/* -----------------------contact End-------------------------- */

/* --------------------------gallery-------------------- */
.banner-gallery-img {
  background: url(/website/public/assets/img/banner/gallery.jpg) no-repeat center center;
  background-size: cover;
  height: 420px;
  /* filter: brightness(50%); */
}

.folder-section {
  /* background: #f1e9f7; */
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  margin-top: 20px;
}

.folder img {
  width: 100%;
  border-radius: 8px;
  border: 2px solid #662e91;
}

.folder-name {
  font-weight: bold;
    color: #fff;
    margin-top: 10px;
    text-align: center;
    background: #662e91;
    padding: 10px;
    border-radius: 10px;
}
.gallery-bg{
  background-color: #f1e9f7;
}

.gallery-video {
  position: relative;
  width: 100%;
  height: 54vh;
  overflow: hidden;

}
#modalImage {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
}
.gallery-nav-icon {
  font-size: 2rem;
  color: #ffc107;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.gallery-prev-icon {
  left: 10px;
}

.gallery-next-icon {
  right: 10px;
}

/* --------------------------gallery end-------------------- */

/* --------------------------Public-Mandatory-------------------- */
.info-card {
  /* background: white;
  border-radius: 12px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); */
  padding: 20px;
  /* border: 2px solid #ffc107; */
}
.info-table th {
  background-color: #662e91;
  color: white;
  text-align: center;
  border: 2px solid #662e91;
  font-size: 1rem;
}
.info-table td {
  vertical-align: middle;
  border: 2px solid #662e91;
  font-size: 1rem;
  font-family: ui-serif, Georgia, Cambria, Times New Roman, Times, serif;
}
.info-table i{
  color: #662e91;
}

.info-heading {
  color: black;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  border-bottom: 3px solid #662e91;
  display: inline-block;
  padding-bottom: 5px;
  font-family: ui-serif, Georgia, Cambria, Times New Roman, Times, serif;
}
/* --------------------------Public-Mandatory End-------------------- */

/* --------------------------Website popup-------------------- */
#website-popup {
  position: fixed;
  font-family: Arial, Helvetica, sans-serif;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 99999;
  height: 100%;
  width: 100%;
}
.poppup-close{
 background-color: #000 !important;
  border-radius: 16px;
  padding: 2px 7px;
  
}

.popup-conent {
  position: absolute;
background-color:#fff;
border: 6px solid  #dd8615;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* --------------------------popup End-------------------- */

/*-------------------- Academic-rules-start------------------------ */
.banner-academic-img {
  background: url(/assets/img/banner/academic.jpg) no-repeat center center;
  background-size: cover;
  height: 420px;
  /* filter: brightness(50%); */
}

.event-content {
  font-size: 16px;
  padding: 35px;
  background:whitesmoke;
  position: relative;
  transition: all .5sease 0s;
  color: black;
  box-shadow: 2px 1px 5px #A972BC;
}
.event-item:hover .event-content {
  background: #ffc107;
  color: white;
}

/*---------------  Examination --------------------*/
/* .hover-paragraph {
  transition: all 0.3s ease-in-out;
}
.hover-paragraph:hover {
  color: white; 
  background-color: #a972bb; 
  padding: 10px; 
  border-radius: 5px; 
} */
.exam-container {
  /* max-width: 90%;
  margin: 50px auto; */
  background: #f1e9f7;
  /* padding: 20px; */
  border-radius: 10px;
}
.exam-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.exam-item .number {
  background: linear-gradient(135deg, #c33cc6, #5700d8);
  color: white;
  font-weight: bold;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-right: 10px;
  flex-shrink: 0;
  font-size: 16px;
  font-family: ui-serif, Georgia, Cambria, Times New Roman, Times, serif;
}
.exam-item p {
  margin: 0;
    text-align: justify;
    color: #000;
    padding: 13px;
    /* box-shadow: 0px 0px 2px #a972bb;
    border: 1px solid rgba(255, 255, 255, 0.18); */
    line-height: 30px;
}
@media (max-width: 576px) {
  .exam-item {
      flex-direction: row;
      align-items: center;
  }
  .exam-item .number {
      margin-bottom: 0;
  }
}
/*----------------- Faculty ------------------------*/
.accordion-button {
  background-color: #ffc107; 
  color: #000;  
  font-weight: bold;
  border-radius: 5px; 
}

.accordion-button:not(.collapsed) {
  background-color:#a972bb;  
  color: white;
}

.accordion-button:focus {
  box-shadow: none;  
  border-color: #a972bb;
  background-color: #a972bb;
}

.accordion-body {
  color: #343a40;
  background:white;
  padding: 20px;
  border-radius: 10px;
  text-align: justify;
  font-size: 16px;
  font-family: ui-serif, Georgia, Cambria, Times New Roman, Times, serif;
  
}

.accordion-item {
  border: none; 
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Adds shadow */
  margin-bottom: 10px;
}
/*----------------- kindergarten ----------------------------*/
.kindergarten{
  background-color: #662e91;
  border-radius: 10px;
  border: 1px solid;
  padding: 12px;
  color: white;
}

.kindergarten h3{
  color: white;
}
.kindergarten p{
  color: white;
}
.kindergarten:hover{
  background-color: #ffc107;
}
/* .kinder-right{
  background-color: green;
  border-radius: 10px;
  } */
 
/*----------------- Academic-END ----------------------------*/

/*--------------------- Footer Start ------------------------*/

.footer-section {
  /* background: #dbe4f6; */
  /* position: relative; */
  background-image: url(/assets/img/footer-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.footer-cta {
  border-bottom: 1px solid #ffc107;
}

.single-cta i {
  color: #ffc107;
  font-size: 30px;
  float: left;
  margin-top: 8px;
}

.cta-text {
  padding-left: 15px;
  display: inline-block;
  font-family: math;
  color: white;
}

.cta-text h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
  font-family: ui-serif, Georgia, Cambria, Times New Roman, Times, serif;
}

.cta-text span {
  color: #fff;
  font-size: 15px;
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-social-icon {
  text-align: center;
}

.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  font-family: ui-serif, Georgia, Cambria, Times New Roman, Times, serif;
  margin-bottom: 20px;

}

.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}

.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
}

.facebook-bg {
  background: #3B5998;
}

.twitter-bg {
  background: #55ACEE;
}

.youtube-bg {
  background: #DD4B39;
}
.linkedin-bg {
  background: #0077B5;
}
.instagram-bg {
  background: #d62976;
}

.footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
  font-family: ui-serif, Georgia, Cambria, Times New Roman, Times, serif;
}

.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  height: 2px;
  width: 50px;
  background: #ffc107;
}

.footer-widget ul li {
  display: inline-block;
  float: left;
  width: 50%;
  margin-bottom: 12px;
}

.footer-widget ul li a:hover {
  color: #ffc107;
}

.footer-widget ul li a {
  color: #dfdfdf;
  text-transform: capitalize;
}

.copyright-area {
  background: #a972bb;
  padding: 25px 0;
}
.copyright-text{
  margin: auto;
}

.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #fff;
  text-align: center;
}

.copyright-text p a {
  color: #ff5e14;
}

.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}

.footer-menu li:hover a {
  color: #ff5e14;
}

.footer-menu li a {
  font-size: 14px;
  color: #fff;
}

/*==================== Footer End ======================*/

/* ----------------------clg page style--------------- */
.clg-bg{
  background-color: rgba(26,0,33,0.9);
}
.banner-mba-img {
  background: url(/assets/img/clg/about-banner.webp) no-repeat center center;
  background-size: cover;
}
 /* .banner-mba-img {
  background: url(/assets/img/website-popup.jpeg) no-repeat center center;
  background-size: cover;
}  */
.banner-mba-program-img {
  background: url(/assets/img/clg/Jiba_slider2.webp) no-repeat center center;
  background-size: cover;
}
.gallery-banner-img {
  background: url(/assets/img/clg/Jiba_slider5.jpeg) no-repeat center center;
  background-size: cover;
}
.banner-multi-program-img {
  background: url(/assets/img/clg/img10.webp) no-repeat center center;
  background-size: cover;
}
.banner-mba-contact-img {
  background: url(/assets/img/clg/clg-contact.webp) no-repeat center center;
  background-size: cover;
}
.program-title a{
  font-family: math;
}
.clg-director-msg h3{
  color: white;
  font-family: ui-serif, Georgia, Cambria, Times New Roman, Times, serif;
  font-weight: bold;
}
.clg-director-msg p{
  color: white;
}
.mba-headings{
  background-color: #662e91;
    color: white;
    padding: 10px;
    position: relative;
    bottom: 33px;
    border-radius: 68px;
    text-align: center;
    width: 94%;
    margin: 0 auto;
}
/* .course-card {
      display: flex;
      gap: 20px;
      border-bottom: 1px solid #ccc;
      padding: 20px 0;
    }
    .course-card img {
      width: 250px;
      height: 150px;
      object-fit: cover;
    }
    .course-info h5 {
      font-weight: bold;
    }
    .course-info p {
      margin: 0;
      font-size: 16px;
    } */
/* -------------table Responsive--------------- */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  border: 1px solid #ddd;
}

th, td {
  text-align: left;
  padding: 8px;
}
/* ----------------JIBA is Unique-------------------------- */

  .container-fluid {
      background-image: url(/assets/img/clg/bg-jiba.webp);
      padding: 40px 10px;
    }
    .wrapper {
      display: flex;
      justify-content: center;
      align-items: center; 
      gap: 40px;
      flex-wrap: wrap;
    }
    .column {
      max-width: 538px;
      width: 100%;
    }
    .step-box {
      background: #f4f4f4;
      border-radius: 8px;
      padding: 15px;
      box-shadow: 0 0 6px rgba(0,0,0,0.1);
      margin-bottom: 10px;
    }
    .step-text h5 {
      cursor: pointer;
  font-family: math;
  font-weight: 800;
  width: 100%;           /* fully responsive */
  text-align: left;
      /* cursor: pointer;
      font-family: math;
      font-weight: 800;
      width: 413px; */
    }
    .step-text p {
      display: none;
      margin-top: 5px;
      color: #433535;
    }
    .center-circle {
      flex-shrink: 0;
      width: 133px;
      height: 133px;
      border-radius: 50%;
      background: #fff;
      box-shadow: 0 0 20px rgba(0,0,0,0.1);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      position: relative;
    }
    .center-circle::before {
      content: '';
      position: absolute;
      width: 150px;
      height: 150px;
      border-radius: 50%;
      border: 8px solid transparent;
      border-top-color: #e91e63;
      border-right-color: #0288d1;
      border-bottom-color: #4db6ac;
      border-left-color: #5e35b1;
      top: -9px;
      left: -9px;
      animation: spin 20s linear infinite;
    }
    .center-circle h4 {
      font-size: 27px;
      font-weight: 800;
      margin: 0;
    }
    @keyframes spin {
      0% { transform: rotate(0); }
      100% { transform: rotate(360deg); }
    }
    @media (max-width: 768px) {
      .wrapper {
        flex-direction: column;
        align-items: center;
      }
      .step-text h5 {
        width: 100%;
        text-align: center;
      }
      .center-circle {
        margin: 20px 0;
      }
    }
       
/* ------------aboutus------------------ */

.about-info-card {
 position: relative;
    border-radius: 6px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    
    background-color: #e9ecef;
    color: #212529;
  
}
.warning-line {
  position: absolute;
  bottom: 0;
  left: 3px;
  right: 15px;
  height: 4px;
  background-color: #ffc107;
  border-radius: 10px;
}

/* -------------body background animation------------------ */

section.position-relative {
  position: relative;
  overflow: hidden;
}

.bg-animation {
  position: absolute;   
  top: 0;
  left: -50%;
  right: -50%;
  bottom: 0;
  z-index: -1;
  opacity: 0.5;
  background-image: linear-gradient(-60deg, #aed79a 50%, rgba(13, 110, 253, 0.25) 50%);
  animation: slide 39s ease-in-out infinite alternate;
}

.bg-animation2 {
  animation-direction: alternate-reverse;
  animation-duration: 10s;
}

.bg-animation3 {
  animation-duration: 13s;
}

@keyframes slide {
  0% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(25%);
  }
}

/* -------------------------------------------------- */


    .mba-section {
      background: url('/assets/img/clg/mba-bg.webp') center center / cover no-repeat;
      position: relative;
      min-height: 85vh;
    }
    .overlay-card {
      background-color: rgba(99, 0, 148, 0.8); 
      border-radius: 20px;
      color: #fff;
      padding: 1rem;
    }
   
.mba-image {
  width: 100%;
  max-width: 962px;
  position: absolute;
  bottom: 0;
  left: -42px;
}
/* @media only screen and (min-width: 1024.98px) and (max-width: 1440.98px){
 .mba-image {
    max-width: 640px;
  }
  .wrapper {
    flex-direction: column;
    align-items: center;
  }
} */
@media only screen and (min-width: 992px) and (max-width: 1440px) {
  .mba-image {
    max-width: 700px;
  }
}
@media only screen and (min-width: 720px) and (max-width: 1280px) {
  .wrapper {
    flex-direction: column;
    align-items: center;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1024px) {
  .mba-image {
    max-width: 613px;
  }
  .wrapper {
    flex-direction: column;
    align-items: center;
  }

}
@media (max-width: 992px) {
  .mba-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .mba-image {
    position: relative;
    display: block;
    margin: 2rem auto 0 auto;
    max-width: 90%; /* ensures it doesn’t overflow */
    height: auto;
    left: 0;
  }

  .overlay-card {
    padding: 1rem;
    text-align: center;
  }
  /* .col-lg-7 {
    flex: 0 0 100%;
    max-width: 100%;
  } */
}
@media (max-width: 576px) {
  .mba-image {
    max-width: 600px;
  }
}

/* ------------------------------------- */
