in@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  padding: 0px;
  margin: 0px;
}
:root {
  --theme_blue: #000080;
  --theme_gray: #424242;
  --yellow_bg: #fbf7ed;
--primary-color: #4361ee;
--primary-light: #eef2ff;
--secondary-color: #3a0ca3;
--text-color: #2b2d42;
--text-light: #6c757d;
--bg-color: #f8f9fa;
--white: #ffffff;
--shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
--transition: all 0.3s ease;
}
a {
  text-decoration: none;
}
body {
  font-family: "Poppins", serif;
}
section {
  padding: 60px 0px;
}
p {
  color: var(--theme_gray);
  line-height: 30px;
}
p:last-child {
  margin: 0px;
}
h2 {
  font-family: Arial;
  font-size: 40px;
  font-weight: 700;
  line-height: 48px;
  color: var(--theme_blue);
  margin-bottom: 30px;
}
h2 span {
  color: #00b140;
}
h4 {
  font-size: 22px;
  font-weight: 600;
  color: var(--theme_blue);
}
ul {
  padding-left: 20px;
}
li {
  font-size: 16px;
  list-style: none;
}
iframe {
    width: 100%;
    display: block;
}
.light-bg{
    background: #f3f3f3;
}
.list {
  padding: 0px;
  display: grid;
  gap: 15px;
}
.list li {
    color: var(--theme_blue);
    font-size: 20px;
    display: flex;
    gap: 5px;
}
.list li > ul li {
  font-size: 16px;
}
.img_block {
  text-align: center;
}
.number_list li {
  list-style: auto;
}
.sis_list {
    padding: 0px;
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(5, 1fr);
}
.sis_list li {
    position: relative;
}
.btn {
  background-color: var(--theme_blue) !important;
  color: white !important;
  padding: 12px 20px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  border: 1px solid;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn span {
  z-index: 20;
}

.btn::after {
  background: #fff;
  content: "";
  height: 155px;
  left: -75px;
  opacity: 0.2;
  position: absolute;
  top: -50px;
  transform: rotate(35deg);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 50px;
  z-index: -10;
}

.btn:hover::after {
  left: 120%;
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}
.yellow_bg {
  background-color: var(--yellow_bg);
}
.text_primary {
  color: var(--theme_blue);
}
.top-banner {
  background-color: var(--theme_blue);
  color: white;i
  padding: 8px 0;
  font-size: 14px;
  overflow: hidden;
  white-space: nowrap;
}
.top-banner a {
  color: white;
  text-decoration: none;
}
.scrolling-text {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 30s linear infinite;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.scrolling-text:hover {
  animation-play-state: paused;
}
.header-main {
  padding: 15px 0;
}
.logo img {
  max-height: 150px;
}
.contact-info {
  color: var(--theme_blue);
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}
.contact-info a {
  color: var(--theme_blue);
  text-decoration: none;
  display: inline-block;
}
.contact-info i {
  font-size: 18px;
  vertical-align: middle;
  margin-right: 5px;
}
.nav-bar {
  background-color: var(--theme_blue);
}
.header .nav-bar .nav-link {
  color: white;
  padding: 12px 14px;
  border-radius: 5px;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-bar .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.enquiry-btn {
  background-color: var(--theme_blue);
  color: white;
  padding: 8px 20px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
}
.enquiry-btn:hover {
  background-color: #000066;
  color: white;
}
.navbar-toggler {
  border-color: white;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.85)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
/* dropdown */
.nav-item {
  position: relative;
}
.navbar .nav-item:hover .dropdown {
  display: block;
}
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  min-width: 200px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 999;
  border-radius: 5px;
  overflow: hidden;
}

.dropdown a {
  padding: 10px;
  color: var(--theme_blue);
  display: block;
  font-size: 12px;
}
.dropdown a:hover {
  background-color: #eaeaea;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: white;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: #ffffff;
  padding: 10px;
  position: fixed;
  top: 0;
  z-index: 999;
  left: -100%;
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  transition: 0.5s;
}
.mobile-menu .dropdown {
  position: static;
}

@media (max-width: 768px) {
  /* .navbar ul {
    display: none;
  } */
  .navbar {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .dropdown {
    background-color: #f1f1ff;
    min-width: 100%;
    box-shadow: none;
  }
  .mobile-menu {
    display: block;
  }
  .mobile-menu .nav-link {
    display: flex;
    justify-content: space-between;
  }
  .mobile-menu.active {
    left: 0px;
  }
  .closeSidebar {
    /*position: absolute;*/
    /*right: 10px;*/
    /*top: 0;*/
    font-size: 25px;
    z-index: 999;
    color: #000080;
  }
}
/* dropdown */
.banner_caption {
  position: absolute;
  z-index: 999;
  bottom: 0px;
  background: #00000073;
  padding: 30px 100px;
  width: 75%;
}
.banner .swiper-button-next,
.banner .swiper-button-prev {
  color: #fff;
}
.swiper {
  width: 100%;
  height: 100%;
}
.facilities-tab .nav-tabs .nav-link {
  color: #333;
  border: none;
  padding: 10px 20px;
  line-height: 1;
  background: #ffac52;
  border-radius: 5px;
}
.facilities_wrap {
  position: relative;
}
.facilities_info {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  /*width: calc(100% - 500px);*/
  /*position: absolute;*/
  /*top: 50%;*/
  /*transform: translateY(-50%);*/
  /*right: 0px;*/
  /*min-height: 500px;*/
}
.facilities-tab .nav-tabs {
  gap: 10px;
}
.facilities-tab .nav-tabs .nav-link.active {
  background-color: var(--theme_blue);
  color: white;
  border: none;
  border-radius: 4px;
}
.facilities_img {
  max-width: 526px;
}
.facilities-tab .tab-content {
  padding: 25px 0;
}
.facilities-tab h1 {
  color: #1a237e;
  font-size: 28px;
  margin-bottom: 20px;
}

.facilities-tab .tab-pane p {
  color: #555;
}
.table, .form-check-input {
    border-color: #878787;
}
/* banner start */
.inner_banner {
  background: url(../images/inner-banner.png) no-repeat ;
  background-size: cover;
  padding: 145px 0px;
  position: relative;
  isolation: isolate;
}
.inner_banner::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 42%);
  z-index: -1;
}
.innerbanner_caption {
  text-align: center;
  color: #fff;
}
.breadcrumb {
  justify-content: center;
  margin: 0px;
  margin-top: 20px;
  gap: 5px;
}
.breadcrumb a {
  color: #fff;
}
.innerbanner_caption h1 {
  font-family: Arial;
  font-size: 48px;
  font-weight: 700;
  line-height: 55.2px;
}
/* banner end */

.card_info {
  padding: 25px 0px 0px;
}
.card_info h4 {
  margin-bottom: 18px;
  font-size: 16px;
}
.header-img{
    height: 54px;
    width:auto;
}
@media (max-width: 768px) {
    .header-img{
    height: 34px;
    
}
}
/* contact section */
.info-card {
  text-align: center;
  padding: 20px;
  position: relative;
  box-shadow: 2px 2px 4px 4px #0000000a;
  border: 1px solid #efeeed;
  border-radius: 15px;
  padding-bottom: 25px;
  height: 100%;
}
.info-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 4px;
  background-color: #00b140;
  clip-path: polygon(2% 0, 98% 0, 100% 100%, 0% 100%);
}

