@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Playwrite+NG+Modern:wght@100..400&family=Roboto+Slab:wght@100..900&family=Rubik:ital,wght@0,300..900;1,300..900&family=Sansita:ital,wght@0,400;0,700;0,800;0,900;1,400;1,700;1,800;1,900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet');

/* 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: "Jost", sans-serif;
  --nav-font: "Inter", 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: #212529;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #125875;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ff7350;
  /* 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. */
  --button-background-color: #1680ad;
  --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: #212529;
  /* The default color of the main navmenu links */
  --nav-hover-color: #ff7350;
  /* 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: #212529;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ff7350;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #eff7ff;
  --surface-color: #ffffff;
  padding: 0px 0px !important;
}

.dark-background {
  --background-color: #ff7350;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #ff7350;
  --contrast-color: #ffffff;
}

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

a {
  text-decoration: none;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);

}
body, html {
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.section {
  overflow: clip;
  padding: 40px 0px;
}

.section-meta {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 20px;
  font-family: var(--heading-font);
  margin-bottom: 5px;
}

.section-title {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 55px;
  font-family: var(--heading-font);
  margin-bottom: 20px;

}


.section-des {
  color: var(--default-color);
  font-size: 16px;
  font-family: var(--default-font);
  display: block;
}



#topbar {
  height: 70px;

  --background-color: #125875;
  background-color: var(--background-color);
  transition: all 0.3s;

}

#topbar.topbar-scrolled {
  top: -70px;
}

.left-topbar {
  display: flex;
  align-items: center;
  justify-content: center;




}

.left-topbar::after {
  position: absolute;
  content: "";
  width: 38%;
  height: 100%;
  background-color: #ff7350;
  top: 0;
  left: 0;
  z-index: -1;
  clip-path: polygon(0 0, 80% 0%, 100% 100%, 0% 100%);
}

.topbar-icon-list {
  display: flex;
  align-items: center;

  padding: 0%;
  margin: 0%;
}

.topbar-icon-list i {
  color: #ffffff;
  font-size: 20px;
  padding: 0px 10px;

}

.left-topbar p {
  margin-top: 15px;
  color: var(--contrast-color);
}

.right-topbar {
  display: flex;

  justify-content: end;
  gap: 40px;


}

.right-topbar-icon-portion {
  gap: 10px;

}

.right-topbar-icon {
  flex-shrink: 0;
}

.right-topbar-content {
  display: block;
  flex-grow: 1;


}

.right-topbar p {
  margin-top: 3px;
  margin-bottom: 0%;
  padding-right: 20px;
  color: var(--contrast-color);
  font-size: 15px;
}

.vr-border {
  border: 0.5px solid #dfdddd;
  height: 100%;
  width: 0px;
  margin-left: 30px;
  opacity: 0.4;
}

.right-topbar-content a {

  color: var(--contrast-color);
  font-size: 15px;
}

/* header */

#header {
  top: 70px;
  background-color: var(--background-color);
  margin: 0%;
  padding: 0%;
  transition: all o.3s;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

#header.header-scrolled {
  top: 0px;
}

.logo {
  margin-right: auto;
}

.logo img {
  height: 60px;
}

.sidepanel {
  width: 0;
  position: fixed;
  z-index: 1;
  height: 350px;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: var(--default-color);
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;


}

.sidepanel a {
  padding: 8px 8px 8px 20px;
  text-decoration: none;
  font-size: 25px;
  color: #fff !important;
  ;
  display: block;
  transition: 0.3s;
}

.sidepanel a:hover {
  color: #f1f1f1;
}

.sidepanel .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
}

.openbtn {
  font-size: 17px;
  cursor: pointer;
  background-color: var(--background-color);
  color: var(--nav-color);
  padding: 10px 15px;
  border: none;
}

.btn-outline-orange {
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
}

.btn-outline-orange:hover {
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
}

.search-box {
  padding: 20px 20px;
}

.search-box input,
.search-box button {
  border-radius: 0%;

}

.search-box input {
  background-color: transparent;
  border: 1px solid #818080;

}

.search-box input::placeholder {
  color: #818080;
}

.navbar {
  margin: 0%;
  padding: 0%;
}

.navbar ul {
  margin: 0%;
  padding: 0%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar li {
  position: relative;
  list-style: none;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0px 10px 34px;
  margin: 0%;
  font-size: 16px;
  font-weight: 600;
  color: var(--nav-color);
  transition: all 0.3s ease;
  font-family: var(--nav-font);
  text-decoration: none;
  text-wrap: nowrap;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover a {
  color: var(--accent-color);
}

.navbar .dropdown ul {
  position: absolute;
  display: block;
  margin: 10px 0px;
  opacity: 0;
  visibility: hidden;
  padding: 0px 0px;
  min-width: 100%;
  transition: all 0.3s ease;
  border-radius: 0px;
  border-top: 4px solid var(--accent-color);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  left: 30px;
  top: calc (100% + 30px);
}

.navbar .dropdown:hover>ul {
  top: 100%;
  opacity: 1;
  visibility: visible;
}

.navbar .dropdown ul li {
  border-bottom: 1px solid #c4c2c2;
}

.navbar .dropdown ul li:last-child {
  border: none;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  color: var(--nav-color);
  font-weight: 500;
  font-size: 14px;

}

.dropdown-item:hover {
  background-color: none !important;
}

.mobile-nav-toggle {
  display: none;
  color: #000;
  cursor: pointer;
  font-size: 28px;
  transition: all 0.3s ease;
  line-height: 0%;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.dropdown-toggle::after {
  content: none;
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--background-color);
  transition: all o.3s ease;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  position: absolute;
  display: block;
  top: 55px;
  left: 15px;

  right: 15px;
  bottom: 15px;
  padding: 10px 20px;
  background-color: var(--background-color);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  border-radius: 0;
  max-width: 100%;
  transition: all 0.3s ease;
}

.navbar-mobile a {
  font-size: 19px;
  padding: 10px 20px;
}

.navbar-mobile .get-started,
.navbar-mobile .get-started:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  opacity: 1;
  visibility: visible;

  padding: 10px 0px;
  background-color: var(--background-color);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  border-radius: 0;
  max-width: 80%;
  transition: all 0.3s ease;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
  color: var(--nav-color);
  font-weight: 500;
  font-size: 17px;

}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

.admission-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 20px 15px;
  font-size: 15px;
  font-family: var(--default-font);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.7px;
  transition: all 0.3s;
  margin-left: 20px;
}

.admission-btn:hover {
  color: var(--contrast-color);
  background-color: var(--heading-color);
}


/* hero section */
.hero {
  padding-bottom: 0%;
}

.carousel-item img {
  position: relative;
  z-index: 000;
}

.carousel-caption {
  position: absolute;
  top: 30%;
  left: -30%;
}

.carousel-item img {
  height: 550px;
}









.carousel-control-next {
  opacity: 0.7;
}


.carousel-control-prev-icon,
.carousel-control-next-icon {
  height: 60px;
  width: 60px;
top:10px;
 
  border-radius: 50%;

  background-color: #fff;

}

.carousel-control-next-icon:after {
  content: '>';
  font-size: 35px;
  color: #000;

}

.carousel-control-prev-icon:after {
  content: '<';
  font-size: 35px;
  color: #000;
}
























.hero-sticky-box-area {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;

}

.hero-sticky-box {
  background-color: var(--heading-color);
  padding: 20px;
  display: flex;
  gap: 10px;
  justify-content: center;
  font-size: 25px;
  color: #fff;
  font-weight: 600;
}

.hero-sticky-box img {
  height: 40px;
  width: 40px;
}