.info-icon {
  margin: 0 auto 15px;
}
.info-icon i {
  color: #00b140;
  font-size: 28px;
}
.info-icon img {
  width: 100%;
  height: 100%;
}

.card-title {
  color: #000080;
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 16px;
}

.card-text {
  color: #666;
  font-size: 14px;
  line-height: 1.4;
}

.contact-form {
  background-color: #fff;
}

.form-title {
  color: #000080;
  font-weight: bold;
  font-size: 28px;
  margin-bottom: 20px;
}

.form-description {
  color: #666;
  margin-bottom: 30px;
  font-size: 14px;
  line-height: 1.6;
}

.form-control,
.form-select {
  margin-bottom: 20px;
  padding: 10px;
  border: 1px solid #a8a8a8;
  font-size: 16px;
}

.form-control:focus {
  border-color: #000080;
  box-shadow: none;
}

textarea.form-control {
  min-height: 150px;
}

.btn-send {
  background-color: #000080;
  color: white;
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-weight: 500;
}

.btn-send:hover {
  background-color: #000066;
  color: white;
}

.students-image {
  width: 100%;
  height: auto;
  border-radius: 0;
}
/* contact section */

.content-wrapper {
  display: flex;
  width: 100%;
  gap: 40px 52px;
  justify-content: start;
  flex-wrap: wrap;
}