.hero-sticky-box-content h5 {
  color: var(--contrast-color);
  font-size: 25px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.hero-sticky-box-content p {
  color: var(--contrast-color);
  font-size: 15px;
  margin-top: 15px;
}

.hero-sticky-box-content a {
  color: var(--contrast-color);
  font-family: var(--heading-font);
}

.bluebox {
  background-color: var(--accent-color);

}
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/* about */



.about-img {
  width: 100%;
  padding: 70px 0px 40px 0px;
}

.section-des p {
  color: rgb(8, 59, 110);
  font-size: 19px !important;
  font-family: var(--default-font);
  font-weight: 500;

}

.section-des p span {
  font-weight: 500 !important;
  font-size: 14px;
  color: var(--default-color);
  opacity: 0.7;
}

.about-num {
  background-color: var(--accent-color);
  border-radius: 45px;
  padding: 15px;

}

.about-num p {
  font-size: 20px;
  color: #fff;
  margin: 0%;
  color: var(--contrast-color);
  font-weight: 600;
}

.abou-des h4 {

  font-weight: 600;
  color: var(--default-color);
}

.about .section-des p {
  font-size: 18px;

}

.read-more-btn {
  border: none;
  background-color: var(--heading-color);
  color: var(--contrast-color);
  padding: 17px 30px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s;
}

.read-more-btn:hover {
  background-color: var(--accent-color);
}

/* faciliti */
.faciliti-slider {
  padding: 60px 0px 0px 0px;
}

.faciliti-item {

  background-color: #eff7ff;
  background-size: cover;
  width: 310px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.swiper-nav-buttons {
  position: absolute;
  top: 30px;
  right: 0px;
  display: flex;
  flex-direction: row;
  gap: 50px;


}

.swiper-button-prev,
.swiper-button-next {
  position: relative;
  /* relative inside the button container */
  width: 50px;
  height: 50px;
  color: #fff;
  background-color: var(--accent-color);
  cursor: pointer;
  padding: 20px;
}

.swiper-button-prev::after {
  font-size: 20px;
}

.swiper-button-next::after {
  font-size: 20px;
}









.faciliti-img-box {
  overflow: hidden;
}

.faciliti-img {
  height: 250px;
  transition: all 0.5s ease;
  overflow: hidden;


}

.faciliti-item:hover .faciliti-img {
  transform: scale(1.2);
}

.faciliti-item:hover {
  background-color: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.faciliti-img:hover {
  transform: scale(1.07);
}

.faciliti-badge {
  position: absolute;
  right: 17px;
  bottom: 30%;
  background-color: var(--accent-color);
  padding: 7px;
  border-radius: 5px;
}

.faciliti-badge p {
  margin-bottom: 0%;
  color: #fff;
  font-family: var(--heading-font);
}

.faciliti-content {
  padding: 20px 20px;
  margin: 0%;
}

.faciliti-content h3 {
  font-family: var(--heading-font);
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 0%;
}

.faciliti-content p {
  opacity: 0.7;
}

@media (max-width: 991px) {
  .faciliti-img {
    width: 100%;


  }

  .faciliti-item {
    width: 100%;

  }
}


/* feature */

.feature-content-section {
  background-color: var(--heading-color);
  padding: 70px 30px 60px 120px;
  margin: 0%;

}

.feature-content-section h1 {
  font-size: 49px;
  margin-bottom: 16px;
}

.feature-content-section .section-des p {
  opacity: 0.7;
  font-size: 17px;
  font-weight: 400;
  margin-bottom: 30px;
}

.feature-row {
  display: flex;
  gap: 24px;
  margin: 28px 0px;
}

.feature-row-icon {
  background-color: var(--accent-color);
  height: 80px;
  width: 80px;
  border-radius: 50px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-row-icon img {
  height: 40px;
}

.feature-row-content h4 {
  font-family: var(--heading-font);
  color: #fff;
  font-size: 30px;
}

.feature-row-content p {
  color: #fff;
  opacity: 0.7;
  font-size: 16px;
  font-family: var(--default-font);
  font-weight: 400;
}

.feature-img {
  height: 100%;
}

.feature-img img {
  height: 757px;

}

/*event */


.event-box {

  background-color: #eff7ff;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0px 0px 20px rgba(131, 139, 156, 0.25);

}

.event-img {
  overflow: hidden;

}

.event-img img {
  width: 100%;
  transition: all 0.3s;

}

.event-badge {
  background-color: var(--accent-color);
  padding: 2px 10px;
  position: absolute;
  left: 20px;

  top: 200px;
}

.event-badge p {
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 0%;
  margin-top: 0%;

}

.event-box-content {
  padding: 20px 20px 20px 20px;
}

.event-badge span {
  color: #fff;
  font-family: var(--heading-font);
  font-size: 14px;
  line-height: 20px;
}


.event-box-content a {
  font-family: var(--heading-font);
  font-size: 28px;
  margin-bottom: 0%;
  transition: all 0.3s;
  color: var(--heading-color);
  font-weight: 600;
  transition: all 0.3s;


}

.event-box:hover .event-img img {
  transform: scale(1.2);
}

.event-box:hover {
  background-color: var(--heading-color);
}

.event-box:hover .event-box-content a {
  color: #fff;
}


/* scholarship */


.enroll-bg {
  background-position: center;
  background-attachment: fixed;
  background-size: cover;

  padding: 50px 0px;
}

.enroll-text {
  font-size: 46px !important;
}

.enroll-bg h3 {
  font-size: 75px;
  color: var(--accent-color);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 27px;
}

.enroll-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  color: #fff;
  padding: 20px 20px;
  border-radius: 5px;
  transition: all 0.3s;
  font-size: 19px;
  font-weight: 700;

}

.enroll-btn:hover {
  background-color: var(--button-background-color);
}

/* contact */

.announcement .section-title {
  color: var(--default-font);

}

.announcement .section-des p {
  color: var(--default-color);
  opacity: 0.6;
  font-size: 23px;
  font-weight: 400;
  margin-bottom: 30px;
}

.accordion {
  border-radius: 0%;
  margin-bottom: 0%;
  padding-bottom: 0%;
}

.accordion-item {

  margin: 30px 0px;
  border-radius: 5px !important;



}

.accordion-button {
  border-radius: 5px !important;
  border: 1px solid rgb(95, 95, 95) !important;
  font-size: 22px;
  font-family: var(--heading-font);
  color: var(--default-color);
  font-weight: 600;
  padding: 22px;
}

.accordion-item:last-child {
  margin-bottom: 0px;
}

.accordion-button:focus {
  background-color: transparent !important;

  box-shadow: none;
}

/* Add a border around the accordion title */
.accordion-item__title {
  position: relative;
  padding: 10px;
  cursor: pointer;
  /* Add other desired styles */
}

.accordion-button:hover {
  color: var(--accent-color)
}

.accordion-button:focus {
  color: var(--accent-color)
}

.accordion-body {
  opacity: 0.8;
  font-family: var(--default-font);
  border: none !important;
  font-size: 17px;
}

.accordion-img-box {
  margin: 140px 0px 60px 0px;
}

.announcement-form {
  background-color: var(--heading-color);
  padding: 40px 40px;
  border-radius: 10px;
  margin: 40px 0px;
}

.announcement-form h3 {
  font-family: var(--heading-font);
  color: var(--accent-color);
  font-size: 30px;
}

.form-input {
  padding: 0px 0px;
}

.form-input input {
  padding: 12px;
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color) 50%, transparent);
  border-radius: 10px;
  ;
  font-family: var(--heading-font);
}

.form {
  font-size: 0;
}

.form-row {

  width: 47%;
}

.submit-btn {
  font-size: 18px;
  margin-top: 10px;
}

.submit-btn:hover {
  background-color: var(--button-background-color);
}

.form-input input:focus {
  box-shadow: none;
  outline: none;
  border: none;
}

.form-input textarea:focus {
  outline: none;
  box-shadow: none;
}

/* activity section */

.activity-bg {
  background-position: center;
  padding: 50px 0px ;
  background-size: cover;
  position: relative;
  background-attachment: fixed;

}

.activity-title {
  font-size: 65px !important;

}

.activity-title span {
  color: var(--accent-color);
  text-decoration: underline;
  text-underline-offset: 10px;
}

.activity-box {
  background-color: var(--accent-color);
  padding: 3px;

  overflow: hidden;
}

.activity-box img {
  width: 100%;

  border-radius: 5px;
}








/*

.play-button{
  position: absolute;
  
right: 20%;
top:40%;


}
.play-button img{
 display: flex;
 align-items: center;
 justify-content: center;
}




.search-course-bg{
background-position: center;
  background-size: cover;
  padding: 60px 0px;
}
.search-course .section-des p{
opacity: 0.7;
font-weight: 400;
}
.search-course-bg input, .search-course-bg select {
  padding: 15px;
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color) 50%,  transparent);
  border-radius: 10px;
  margin: 15px 0px;
}

.search-course-btn{
  display: block;
  width: 100%;
  background-color: var(--accent-color);
padding: 20px 0px;
border-radius: 7px;
  text-align: center;
  margin: 20px 0px 30px 0px;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s;
}
.search-course-btn:hover{
  background-color: var(--button-background-color);
}
*/





/* alumni */

.alumni img {
  width: 100%;
  height: 100%;
 
}

.alumni-title {
  color: var(--default-color);
  margin-top: -10px;
 margin-bottom: 5px;
}

.alumni .section-des {
  opacity: 0.8;
  margin-bottom: 30px;
  font-size: 10px;
 
}

/* achivment */


.achivment-bg {
  background-position: center;
  background-size: cover;
  padding: 30px 0px 100px 0px;

}

.achivment-box {
  background-color: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  margin: 30px 0px 0px;
  border-radius: 7px;
  overflow: hidden;
  height: 100%;

}

.achivment-img {
  overflow: hidden;
  position: relative;

}

.achivment-img img {
  width: 100%;
  border-radius: 7px;
  transition: all 0.3s;

}

.achivment-img img:hover {
  transform: scale(1.3);

}

.achivment-img img:hover .achivment-img {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.achivment-body {
  padding: 0px 20px 0px 20px;
}

.achivment-body p {
font-weight: 700;
  margin-top: 15px;
  font-size: 20px;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.achivment-body-heading {
  font-size: 24px;
  color: var(--default-color);
  transition: all 0.3s;
  font-family: var(--heading-font);
  font-weight: 500;
}

.achivment-body-heading:hover {
  color: var(--accent-color)
}

.read-more-btn2 {
  color: var(--accent-color);
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s;


}

.read-more-btn2:hover {
  color: var(--heading-color);
}

.achivment-badge {
  background-color: var(--accent-color);
  border-radius: 5px;
  padding: 5px 10px;
  position: absolute;
  top: 20px;
  left: 20px;
}

/* footer */


.footer-bg {
  background-size: cover;
  background-position: center;
  padding: 60px 0px;
}

.footer h5 {
  font-family: var(--heading-font);
  color: #fff;
  font-size: 30px;
  position: relative;
  margin-bottom: 30px;
}

.footer h5::after {
  position: absolute;
  content: " ";
  width: 70px;
  height: 3px;
  background-color: var(--accent-color);
  bottom: -10px;
  left: 2px;
}

.footer p {
  font-size: 16px;
  opacity: 0.7;
  color: #fff;
  font-weight: 300;
  margin-bottom: 30px;
}

.footer-social-link {
  background-color: #7d8286;
  height: 40px;
  width: 40px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;

  transition: all 0.3s;
}

.footer-social-link i {
  color: #fff;

}

.footer-social-link:hover {
  background-color: var(--accent-color);
}

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

.footer-bg ul li {
  margin: 12px 0px;

}

.footer-bg ul li a {
  color: #fff;
  opacity: 0.7;
  transition: all 0.3s;
}

.footer-bg ul li a:hover {
  opacity: 1;
}

.footer-post-row img {
  margin-top: -10px;
}

.post-content p {
  color: var(--accent-color);
  font-weight: 400;
  opacity: 1;
  margin-top: 5px;
}

.footer-post-row {
  margin: px 0px;
}

.orange {
  background-color: var(--accent-color);
}

.contact-des a {
  display: block;
  color: #fff;
  opacity: 0.7;
}

.contact-des a:hover {
  opacity: 1;
}

.footer-contact-row {
  margin: 18px 0px;
}
.footer-contact-row a{
  flex-shrink: 0;
}
.location {
  color: #fff;
  opacity: 0.7;
  text-wrap: wrap;

}

.copyright {
  background-color: var(--accent-color);
  padding: 20px 0px;
}

.credits {
  font-size: 17px;
  color: #fff;
}

/* scroll top button */


#btn-back-to-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  display: none;
  border-radius: 50px;
  background-color: var(--accent-color);
  color: #fff;
}

@media only screen and (max-width: 768px) {
  [data-aos][data-aos-delay] {
    transition-delay: 0ms !important;
  }
}

@media (max-width: 540px) {
  #topbar {
    top: -70px;
  }

  #header {
    top: 0px;
  }

  .logo {
    margin-right: 0%;
  }

  .logo img {
    height: 30px;
  }

  .admission-btn {
    margin-left: 0%;
  }

  .dropdown-toggle::after {
    content: " ";
  }


  .carousel-item img {
    height: 250px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }

  .hero-sticky-box-area {
    position: static;
    margin-top: 20px;
  }

  .section {
    padding: 30px 0px;
  }

  .section-title {
    font-size: 40px;
  }

  .about-img {
    padding-top: 0px;
    padding-bottom: 50px;
  }

  .faciliti {
    padding: 40px 15px;
  }

  .feature-content-section {
    padding: 70px 30px 60px 30px;
  }

  .announcement .section-title {
    margin-top: 0% !important;
  }

  .announcement-form {
    margin: 30px 0px;
  }

  .accordion-img-box {
    margin: 30px 0px;
  }

  .activity-bg {
    padding: 50px 20px;
  }



  .activity-box {
    margin: 20px 0px;
  }

  .activity,
  .alumni {
    padding-bottom: 20px;
  }

  .alumni-title {
    margin-top: 50px;
  }

  .achivment-bg {
    padding: 50px 0px;
  }

  .footer-bg {
    padding: 60px 10px;
  }

  .footer-scoial-link-row {
    margin-bottom: 40px;
  }

  .footer ul {
    margin-bottom: 40px;
  }

  #btn-back-to-top {
    bottom: 1280px;
    right: 20px;
  }

  .about-page-img-box {
    margin-bottom: 50px;
  }