.image-container {
  border-radius: 20px;
  display: flex;
  min-width: 240px;
  min-height: 517px;
  flex-direction: column;
  overflow: hidden;
  justify-content: center;
  width: 727px;
  margin: auto 0;
}

.program-image {
  aspect-ratio: 1.41;
  object-fit: contain;
  object-position: center;
  width: 100%;
  flex: 1;
}

.subjects-container {
  display: flex;
  min-width: 240px;
  flex-direction: column;
  overflow: hidden;
  justify-content: start;
  flex: 1;
  flex-basis: 0%;
  padding: 32px;
}

.subjects-heading {
  color: var(--text, #424242);
  font: 700 24px/1 Arial, sans-serif;
}

.subjects-list {
  color: rgba(66, 66, 66, 1);
  font: 400 16px/40px Poppins, sans-serif;
}
.learning-nav {
  border-radius: 14px;
  background-color: rgba(255, 255, 255, 1);
  display: flex;
  flex-direction: column;
  color: var(--main, #000080);
  padding: 32px;
  gap: 20px;
}
.nav-item-active {
  border-radius: 10px;
  background: var(--main, #000080);
  width: 100%;
  color: rgba(255, 255, 255, 1);
  padding: 12px 30px;
}
.learning-nav .nav-link {
  border-radius: 10px;
  background-color: rgba(251, 247, 237, 1);
  width: 100%;
  padding: 12px 30px;
  color: var(--theme_blue);
  text-align: left;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background-color: var(--theme_blue);
  color: #fff;
}
.content-wrapper {
  border-radius: 14px;
  background-color: rgba(255, 255, 255, 1);

  padding: 32px;
}
.content-header {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: start;
}
.content-title {
  width: 100%;
  color: var(--main, #000080);
  font: 700 48px/1.2 Arial, sans-serif;
}
.content-description {
  margin-top: 32px;
  width: 100%;
  color: rgba(66, 66, 66, 1);
}

.gallery-image {
  aspect-ratio: 1.35;
  object-fit: contain;
  object-position: center;
  width: 100%;
  border-radius: 16px;
}

.enquery_section .form-container {
    max-width: 1000px;
    margin: auto;
    padding: 2rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background: #fff;
}

.enquery_section .phone-input {
  display: flex;
  gap: 10px;
}

.enquery_section .phone-input select {
  width: 100px;
}

.gallery-item {
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
}

.clubs_section .club-container {
  margin-bottom: 40px;
  background: white;
  border-radius: 8px;
}

.clubs_section .section-title {
  color: #1a237e;
  margin-bottom: 20px;
  font-size: 30px;
}

.clubs_section .gallery-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 10px;
}
.abo_card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.program-card {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 8px;
}

.program-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.program-card:hover img {
  transform: scale(1.05);
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
}

.curriculum-title {
  font-size: 20px;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 30px;
}

.know-more-btn {
  display: inline-flex;
  align-items: center;
  background-color: white;
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.know-more-btn:hover {
  background-color: #f8f9fa;
}

.arrow-icon {
  margin-left: 0.5rem;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: #000080;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -35px;
}
.feature-icon img {
  height: 35px;
}
.feature-box {
  background-color: #fbf7ed;
  border-radius: 10px;
  transition: transform 0.3s ease;
  border: 1px solid #d4d101;
}
.feature-box span {
  flex: 1;
}
.feature-box:hover {
  transform: translateY(-5px);
}

.school-image {
  border-radius: 15px;
  overflow: hidden;
}

.gallery a {
  display: block;
  overflow: hidden;
  border-radius: 5px;
}

.gallery img {
  width: 100%;
  height: 335px;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 15px;
}

.gallery a:hover img {
  transform: scale(1.05);
}

.from_bg {
  background: url(../images/home/accembly.JPG) no-repeat center;
  background-size: cover;
  padding: 60px;
}
.searchForm {
  background: var(--theme_blue);
  padding: 20px;
  border-radius: 15px;
}
.searchForm .form-control {
  background: transparent;
  color: #fff;
  border: 1px solid #ffffff;
  margin: 0px;
}
.searchForm .form-control::placeholder {
  color: #fff;
}
.searchForm .submitBtn {
  background: #fff;
  border: none;
  padding: 13px;
  width: 100%;
  text-align: center;
  border-radius: 5px;
  color: var(--theme_blue);
}

.newsSection {
  position: relative;
}
.newsSection .swiper-container {
  width: 100%;
  padding: 20px 0;
}

.newsSection .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.newsSection .slide-content img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.newsSection .slide-content {
  padding: 0px;
}

.newsSection .slide-content h3 {
  font-size: 18px;
  margin: 0 0 10px;
}

.newsSection .slide-content p {
  font-size: 14px;
  color: #666;
}

.newsSection .slide-footer {
  padding: 10px 15px;
  font-size: 14px;
  color: #ffffff;
  position: absolute;
  bottom: 0;
  background: linear-gradient(0deg, black, #00000040, transparent);
}
.slide-footer h3 {
  font-size: 20px;
}
.slide-footer p,
.slide-footer a,
.slide-footer span {
  color: #fff;
  line-height: 24px;
  font-weight: 200;
}
.newsSection .slide-footer a {
  text-decoration: none;
}

.bottomArrow .swiper-button-next,
.bottomArrow .swiper-button-prev {
  position: relative;
  width: 50px;
  height: 50px;
  border: #000 1px solid;
  top: 0;
  margin: 0px;
  right: 0px;
  left: 0px;
  display: flex;
  border-radius: 50px;
  opacity: 1;
  color: #000;
}
.bottomArrow .swiper-button-next:after,
.bottomArrow .swiper-button-prev:after {
  display: none;
}
.achievementSlider {
  padding: 24px 15px;
  margin: 0px -15px;
}
.achievement-card {
  box-shadow: 0px 12px 12px 0px #0000001f;
  border-radius: 15px;
}
.achievement-card img {
  height: auto;
  width: 100%;
  object-fit: cover;
  border-radius: 15px 15px 15px 15px;
}
.achievement_info {
  padding: 15px;
}
.achievement_info h3 {
  font-size: 18px;
  font-weight: 600;
  color: #424242;
}
.footer {
  background-color: var(--theme_blue);
  color: white;
  padding: 3rem 0;
}
.footer p,
.footer a {
  color: #fff;
}
.footer-logo {
  max-width: 120px;
  margin-bottom: 1rem;
}

.footer a {
  color: white;
  text-decoration: none;
  display: block;
}

.footer a:hover {
  color: #f0f0f0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
  margin-top: 2rem;
  padding-bottom: 15px;
}
.ftr_title {
  margin-bottom: 30px;
}
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}
.footer-links li a {
  margin: 0px;
  transition: 0.3s;
}
.footer-links li a:hover {
    color: #ef774e;
}
.footer-links li::before {
  content: "»";
  margin-right: 0.5rem;
}

.contact-info {
}
.ftr-contact-info {
  display: flex;
  gap: 10px;
}
.ftr-contact-info:not(:last-child) {
  margin-bottom: 10px;
}
/*.welcome_img img {*/
/*  border-radius: 15px;*/
/*}*/
.navbar {
  display: none;
}
.hamburger {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.hamburger i {
  background: #000080;
  padding: 5px 9px;
  line-height: 1;
  border-radius: 4px;
  color: #fff;
  font-size: 25px;
}
.mobile-menu {
  display: block;
}
.mobile-menu.active {
  left: 0px;
}
.closeSidebar {
    font-size: 25px;
    color: #000080;
    display: flex;
    justify-content: flex-end;
}
.pdfobject-container {
  height: 800px;
  width: 100%;
}
.admission-process-tab .nav-item {
    position: relative;
    flex: auto;
}
.admission-process-tab .nav-tabs .nav-link {
    color: var(--theme_blue);
    font-weight: 500;
    padding: 15px 30px;
    border-radius: 0;
    width: 100%;
    border: #ddd 1px solid;
}
.admission-process-tab .nav-tabs .nav-link.active {
  background-color: var(--theme_blue) !important;
  color: white !important;
  border: none !important;
  position: relative;
}
.admission-process-tab .nav-tabs .nav-link.active.active:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 17px solid transparent;
  border-right: 17px solid transparent;
  border-top: 12px solid #000080;
  position: absolute;
  bottom: -17px;
  left: 50%;
  transform: translate(-50%, -50%);
}
.admission-process-tab .table-header {
  background-color: var(--theme_blue);
  color: white;
}
.admission-process-tab .page-title {
  color: #dc3545;
  text-align: center;
  margin: 30px 0;
}
.admission-process-tab .sr-no {
  color: #dc3545;
  font-weight: bold;
}
.admission-process-tab .tab-content {
    padding: 20px;
}
/*.ad_img img {*/
/*  height: 600px;*/
/*}*/
.tableFixed {
  table-layout: fixed;
}
table.table th {
    background: #000080;
    color: #fff;
}
.enquery_form {
    background: #fff;
    box-shadow: 0px 5px 10px rgb(0 0 0 / 10%);
    padding: 20px;
    border-radius: 10px;
    border: #ebebeb 1px solid;
}
.admission-process-tab {
    border: #dee2e6 1px solid;
}


.banner .swiper-button-next.swiper-button-disabled, .banner .swiper-button-prev.swiper-button-disabled {
    opacity: 1;
    cursor: pointer;
    pointer-events: auto;
}
.learning-section .image-gallery {
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    padding: 5px;
    box-shadow: 0px 5px 6px #5b5b5b36;
}
.learning-section .image-gallery img {
    height: 220px;
    width: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 15px;
}
.application_form {
    padding: 20px;
    position: relative;
    box-shadow: 2px 2px 4px 4px #0000000a;
    border: 1px solid #efeeed;
    border-radius: 15px;
    background: #fff;
}
 .privacy-policy {
    padding: 40px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.privacy-policy .section-title {
    margin-top: 40px;
    margin-bottom: 20px;
}

.aric_program {
    background: #fbf7ed;
    padding: 15px;
    border-radius: 15px;
}
.aric_program .aric-card {
    border-radius: 25px;
    padding: 20px;
    transition: all 0.4s ease;
    height: 100%;
}
.aric_program .program-title {
    font-size: 25px;
}
.aric_program .aric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.aric_program .assimilate {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.aric_program .reinvent {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: white;
}

.aric_program .implementation {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: white;
}

.aric_program .comprehend {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    color: #2d3748;
}
.aric_program .card-title {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 15px;
}
.aric_program .aric-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aric_program .aric-card li {
    padding: 2px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
}

.aric_program .aric-card li::before {
    content: '▶';
    position: absolute;
    left: 0;
    font-size: 0.8em;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .aric_program .program-title {
        font-size: 2em;
    }

    .aric_program .aric-container {
        padding: 25px;
    }
}
.overlay {
    padding: 15px;
    background: linear-gradient(135deg, #000080 0%, #00ABFE 100%);
    width: 100%;
    height: 100%;
    color: #fff;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-size: 20px;
    height: 220px;
}
.sis_list li {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}
.sis_list li img {
    height: 100%;
    object-fit: cover;
}


.house_card {
    border: #ddd 1px solid;
    padding: 10px;
    border-radius: 20px;
    height: 100%;
}
.house_card img {
    border-radius: 10px;
    margin-bottom: 20px;
}
.beyonSports_gal img {
    height: 330px;
    object-position: top;
}
.col_count {
    column-count: 3;
    gap: 15px;
}
.col_count > div {
    margin-bottom: 15px;
}
.col_count img {
    height: auto;
}
.col_count img {
    height: auto;
}
.col_count > div:first-child img {
    height: 507px;
}

.faq-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: #e7ebff47;
}
        
        /* Decorative elements */
        .faq-section .shape {
            position: absolute;
            z-index: 0;
            opacity: 0.1;
        }
        
        .faq-section .shape-1 {
            top: -50px;
            left: -50px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: var(--primary-color);
        }
        
        .faq-section .shape-2 {
            bottom: -80px;
            right: -80px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: var(--secondary-color);
        }
        
        .faq-section .shape-3 {
            top: 40%;
            left: 50%;
            width: 150px;
            height: 150px;
            border-radius: 30px;
            background: var(--primary-color);
            transform: rotate(45deg) translateX(-50%);
        }
        
        .faq-section .faq-header {
            position: relative;
            z-index: 1;
            margin-bottom: 60px;
        }
        
        .faq-section .faq-title {
            font-weight: 700;
            font-size: 42px;
            color: var(--text-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .faq-section .faq-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--primary-color);
            border-radius: 2px;
        }
        
        .faq-section .faq-subtitle {
            color: var(--text-light);
            font-size: 18px;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .faq-section .search-container {
            position: relative;
            max-width: 500px;
            margin: 40px auto 0;
        }
        
        .faq-section .search-input {
            width: 100%;
            padding: 15px 20px;
            padding-left: 50px;
            border-radius: 50px;
            border: none;
            box-shadow: var(--shadow);
            font-size: 16px;
            transition: var(--transition);
        }
        
        .faq-section .search-input:focus {
            box-shadow: 0 5px 20px rgba(67, 97, 238, 0.15);
            outline: none;
        }
        
        .faq-section .search-icon {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--primary-color);
        }
        
        .faq-section .faq-categories {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            margin: 40px 0;
        }
        
        .faq-section .category-btn {
            padding: 10px 20px;
            border-radius: 50px;
            background: var(--white);
            color: var(--text-color);
            border: none;
            box-shadow: var(--shadow);
            transition: var(--transition);
            font-weight: 500;
        }
        
        .faq-section .category-btn:hover, 
        .faq-section .category-btn.active {
            background: var(--primary-color);
            color: var(--white);
        }
        
        .faq-section .category-btn i {
            margin-right: 8px;
        }
        
        .faq-section .faq-content {
            position: relative;
            z-index: 1;
        }
        
        .faq-section .accordion-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-section .accordion-item {
            margin-bottom: 20px;
            border: none;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            background: var(--white);
            transition: var(--transition);
        }
        
        .faq-section .accordion-item:hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transform: translateY(-2px);
        }
        
       .faq-section .accordion-button {
    padding: 10px 20px;
    font-weight: 600;
    font-size: 18px;
    color: var(--text-color);
    background: var(--white);
    border: none;
    box-shadow: none;
    position: relative;
}
        
.faq-section .accordion-button:not(.collapsed) {
    color: #000080;
    background-color: var(--primary-light);
}
        
        .faq-section .accordion-button:focus {
            box-shadow: none;
            border-color: transparent;
        }
        
.faq-section .accordion-button::after {
    background-image: none;
    content: "\ea4e";
    font-family: "remixicon";
    font-size: 20px;
    color: #000080;
    width: auto;
    height: auto;
    transition: var(--transition);
}

/*.accordion-button:not(.collapsed)::after {*/
    content: "\ea4c"; /* Unicode for Remix Icon up arrow */
/*}*/

         
        .faq-section .accordion-body {
            padding: 5px 30px 25px;
            color: var(--text-light);
            line-height: 1.8;
            font-size: 16px;
        }
        
        .faq-section .question-icon {
            margin-right: 15px;
            color: var(--primary-color);
            font-size: 20px;
            width: 24px;
            text-align: center;
        }
        
        .faq-section .faq-footer {
            text-align: center;
            margin-top: 60px;
            position: relative;
            z-index: 1;
        }
        
        .faq-section .contact-text {
            font-size: 18px;
            color: var(--text-color);
            margin-bottom: 20px;
        }
        
        .faq-section .contact-btn {
            padding: 12px 30px;
            background: var(--primary-color);
            color: var(--white);
            border-radius: 50px;
            font-weight: 500;
            transition: var(--transition);
            border: 2px solid var(--primary-color);
            text-decoration: none;
            display: inline-block;
        }
        
        .faq-section .contact-btn:hover {
            background: transparent;
            color: var(--primary-color);
        }
        
        .floating-btn {
            position: fixed;
            right: 0;
            top: 50%;
            transform: translateY(-50%) rotate(0deg);
            background-color: #007bff;
            color: white;
            padding: 20px 10px;
            writing-mode: vertical-rl;
            text-orientation: mixed;
            font-size: 16px;
            border-radius: 10px 0 0 10px;
            cursor: pointer;
            box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.3);
            transition: background 0.3s;
            z-index: 999;
        }

        .floating-btn:hover {
            background-color: #0056b3;
        }
        
        @media (max-width: 768px) {
            .faq-section {
                padding: 60px 0;
            }
            
            .faq-section .faq-title {
                font-size: 32px;
            }
            
            .faq-section .faq-subtitle {
                font-size: 16px;
            }
            
            .faq-section .accordion-button {
                font-size: 16px;
                padding: 15px 20px;
            }
            
            .faq-section .accordion-body {
                padding: 5px 20px 20px;
                font-size: 15px;
            }
            
            .faq-section .category-btn {
                font-size: 14px;
                padding: 8px 15px;
            }
        }






@media (min-width: 1200px) {
  .navbar {
    display: block;
  }
  .hamburger {
    display: none;
  }

}
@media (max-width: 1400px) {
.col_count > div:first-child img {
    height: 436px;
}
}
@media (max-width: 1200px) {
  .dropdown {
    background-color: #f1f1ff;
    min-width: 100%;
    box-shadow: none;
  }
  .mobile-menu .nav-link {
    display: flex;
    justify-content: space-between;
  }
  .contact-info {
    gap: 20px;
    margin: 20px 0px;
    justify-content: flex-start;
  }
  .card_info h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .card_info {
    font-size: 14px;
  }
 .beyonSports_gal img {
    height: 270px;
}
.col_count > div:first-child img {
    height: 373px;
}
.home_gallery .gallery img {
    height: 220px;
}
}
@media (max-width: 991px) {
  h2 {
    font-size: 35px;
    font-weight: 700;
    line-height: 40px;
  }
  .btn {
    padding: 8px 20px;
  }
  section {
    padding: 45px 0px;
  }
  .curriculum-section {
    padding: 0px;
  }

  .curriculum-container {
    max-width: 100%;
  }

  .program-title {
    max-width: 100%;
    font-size: 40px;
  }

  .content-wrapper {
    max-width: 100%;
    padding: 15px;
  }

  .image-container {
    max-width: 100%;
  }

  .program-image {
    max-width: 100%;
  }

  .subjects-container {
    max-width: 100%;
    padding: 0px;
  }

  .subjects-list {
    max-width: 100%;
  }

  .content-header {
    max-width: 100%;
  }
  .content-title {
    max-width: 100%;
    font-size: 40px;
  }
  .content-description {
    max-width: 100%;
  }
  .image-gallery {
    max-width: 100%;
  }
  .enquiry-btn-container {
    display: flex;
    /* justify-content: flex-end; */
    margin-top: 10px;
  }
  .abo_card {
    padding: 15px;
  }
  .mob-col-reverse {
    flex-direction: column-reverse;
  }
  .beyonSports_gal img {
    height: 230px;
}
.col_count > div:first-child img {
    height: 282px;
}
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .learning-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .learning-nav .nav-link {
    padding: 12px;
  }
  .facilities_info {
    width: 100%;
    position: relative;
    top: 0;
    transform: none;
  }
  .facilities_img {
    max-width: 526px;
    margin: 0px auto;
  }
  .why_snkrt {
    padding-top: 0px;
  }
  .welcome_img img {
    margin: 0px auto;
    display: table;
  }
  .achievementSlider {
    padding: 24px 15px;
    margin: auto;
  }

  .hamburger {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
  }
  h2 {
    margin-bottom: 20px;
  }
  .abo_card {
    padding: 15px;
  }
  .inner_banner {
    padding: 80px 0px;
  }
  .innerbanner_caption h1 {
    font-size: 40px;
    line-height: 38.2px;
  }
  .nav.nav-tabs {
    /*row-gap: 10px;*/
    justify-content: center;
}
}

.gallery-item a {
    text-align:center;
    color:#333;
}

@media (max-width: 767px) {
.list li {
    font-size: 18px;
}
  .header-main {
    padding: 8px 0;
  }
  h2 {
    font-size: 30px;
    line-height: 35px;
  }
  .contact-info {
    text-align: center;
    margin-top: 15px;
    display: block;
  }
  .contact-info a {
    display: block;
    margin-bottom: 10px;
  }
  .logo {
    text-align: left;
  }
  .enquiry-btn-container {
    text-align: center;
    margin-top: 15px;
    justify-content: flex-start;
  }
  .contact-info a {
    display: block;
    margin-bottom: 10px;
    text-align: left;
  }
  .hamburger {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
  }
  .hamburger i {
    background: #000080;
    padding: 5px 9px;
    line-height: 1;
    border-radius: 4px;
    color: #fff;
    font-size: 25px;
  }
  .inner_banner {
    padding: 60px 0px;
  }
  .innerbanner_caption h1 {
    font-size: 30px;
    line-height: 40.2px;
  }
  .clubs_section .club-container {
    margin-bottom: 24px;
  }
  .image-container {
    min-height: auto;
  }
  .subjects-heading {
    margin-bottom: 15px;
  }
  .number_list li {
    line-height: 33px;
  }
  .learning-nav {
    padding: 15px;
    gap: 20px;
  }
  .learning-nav .nav-link {
    padding: 12px;
  }
  .banner_caption {
    padding: 7px 30px;
    width: 100%;
  }
  .banner .swiper-slide img {
    height: 270px;
    object-fit: cover;
  }
  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 30px;
  }
  .banner_caption p {
    font-size: 14px;
    line-height: 20px;
  }
  .facilities_info {
    width: 100%;
    position: relative;
    top: 0;
    transform: none;
    padding: 15px;
    min-height: auto;
  }
  .homeFrom,
  .gallery_section {
    padding-top: 0px;
  }

  .newsSection .swiper-container {
    padding-top: 0px;
  }
  .achievementSlider {
    padding: 0px 15px 20px;
    margin: 0px;
  }
  .from_bg {
    padding: 20px 15px;
  }
/*.gallery img {*/
/*    height: 240px;*/
/*}*/
  .facilities-tab .tab-content {
    padding: 40px 0 0px;
  }
  .facilities_img {
    margin-bottom: 30px;
  }
  .why_snkrt {
    padding-top: 0px;
  }
  .inner_banner {
    padding: 80px 0px;
  }
  .admission-process-tab .nav-item {
    flex: auto;
    width: 100%;
  }
/*  .clubs_section .gallery-img {*/
/*    height: 150px;*/
/*}*/
.clubs_section .section-title {
    margin-bottom: 20px;
    font-size: 24px;
}
.admission-process-tab .nav-item {
    flex: auto;
    width: 50%;
}
.admission-process-tab .nav-tabs .nav-link.active.active:after {
    display: none;
}
h2 {
    margin-bottom: 20px;
}
.footer-bottom {
    flex-direction: column-reverse;
    gap: 10px;
}
.facilities-tab .nav-tabs .nav-link {
   
    padding: 10px 10px;
  
}
.house_card h4 {
    font-size: 18px;
}
.beyonSports_gal img {
    height: 200px;
}
.col_count {
    column-count: 2;
    gap: 15px;
}
.col_count > div:first-child img {
    height: 250px;
}
.home_gallery .gallery img {
    height: 260px;
}
}

@media (max-width: 575.98px) { 
.admission-process-tab .nav-item {
    flex: auto;
    width: 100%;
}
.beyonSports_gal img {
    height: auto;
}
.col_count {
    column-count: 1;
    gap: 15px;
}
.home_gallery .gallery img {
    height: 140px;
}
h2 {
    font-size: 24px;
    line-height: 28px;
}
}

.contact-card a{color:#666;}
.welcome_img img{border-radius: 10px;}
.welcome_img { border: 2px solid #000080; border-radius: 10px; box-shadow: 2px 5px 7px 1px #c2c2c2;}
.facilities_inner-img img{border-radius:10px; border:1px solid blue;}
.ad_img img { border-radius: 10px; border: 2px solid #050582; box-shadow: 0px 3px 0px 1px #c0c0c0;}