.primary-img{
  margin-bottom: 40px;
}



}


@media screen and (max-width:820px) and (min-width: 541px) {

  #topbar {
    top: -70px;
  }

  #header {
    top: 0px;
    height: 70px;

    
  }
.admission-btn{
  margin-right: 20px;
}
.carousel-item{
  height: 350px;
}
  .carousel-control-prev, .carousel-control-next{
    display: none;
  }
  

 .about-img{
  margin-top: -30px;
 }
  .section {
    padding: 30px 0px;
  }
.light-background{
 padding-bottom: 40px!important;
}
  .feature-content-section {
    padding: 70px 0px 50px 0px;
  }

  .event-box {
    height: 100% !important;
  }

  .hero-sticky-box {
    height: 100%;
  }

  .announcement .section-title {
    margin-top: 20px !important;
  }

  .accordion-img-box {
    margin: 50px 0px;
  }

  .col-md-0 {
    display: none;
  }
.about-page-img-box{
  margin-bottom: 50px;
}
.page-bg-img{
  padding: 50px 0px 20px 0px!important;
}
.col-md-0{
  display: none;
}

.primary-img{
  margin-bottom: 40px;
}
.about-page-img-box{
  margin-bottom: 50px;
}


}

@media screen and (max-width: 1024px) and (min-width: 821px) {
 .carousel-control-prev,
  .carousel-control-next {
  bottom: 750px;
  }
.carousel-item{
  height: 450px;
}
  .logo img {
    height: 40px;
  }

 .about-img{
  margin-top: 0%!important;
 }

  .hero-sticky-box {
    height: 100%;
  }

  .feature-content-section {
    padding: 27px 20px;
  }

  .event-box {
    height: 100%;
  }

  .event-box-content {
    padding: 10px 20px;
  }

  .event-box-content a {
    padding-bottom: 0%;
  }

  .faciliti-item {
    width: 270px;
  }

  .faciliti-badge {
    bottom: 130px;
  }

  .accordion-img-box {
    margin-bottom: 0%;
  }
  

  .right-topbar {
    gap: 0px;
   margin-left: auto;
  }

  .left-topbar {
    margin-right: 0px;
  }

  .left-topbar p {
   overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
max-width: 100%;
  }

  .right-topbar-content p,
  .right-topbar-content a {
   overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
max-width: 100%;
  }

  .right-topbar-icon img {
    height: 25px;
  }

  .vr-border {
    margin-left: 0%;
    margin-right: 20px;
  }
  .primary-img{
    height: 100%;
  }

}


@media (min-width:1920px) {

  .carousel-control-prev,
  .carousel-control-next {
    bottom: 200px !important;
  }
  .carousel-item img{
    height: 700px;
  }

  .feature-content-section {
    height: 100% !important;
  }

  .event-box-content {
    padding: 20px 20px;
  }

  .about-img {
    padding-bottom: 0%;
  }

}









/* about page */

/* page-bg */
.page-bg-img {

  background-position: center;
  padding: 130px 0px 20px 0px;

}

.page-bg-img h1 {
  font-family: var(--heading-font);
  font-size: 50px;
  font-weight: 700;

}

.breadcrumb-item.active {
  font-size: 22px;
  color: var(--accent-color);
}



.breadcrumb {
  --bs-breadcrumb-divider-color: var(--accent-color);
  font-size: 22px;
  margin: 20px 0px;
}

.about-page-img-box img {
  border: 8px solid var(--accent-color);
  padding: 12px;
}

.about-page-img-des p {
  font-size: 17px;
}

/* secretary's message page */
.owner-img-box {
  position: relative;
}

.secr-message {
  font-size: 35px;
  margin-bottom: 60px;
  font-weight: 600;
}

.secr-message-box {
  background-color: #fff;
  border-radius: 50px;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  padding: 60px 35px;
  position: relative;
}

.message-icon {
  position: absolute;
  left: 10%;
  top: -30px;
  border-radius: 50px;
  background-color: var(--accent-color);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.message-icon i {
  font-size: 30px;
  color: #fff;
}


/* Bridging the Gap Session */


.gap-img {

  background-color: #fff;
  overflow: hidden;


}

.gap-img img {
  border-radius: 12px;
  transition: all 0.3s;
}

.gap-img img:hover {
  transform: scale(1.2);
  box-shadow: 0px 0px 20px rgba(131, 139, 156, 0.25);
}

/* gallery */

.gallery-box {
  border-radius: 10px;
  background-color: #fff;
  padding: 20px;
  box-shadow: 0px 0px 30px rgba(131, 139, 156, 0.25);
  height: 100%;
}

.gallery-img-box {
  overflow: hidden;

  margin-bottom: 20px;

}

.gallery-img-box img {
  transition: all 0.3s;
  height: 250px;

}

.gallery-img-box img:hover {
  transform: scale(1.2);
}

.gallery-box h4 {
  text-align: center;
  font-size: 24px;
  font-family: var(--heading-font);
  font-weight: 600;
}

.hy1 {


  height: 100% !important;

}


/* contact */


.contact-box {
  background-color: #fff;
  border-radius: 25px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  padding: 40px 30px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  transition: all 0.3s;
  height: 100%;

}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center !important;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  background-color: var(--accent-color);
  margin: auto;
  transition: all 0.3s;
}

.contact-icon i {
  color: #fff;
  font-size: 45px;
  transition: all 0.3s;
}

.contact-des2 {
  margin: 20px 0px 0px;
  transition: all 0.3s;
}

.contact-des2 a {
  display: block;
  color: var(--default-color);
  font-size: 21px;
  font-family: var(--heading-font);
  transition: all 0.3s;
}

.contact-des2 p {
  color: var(--default-color);
  font-size: 19px;
  font-family: var(--heading-font);
  transition: all 0.3s;
}

.contact-box:hover {
  background-color: var(--accent-color);
}

.contact-box:hover .contact-icon {
  background-color: #fff;
}

.contact-box:hover .contact-icon i {
  color: var(--heading-color);
}

.contact-box:hover .contact-des2 a {
  color: #fff;
}

.contact-box:hover p {
  color: #fff;
}

.contact input {
  margin: 20px 0px;
  padding: 15px 20px;
  font-size: 18px;
  font-family: var(--heading-font);
  border-radius: 0%;

}

.contact input:focus {
  outline: none !important;
  border: 1px solid var(--accent-color);
  box-shadow: none !important;
}

.contact textarea {
  height: 84%;
  padding: 15px 20px;
  width: 100%;
  font-size: 18px;
  font-family: var(--heading-font);
  border-radius: 0%;
  margin: 20px 0px;
  border: 1px solid #dddcdc;
}

.contact textarea:focus {
  outline: none !important;
  border: 1px solid var(--accent-color);
  box-shadow: none !important;
}

.message-btn {

  background-color: var(--button-background-color);
  border-radius: 10px;
  padding: 20px 25px;
  color: #fff;
  font-size: 19px;
  font-family: var(--heading-font);
  margin: 20px 0px;
}


/* why SLPS */




.secr-message-box2 {
  background-color: #fff;
  border-radius: 50px;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  padding: 50px 35px 30px 35px;
  position: relative;
  margin: 40px 0px;
}

.secr-message-box2 p {
  font-size: 19px;
  font-style: italic;
}

.message-icon2 {
  position: absolute;
  left: 5%;
  top: -20px;
  border-radius: 50px;
  background-color: var(--accent-color);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.message-icon2 i {
  font-size: 20px;
  color: #fff;
}

/* timing page */


.timing-box {
  background-color: #fff;
  border-radius: 50px;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  padding: 30px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 30px 20px;
}

.timing-icon {
  border-radius: 50px;
  background-color: var(--accent-color);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timing-icon i {
  color: #fff;
  font-size: 45px;
}

.timing-heading {
  font-size: 32px;
}

.time p {
  font-size: 19px;

}

.time p i {
  color: var(--accent-color);

}

.time p strong {
  color: var(--accent-color);
  font-size: 24px;
  margin-bottom: 20px;
  display: block;

}

@media (max-width:430px) {
  .page-bg-img {
    padding: 45px 10px 30px 10px;
  }

  .page-bg-img h1 {
    font-size: 40px;
  }
}
