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

body {
  font-family: "Poppins", sans-serif;
}

p {
  font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

.has-scroll-smooth [data-scroll-container] {
  min-height: auto;
}

header.entry-header.alignwide {
  display: none;
}

/* Header Styles */
.nav_header {
  position: relative;
  z-index: 999;
  width: 100%;
  margin: 0 auto;
  top: 0;
  transition: transform 0.3s ease, position 0.3s ease;
  transform: translateY(0);
}
.nav_header.scroll-follow {
  transform: translateY(var(--scroll-y, 0px));
}
.nav_header .nav_container {
  max-width: 1800px;
  width: 100%;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 4px;
  position: relative;
}
.nav_header .nav_container .logo img {
  height: auto;
}
.nav_header .nav_container .main-nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
  margin-bottom: 0;
}
.nav_header .nav_container .main-nav ul a {
  text-decoration: none;
  color: #222222;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s;
}
.nav_header .nav_container .main-nav ul a:hover {
  color: #009245;
}
.nav_header .nav_container .main-nav ul li {
  position: relative;
}
.nav_header .nav_container .main-nav ul li.menu-item-has-children {
  position: relative;
}
.nav_header .nav_container .main-nav ul li.menu-item-has-children::after {
  content: "\f0d7";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 5px;
  position: absolute;
  bottom: 0;
  transition: all 0.3s ease-in;
}
.nav_header .nav_container .main-nav ul li.menu-item-has-children:hover::after {
  color: #009245;
  transform: rotate(180deg);
}
.nav_header .nav_container .main-nav ul li ul.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  padding: 10px 0;
  display: none;
  min-width: 200px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 999;
}
.nav_header .nav_container .main-nav ul li ul.submenu li {
  display: block;
  position: relative;
}
.nav_header .nav_container .main-nav ul li ul.submenu li a {
  padding: 10px 20px;
  display: block;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
  text-transform: capitalize;
}
.nav_header .nav_container .main-nav ul li ul.submenu li a:hover {
  color: #009245;
}
.nav_header .nav_container .main-nav ul li ul.submenu li ul.sub_submenu {
  position: absolute;
  top: 0;
  left: 100%;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  min-width: 240px;
  display: none;
  flex-direction: column;
  z-index: 999;
  gap: 10px;
}
.nav_header .nav_container .main-nav ul li ul.submenu li.menu-item-has-children::after {
  top: 60%;
  right: 10px;
  transform: translateY(-50%) rotate(-90deg);
}
.nav_header .nav_container .main-nav ul li:hover ul.submenu {
  display: block;
}
.nav_header .nav_container .main-nav ul li:hover ul.submenu li:hover .sub_submenu {
  display: flex;
}
.nav_header .nav_container .admission-btn {
  background-color: #009245;
  color: white;
  padding: 10px 18px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.3s ease;
  border: 1px solid;
}
.nav_header .nav_container .admission-btn:hover {
  background-color: #ffffff;
  color: #0d9a4a;
  border: 1px solid #009245;
}
.nav_header .nav_container .hamburger {
  display: none;
  flex-direction: column;
  gap: 0px;
  cursor: pointer;
  align-items: end;
  width: 50px;
}
.nav_header .nav_container .hamburger .line {
  width: 35px;
  height: 1px;
  background: #000;
  margin: 5px;
  transition: all 0.3s;
}
.nav_header .nav_container .hamburger .line:nth-child(2) {
  width: 20px;
}
.nav_header .nav_container .hamburger:hover .line {
  width: 20px;
}
.nav_header .nav_container .hamburger:hover :nth-child(2) {
  width: 35px;
  transition: all 0.3s;
}
.nav_header.sticky_header {
  position: sticky;
  top: 0;
  background: #fff;
  height: 90px;
  transform: translateY(0);
}

.hero-section {
  width: 100%;
  background-color: #f4f4f4;
  position: relative;
}
.hero-section .hero-image img {
  width: 100%;
  display: block;
}
.hero-section .hero-content {
  max-width: 500px;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
}
.hero-section .hero-content .left-text h1 {
  font-size: 6.4rem;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
}
.hero-section .hero-content .left-text p {
  font-size: 2rem;
  margin-top: 10px;
  color: #ffffff;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 20px;
}
.hero-section .hero-content .left-text p .news-arrow {
  width: 35px;
  height: 35px;
  font-size: 22px;
  background-color: #e14100;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: background 0.3s ease;
}
.hero-section .hero-content.about_content {
  max-width: 613px;
}
.hero-section .hero-content.about_content .left-text h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
}
.hero-section .speech-bubble {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  background: #fff;
  padding: 20px 20px 15px 20px;
  border-radius: 0 0 25px 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 500;
  max-width: 720px;
  width: 100%;
  text-align: center;
  z-index: 2;
}
.hero-section .speech-bubble .dps_logo {
  width: 100px;
  height: 100px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero-section .speech-bubble .dps_logo img {
  width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column-reverse;
    text-align: center;
  }
  .left-text h1 {
    font-size: 2.5rem;
  }
  .left-text p {
    font-size: 1rem;
  }
  .speech-bubble {
    position: static;
    transform: none;
    margin-top: 20px;
  }
}
.about-section {
  background-color: #c42c00;
  color: #fff;
  padding: 260px 30px 50px 30px;
  box-shadow: 0 47px 51px -20px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: -1;
}
.about-section .about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
.about-section .about-container .about-left {
  flex: 1;
  min-width: 250px;
}
.about-section .about-container .about-left h5 {
  letter-spacing: 2px;
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #fff;
  text-transform: uppercase;
}
.about-section .about-container .about-left h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
}
.about-section .about-container .about-divider {
  width: 1px;
  background-color: #eee;
  min-height: 274px;
  height: 100%;
}
.about-section .about-container .about-right {
  flex: 2;
  min-width: 280px;
}
.about-section .about-container .about-right p {
  font-size: 20px;
  line-height: 1.8;
  color: #fff;
  margin-bottom: 20px;
}

.announcement-wrapper {
  display: flex;
  width: 100%;
  background-color: #0a110d;
  color: #fff;
}
.announcement-wrapper .announcement-label {
  padding: 40px 70px;
  font-size: 40px;
  font-weight: 700;
  white-space: nowrap;
}
.announcement-wrapper .announcement-marquee {
  flex: 1;
  background: #fff;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.announcement-wrapper .announcement-marquee .announcement-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  white-space: nowrap;
  animation: scroll-left 20s linear infinite;
}
.announcement-wrapper .announcement-marquee .announcement-track .announcement-item {
  display: flex;
  align-items: center;
  padding: 0 20px;
  white-space: nowrap;
  color: #000;
  font-size: 24px;
}
.announcement-wrapper .announcement-marquee .announcement-track .announcement-item .num {
  font-weight: 700;
  color: #bd2f06;
  margin-right: 8px;
}
.announcement-wrapper .announcement-marquee .announcement-track .announcement-separator {
  width: 2px;
  height: 55px;
  background-color: #2c9c6c;
  margin: 0 20px;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.quick-links-section {
  background-color: #f1f1f1;
  padding: 80px 30px;
  width: 100%;
  overflow: hidden;
}
.quick-links-section .devider2 {
  width: 1000%;
  height: 2px;
  background-color: #d3d3d3;
}
.quick-links-section .quick-links-heading {
  font-size: 9rem;
  font-weight: 900;
  color: #ccc;
  max-width: 1400px;
  margin: 0 auto 50px auto;
}
.quick-links-section .quick-links-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 40px 60px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 50px 0;
}
.quick-links-section .quick-links-wrapper .quick-link-item {
  display: flex;
  align-items: center;
  font-family: "Poppins", sans-serif;
  gap: 10px;
}
.quick-links-section .quick-links-wrapper .quick-link-item .icon-box {
  border-radius: 14px;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}
.quick-links-section .quick-links-wrapper .quick-link-item .icon-box img {
  -o-object-fit: contain;
     object-fit: contain;
}
.quick-links-section .quick-links-wrapper .quick-link-item:hover .icon-box {
  transform: translateY(-5px);
}
.quick-links-section .quick-links-wrapper .quick-link-item .link-number {
  font-weight: bold;
  color: #cccccc;
  font-size: 2.5rem;
  line-height: 2.2rem;
  display: block;
}
.quick-links-section .quick-links-wrapper .quick-link-item .link-text {
  font-size: 1.5rem;
  color: #111;
}

/* Top green label */
.section-tagline {
  display: inline-block;
  padding: 6px 20px;
  background-color: #008e42;
  color: #fff;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 1px;
  border-radius: 30px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* Section wrapper */
.talent-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #fff;
}
.talent-section .section-tagline {
  display: inline-block;
  padding: 6px 20px;
  background-color: #008e42;
  color: #fff;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 1px;
  border-radius: 30px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.talent-section .section-title {
  font-size: 48px;
  font-weight: 700;
  color: #111;
  margin-bottom: 50px;
}
.talent-section .talent-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.talent-section .talent-grid .talent-card {
  width: 340px;
  text-align: center;
}
.talent-section .talent-grid .talent-card:nth-child(even) {
  margin-top: 60px;
}
.talent-section .talent-grid .talent-card img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 16px 6px 20px rgba(0, 0, 0, 0.15);
  margin-bottom: 12px;
  transition: transform 0.3s ease;
  display: block;
}
.talent-section .talent-grid .talent-card:hover img {
  transform: translateY(-6px);
}
.talent-section .talent-grid .talent-card p {
  margin: 0;
  font-size: 23px;
  color: #111;
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
}

/* Section styling */
.why-choose {
  background-color: #008c3c;
  color: #fff;
  padding: 100px 30px;
  text-align: center;
  position: relative;
  font-family: "Poppins", sans-serif;
  background: url(../images/why-shoose-bg.png) no-repeat top center;
  background-size: cover;
}
.why-choose h2 {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 70px;
}
.why-choose .choose-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  justify-items: center;
  gap: 20px;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}
.why-choose .choose-grid .choose-item {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
  max-width: 200px;
}
.why-choose .choose-grid .choose-item:nth-child(4) {
  display: flex;
  flex-direction: column-reverse;
  transform: translateY(-55%);
}
.why-choose .choose-grid .choose-item:nth-child(4) .choose-dashed {
  top: -40px;
}
.why-choose .choose-grid .choose-item:nth-child(1) {
  display: flex;
  flex-direction: column-reverse;
  transform: translateY(-55%);
}
.why-choose .choose-grid .choose-item:nth-child(1) .choose-dashed {
  top: -40px;
}
.why-choose .choose-grid .choose-item .choose-icon {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.why-choose .choose-grid .choose-item .choose-icon img {
  width: 50px;
  height: 50px;
}
.why-choose .choose-grid .choose-item .choose-icon .choose-dashed {
  width: 1px;
  height: 40px;
  border-left: 2px dashed #fff;
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
}
.why-choose .choose-grid .choose-item h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}
.why-choose .choose-grid .choose-item p {
  font-size: 16px;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 0;
}
.why-choose .choose-grid .circle-wrapper {
  position: relative;
  width: 400px;
  height: 400px;
}
.why-choose .choose-grid .circle-wrapper:before {
  content: "";
  position: absolute;
  width: 355px;
  height: 5px;
  background: #fff;
  left: -87%;
  top: 50%;
}
.why-choose .choose-grid .circle-wrapper:after {
  content: "";
  position: absolute;
  width: 355px;
  height: 5px;
  background: #fff;
  right: -87%;
  top: 50%;
}
.why-choose .choose-grid .circle-wrapper .circular_path img {
  width: 100%;
  display: block;
  animation: rotateCircle 8s linear infinite;
  transition: all 0.8s ease-in;
}
.why-choose .choose-grid .circle-wrapper .center-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.why-choose .choose-grid .circle-wrapper .center-circle h3 {
  font-size: 30px;
  font-weight: 700;
  color: #000;
  line-height: 1.4;
  margin: 0;
}

@keyframes rotateCircle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Responsive */
@media (max-width: 1024px) {
  .choose-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  .choose-center {
    grid-column: span 3;
    margin: 40px 0;
  }
}
@media (max-width: 768px) {
  .choose-grid {
    grid-template-columns: 1fr;
  }
  .choose-center-inner {
    width: 180px;
    height: 180px;
  }
}
.head-section {
  background-color: #ffffff;
  padding: 80px 20px;
  font-family: "Poppins", sans-serif;
  position: relative;
  z-index: 1;
}
.head-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 33%;
  background-color: #e9e9e9;
  z-index: -1;
}
.head-section .head-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  gap: 50px;
}
.head-section .head-container .head-image img {
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.head-section .head-container .head-content {
  flex: 1;
  color: #222;
}
.head-section .head-container .head-content h4 {
  font-size: 24px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #000;
  font-weight: 500;
}
.head-section .head-container .head-content h2 {
  font-size: 36px;
  color: #c42c00;
  margin: 0;
  font-weight: 700;
}
.head-section .head-container .head-content h5 {
  font-size: 22px;
  color: #888;
  margin: 10px 0 20px;
  font-weight: 500;
}
.head-section .head-container .head-content p {
  font-size: 20px;
  line-height: 1.5;
  color: #333;
}

.news-section {
  padding: 80px 20px;
  font-family: "Poppins", sans-serif;
  background-color: #fff;
}
.news-section .news-title {
  font-size: 93px;
  font-weight: 700;
  color: #ccc;
  margin-bottom: 50px;
  max-width: 1320px;
  margin: 0 auto 50px auto;
}
.news-section .carousel {
  width: 100%;
  overflow: hidden;
  cursor: grab;
  margin: 50px 0 30px 0;
}
.news-section .news-grid {
  display: flex;
  gap: 30px;
  margin: 0 auto;
}
.news-section .news-grid .news-card {
  background-color: #fff;
  border-radius: 15px;
  padding: 0;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
  width: 440px;
  text-align: left;
}
.news-section .news-grid .news-card:nth-child(1) {
  margin-left: 14vw;
}
.news-section .news-grid .news-card img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  margin-bottom: 10px;
}
.news-section .news-grid .news-card .news-date {
  font-size: 14px;
  color: #888;
  margin: 10px 0 5px;
}
.news-section .news-grid .news-card .news-desc {
  font-size: 22px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 14px;
}
.news-section .news-grid .news-card .news-arrow {
  width: 30px;
  height: 30px;
  background-color: #e14100;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: background 0.3s ease;
}
.news-section .news-grid .news-card .news-arrow :hover {
  background-color: #ff4d00;
}
.news-section .news_container.blogs {
  text-align: center;
}
.news-section .news_container.blogs .news-grid {
  padding: 0px 0 40px 0;
}
.news-section .news_container.blogs .news-card {
  box-shadow: 2px 10px 12px 0px rgba(0, 0, 0, 0.3);
  padding: 20px;
}
.news-section .news_container.blogs .news-title {
  font-size: 41px;
  color: #050101;
}

.form_section {
  position: relative;
  width: 100%;
  display: flex;
}
.form_section .left {
  width: 50%;
}
.form_section .left img {
  width: 100%;
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.form_section .right {
  width: 50%;
  background: url(../images/form-transparent-bg.png) no-repeat top center;
  background-size: cover;
  padding: 2rem;
}
.form_section .right .form-container {
  padding: 30px 40px;
  border-radius: 12px;
  width: 100%;
  max-width: 580px;
}
.form_section .right .form-container h2 {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 50px;
  font-weight: 600;
}
.form_section .right .form-container p {
  font-size: 24px;
  color: #fff;
}
.form_section .right .form-container .form-group {
  margin-bottom: 18px;
}
.form_section .right .form-container .form-group label {
  display: block;
  margin-bottom: 6px;
  color: #555;
  font-weight: 500;
}
.form_section .right .form-container .form-group input {
  width: 100%;
  padding: 20px 20px;
  border: 1px solid #093f2e;
  border-radius: 20px;
  font-size: 20px;
  transition: 0.3s ease;
}
.form_section .right .form-container .form-group input:focus {
  border-color: #c42c00;
  outline: none;
  box-shadow: 0 0 5px rgba(196, 44, 0, 0.4);
}
.form_section .right .form-container .form-group button {
  padding: 10px 40px;
  background-color: #ffffff;
  color: #000;
  border: none;
  border-radius: 30px;
  font-size: 22px;
  cursor: pointer;
  transition: background 0.3s ease;
  text-transform: uppercase;
  box-shadow: 0 13px 10px 8px rgba(0, 0, 0, 0.3);
}

.testimonial-section {
  position: relative;
  background: #009245;
  padding: 80px 20px;
}
.testimonial-section h2 {
  font-size: 50px;
  color: #fff;
  text-align: center;
  font-weight: 700;
}
.testimonial-section .testimonial_wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.testimonial-section .testimonial_wrap .testimonial {
  display: flex;
  align-items: center;
  max-width: 1200px;
  padding: 75px 20px 20px 20px;
  border-radius: 12px;
  margin: 20px auto;
  position: relative;
  z-index: 1;
}
.testimonial-section .testimonial_wrap .testimonial .testimonial-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  margin-right: 90px;
  border: 3px solid #ddd;
}
.testimonial-section .testimonial_wrap .testimonial .testimonial-content {
  flex: 1;
  position: relative;
}
.testimonial-section .testimonial_wrap .testimonial .testimonial-content:before {
  content: "";
  position: absolute;
  width: 94px;
  height: 77px;
  background: url(../images/up-dott.png) no-repeat;
  top: -90px;
  left: 0;
}
.testimonial-section .testimonial_wrap .testimonial .testimonial-text {
  font-size: 22px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8705882353);
  margin-bottom: 10px;
  position: relative;
}
.testimonial-section .testimonial_wrap .testimonial .testimonial-text:after {
  content: "";
  position: absolute;
  width: 94px;
  height: 77px;
  background: url(../images/down-dott.png) no-repeat;
  bottom: -57px;
  /* left: 0; */
}
.testimonial-section .testimonial_wrap .testimonial .testimonial-name {
  font-weight: 600;
  font-size: 22px;
  margin: 30px 0 0 0;
  color: #ffffff;
}
.testimonial-section .testimonial_wrap .testimonial .testimonial-parent {
  font-size: 17px;
  color: #fcfcfc;
  margin: 12px 0;
}
.testimonial-section .testimonial_wrap .navigation {
  position: relative;
  height: 64px;
  width: 130px;
  margin: 0 0 0 auto;
}
.testimonial-section .testimonial_wrap .navigation .swiper-button-prev {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  right: 0;
  left: inherit;
}
.testimonial-section .testimonial_wrap .navigation .swiper-button-prev:after {
  background: url(../images/prev-icon.png) no-repeat;
  background-position: center;
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-position: center;
}
.testimonial-section .testimonial_wrap .navigation .swiper-button-next {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  left: 0;
}
.testimonial-section .testimonial_wrap .navigation .swiper-button-next:after {
  background: url(../images/next-icon.png) no-repeat;
  background-position: center;
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-position: center;
}

.admission-section {
  padding: 35px 30px;
  background-color: #04592c;
}
.admission-section .admision_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
}
.admission-section .section-title {
  font-size: 32px;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
}
.admission-section .section-buttons {
  display: flex;
  gap: 10px;
}
.admission-section .section-buttons .admission-btn2 {
  padding: 13px 25px;
  background-color: #ffffff;
  color: #000000;
  text-decoration: none;
  border-radius: 30px;
  font-size: 20px;
}
.admission-section .section-buttons .admission-btn2:hover {
  color: #009245;
}

.footer {
  background-color: #fff;
  padding: 40px 20px;
  font-family: "Segoe UI", sans-serif;
}
.footer .footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1320px;
  margin: auto;
}
.footer .footer-container .footer-column {
  flex: 1 1 200px;
  min-width: 180px;
}
.footer .footer-container .footer-column h4 {
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 22px;
  color: #000;
  margin-top: 30px;
}
.footer .footer-container .footer-column ul {
  padding: 0;
}
.footer .footer-container .footer-column ul li {
  list-style: none;
}
.footer .footer-container .footer-column a {
  display: block;
  text-decoration: none;
  color: #333;
  font-size: 16px;
  margin: 4px 0;
  transition: color 0.3s;
}
.footer .footer-container .footer-column a:hover {
  color: #00c75e;
}
.footer .footer-container .footer-column p {
  font-size: 17px;
  color: #333;
  line-height: 1.6;
}
.footer .footer-container .footer-column p a {
  display: inline-block;
}
.footer .footer-container .footer-column .social-icons {
  display: flex;
  gap: 10px;
}
.footer .footer-container .footer-column .social-icons .social-icons a img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  transition: transform 0.3s;
}
.footer .footer-container .footer-column .social-icons .social-icons a img:hover {
  transform: scale(1.2);
}

#scroll-progress {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  transition: transform 0.3s ease;
}

#scroll-progress:hover {
  transform: scale(1.1);
}

/* Progress Ring */
.progress-ring__circle {
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  transition: stroke-dashoffset 0.35s;
  stroke-linecap: round;
}

/* Arrow Icon */
.scroll-arrow {
  position: absolute;
  font-size: 20px;
  font-weight: bold;
  color: #04592c;
  /* Red/Orange from logo text */
  pointer-events: none;
}

section.mandotory-section {
  padding: 50px 30px 50px 30px;
}
section.mandotory-section .tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  background: #ffffff;
  padding: 27px 0;
  position: sticky;
  top: 0px;
  z-index: 9999;
}
section.mandotory-section .tabs .tab-button {
  padding: 10px 18px;
  border: none;
  border-radius: 40px;
  background: #fff;
  cursor: pointer;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  font-size: 20px;
}
section.mandotory-section .tabs .tab-button.active {
  border: 2px solid #0ab18c;
  color: #0ab18c;
  background: #fff;
}
section.mandotory-section .vision_content {
  display: grid;
  max-width: 1320px;
  margin: 0 auto;
  gap: 40px;
  grid-template-columns: 1fr 1fr;
  padding: 80px 0 0 0;
}
section.mandotory-section .vision_content .vision-image img {
  max-width: 670px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
section.mandotory-section .vision_content .vision-text {
  max-width: 650px;
}
section.mandotory-section .vision_content .vision-text h2 {
  font-size: 44px;
  margin-bottom: 5px;
  font-weight: 700;
}
section.mandotory-section .vision_content .vision-text em {
  display: block;
  font-style: italic;
  color: #666;
  margin-bottom: 20px;
}
section.mandotory-section .vision_content .vision-text p {
  font-size: 19px;
  line-height: 1.7;
  color: #444;
}
section.mandotory-section .director-content {
  padding: 90px 0 0 0;
}
section.mandotory-section .director-content .director-section {
  background: linear-gradient(135deg, #00a651, #009245);
  padding: 50px 20px;
  display: flex;
  justify-content: center;
}
section.mandotory-section .director-content .director-section .director-container {
  max-width: 1320px;
  width: 100%;
  color: #fff;
  padding: 0 0px;
}
section.mandotory-section .director-content .director-section .director-container p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}
section.mandotory-section .director-content .director-section .director-container h2 {
  font-size: 40px;
  margin-bottom: 40px;
}
section.mandotory-section .director-content .director-section .director-container .chairmain_message {
  display: flex;
  gap: 50px;
  justify-content: flex-start;
  align-items: start;
}
section.mandotory-section .director-content .director-section .director-container .chairmain_message .director-text {
  text-align: justify;
}
section.mandotory-section .director-content .director-section .director-container .chairmain_message .director-image {
  flex: 1;
  min-width: 280px;
}
section.mandotory-section .director-content .director-section .director-container .chairmain_message .director-image img {
  width: 100%;
  max-width: 370px;
  border-radius: 15px;
  background: #fff;
  /* padding: 20px; */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
section.mandotory-section .director-content .director-section .director-container strong {
  display: block;
  font-weight: 600;
  margin-top: 20px;
  font-size: 25px;
}
section.mandotory-section .director-content .director-section.principal-section {
  background: #fff;
}
section.mandotory-section .director-content .director-section.principal-section .director-container {
  color: #000000;
}
section.mandotory-section .disclosure-content {
  padding: 90px 30px 0;
}
section.mandotory-section .disclosure-content .disclosure-section {
  width: 100%;
  background: #f2f2f2;
}
section.mandotory-section .disclosure-content .disclosure-section .disclosure-container {
  max-width: 1200px;
  margin: 0 auto;
}
section.mandotory-section .disclosure-content .disclosure-section .disclosure-container h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 30px;
}
section.mandotory-section .disclosure-content .disclosure-section .disclosure-container .disclosure-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
section.mandotory-section .disclosure-content .disclosure-section .disclosure-container .disclosure-table thead {
  background-color: #e84417;
  color: #fff;
  font-weight: 600;
}
section.mandotory-section .disclosure-content .disclosure-section .disclosure-container .disclosure-table th {
  font-size: 20px;
}
section.mandotory-section .disclosure-content .disclosure-section .disclosure-container .disclosure-table th,
section.mandotory-section .disclosure-content .disclosure-section .disclosure-container .disclosure-table td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid #ccc;
}
section.mandotory-section .disclosure-content .disclosure-section .disclosure-container .disclosure-table td:nth-child(1) {
  text-align: center;
  border-left: none;
}
section.mandotory-section .disclosure-content .disclosure-section .disclosure-container .disclosure-table td:nth-child(4) {
  border-right: none;
}
section.mandotory-section .disclosure-content .disclosure-section .disclosure-container .disclosure-table a {
  color: #0044cc;
  text-decoration: none;
  font-weight: 500;
}
section.mandotory-section .disclosure-content .disclosure-section .disclosure-container .disclosure-table a:hover {
  text-decoration: underline;
}
section.mandotory-section .society_content_Mn {
  padding: 90px 0 0 0;
}
section.mandotory-section .society_content_Mn .society-section {
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  overflow: hidden;
}
section.mandotory-section .society_content_Mn .society-section .society-image {
  width: 100%;
  height: auto;
  display: block;
}
section.mandotory-section .society_content_Mn .society-section .society-content {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  color: white;
  max-width: 500px;
}
section.mandotory-section .society_content_Mn .society-section .society-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}
section.mandotory-section .society_content_Mn .society-section .society-content p {
  font-size: 26px;
  line-height: 1.4;
  margin-bottom: 25px;
}
section.mandotory-section .society_content_Mn .society-section .society-content a {
  display: inline-block;
  padding: 12px 30px;
  background: white;
  color: black;
  font-weight: 600;
  font-size: 26px;
  border-radius: 15px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
section.mandotory-section .society_content_Mn .society-section .society-content a:hover {
  background: #f2f2f2;
}

.infra img {
  width: 100%;
}

.infra-dtls {
  padding: 65px 0px;
}
.infra-dtls p {
  font-size: 20px;
}

.vision {
  background-color: #c42c00;
}
.vision .vision-sec {
  width: 100%;
}
.vision .vision-dtls p {
  font-size: 20px;
  color: #fff;
  width: 100%;
  max-width: 700px;
}

.infrastucture-details {
  padding: 40px 0;
}

.watchful-cctv {
  position: relative;
  background-color: #e1e1e1;
}
.watchful-cctv::after {
  content: "";
  width: 30%;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  right: 0;
}
.watchful-cctv .watchful-img img {
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 99;
  margin-bottom: 30px;
}
.watchful-cctv .watchful-dtls p {
  font-size: 20px;
  color: #222;
}

.great-mind p {
  font-size: 30px;
}

@media (max-width: 1399px) {
  .vision-dtls p {
    padding: 0 30px;
    font-size: 16px;
  }
  .infra-dtls {
    padding: 15px 0px;
  }
}
@media (max-width: 1299px) {
  .vision .vision-dtls p {
    font-size: 16px;
  }
}
@media (max-width: 1199px) {
  .infra-dtls {
    padding: 0;
  }
  .infra-dtls p {
    font-size: 17px;
  }
  .watchful-dtls p {
    font-size: 17px;
    margin-bottom: 30px;
  }
}
@media (max-width: 1099px) {
  .vision-dtls p {
    padding: 10px 30px;
    font-size: 14px;
  }
  .vision .vision-dtls p {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .infra-dtls p {
    margin-top: 30px;
  }
  .vision .vision-dtls p {
    max-width: 972px;
    font-size: 16px;
    margin-top: 20px;
  }
  .watchful-cctv::after {
    width: 0%;
  }
}
@media (max-width: 768px) {
  .vision-dtls p {
    padding: 10px 14px;
    font-size: 15px;
  }
  .infra-dtls p {
    font-size: 17px;
  }
  .watchful-cctv .watchful-dtls p {
    font-size: 17px;
    margin-bottom: 30px;
  }
  .great-mind p {
    font-size: 22px;
    line-height: 28px;
  }
}
.safety-wrap {
  background: #f3f4f6;
  padding: 60px 30px 80px;
}
.safety-wrap h3 {
  font: 800 clamp(21px, 3.2vw, 20px)/1.2 "Poppins", sans-serif;
}
.safety-wrap .safety-container {
  max-width: 1320px;
  margin: 0 auto;
}
.safety-wrap .safety-container .safety-title {
  margin: 0 0 28px;
  font: 800 clamp(28px, 3.2vw, 28px)/1.2 "Poppins", sans-serif;
  color: #111;
}
.safety-wrap .safety-container .safety-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 100px;
}
.safety-wrap .safety-container .safety-list li {
  position: relative;
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 18px;
  box-shadow: 0 3px 5px 0px rgba(0, 0, 0, 0.3);
  padding: 20px 28px 20px 56px;
  color: #1f2937;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.4;
}
.safety-wrap .safety-container .safety-list li::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 28px;
  width: 12px;
  height: 12px;
  border-radius: 2px;
  background: #e14f1c;
}
.safety-wrap .safety-container .hostel_container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 100px;
}
.safety-wrap.hostel_safety .safety-list {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.safety-wrap.hostel_safety .safety-list.bg_green li {
  background: #16a34a;
  border: 1px solid #16a34a;
  color: #fff;
}
.safety-wrap.hostel_safety .safety-list.bg_green li::before {
  background: #fff;
}
.safety-wrap.hostel_safety .safety-list.equal_height li {
  min-height: 126px;
}
.safety-wrap.hostel_safety p.hostel-desc {
  font-size: 24px;
  margin-bottom: 67px;
}
.safety-wrap.hostel_safety.staff_verify .hostel_container {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.safety-wrap.hostel_safety.staff_verify .hostel_container .safety-list li {
  box-shadow: none;
}
.safety-wrap.prevent_safety .safety-list.bg_green {
  background: #16a34a;
  padding: 26px 28px 26px 0px;
  gap: 0px 100px;
  margin: 20px 0;
  border-radius: 20px;
}
.safety-wrap.prevent_safety .safety-list.bg_green li {
  box-shadow: none;
  border-radius: 0;
  padding: 8px 28px 8px 56px;
}
.safety-wrap.prevent_safety .safety-list.bg_green li::before {
  top: 18px;
}
.safety-wrap.prevent_safety .mt_40 {
  margin-top: 40px;
}
.safety-wrap.prevent_safety p.hostel-desc {
  margin-bottom: 40px;
}
.safety-wrap.bggray {
  background-color: #e5e5e5;
}

.hostel_left img,
.hostel_right img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}

.waterAndSwimmingpoolSafety .safety-list {
  margin-bottom: 40px;
}

@media (max-width: 900px) {
  .safety-list {
    grid-template-columns: 1fr;
  }
}
.commitment {
  background: #fff;
  padding: 80px 30px;
  text-align: center;
}
.commitment .commitment-container {
  max-width: 979px;
  margin: 0 auto;
}
.commitment .commitment-container .commitment-title {
  font: 800 clamp(28px, 3.2vw, 33px)/1.2 "Poppins", sans-serif;
  margin-bottom: 25px;
  color: #111;
}
.commitment .commitment-container .commitment-text {
  font-size: 24px;
  line-height: 1.7;
  color: #000;
}
.commitment.safety_heading .commitment-text {
  font-weight: 500;
  line-height: 1.3;
}

@media (max-width: 1366px) {
  .safety-wrap .safety-container .safety-list {
    gap: 20px 70px;
  }
  .safety-wrap .safety-container .hostel_container {
    gap: 30px 70px;
  }
}
@media (max-width: 991px) {
  .safety-wrap .safety-container .safety-list {
    gap: 20px 20px;
  }
  .safety-wrap .safety-container .hostel_container {
    gap: 30px 30px;
  }
}
@media (max-width: 767px) {
  .commitment .commitment-container .commitment-text {
    font-size: 20px;
  }
  .safety-wrap .safety-container .safety-list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .safety-wrap .safety-container .hostel_container {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@media (max-width: 414px) {
  .safety-wrap .safety-container .safety-title {
    font: 800 clamp(22px, 3.2vw, 28px)/1.2 "Poppins", sans-serif;
  }
  .safety-wrap {
    padding: 60px 20px 80px;
  }
  .commitment {
    padding: 80px 20px;
  }
  .safety-wrap.hostel_safety p.hostel-desc {
    font-size: 20px;
  }
  .commitment .commitment-container .commitment-text {
    line-height: 1.3;
  }
}
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 20px;
}

.CulturalPrograms {
  margin-top: 100px;
}

.ClubsSouieties {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.ClubsSouieties .ClubsSouietiesImg {
  width: 49%;
}
.ClubsSouieties .ClubsSouietiesImg img {
  width: 100%;
}
.ClubsSouieties .ClubsText {
  width: 49%;
}
.ClubsSouieties .ClubsText h3 {
  font-size: 44px;
  margin-bottom: 5px;
  font-weight: 700;
  color: #000;
}
.ClubsSouieties .ClubsText p {
  font-size: 19px;
  line-height: 1.7;
  color: #444;
}

/* ActivitiesTab css start  */
.ActivitiesTab {
  width: 100%;
  background: #00a14b;
  padding: 56px;
  position: relative;
  text-align: center;
  border-radius: 20px;
}
.ActivitiesTab h3 {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  margin: 0;
}
.ActivitiesTab span {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  margin: 0;
}
.ActivitiesTab p {
  font-size: 20px;
  color: #fff;
  font-weight: 400;
  margin: 20px;
}

/* ActivitiesTab css end  */
/* House Competitions section css start */
.HouseCompetitionsBg {
  background: url(../images/house-competitions.png);
  width: 100%;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 50px;
  padding: 50px 0px;
}
.HouseCompetitionsBg .InterHouse {
  position: relative;
}
.HouseCompetitionsBg .InterHouse h3 {
  font-size: 40px;
  text-align: center;
  color: #fff;
  font-weight: 800;
  margin: 0;
}
.HouseCompetitionsBg .InterHouseBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 72%;
  margin: 33px auto;
}
.HouseCompetitionsBg .Aryabhatta {
  background: #ffffff;
  width: 200px;
  height: 200px;
  border-radius: 104px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.HouseCompetitionsBg .Aryabhatta h4 {
  font-size: 28px;
  font-weight: 800;
  color: #000000;
  margin: 0;
}
.HouseCompetitionsBg .EveryStudentFlex {
  display: flex;
  justify-content: space-around;
  padding-top: 34px;
  width: 100%;
}
.HouseCompetitionsBg .StudentFlexText {
  width: 46%;
}
.HouseCompetitionsBg .StudentFlexText p {
  color: #fff;
  font-weight: 20px;
  font-weight: 400;
  font-size: 20px;
  margin: 0px;
}

/* House Competitions section css end */
.InNutshell {
  position: relative;
}
.InNutshell p {
  font-size: 30px;
  color: #444;
  margin: 102px 0px;
  text-align: center;
}

.bannerimg {
  width: 100%;
}

.bannerimg img {
  width: 100%;
}

@media (max-width: 1260px) {
  .ClubsSouieties .ClubsSouietiesImg {
    width: 46%;
  }
  .ClubsSouieties .ClubsText {
    width: 46%;
  }
  .HouseCompetitionsBg .InterHouseBox {
    width: 80%;
  }
}
@media (max-width: 1080px) {
  .InterHouseBox {
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center !important;
  }
  .HouseCompetitionsBg .InterHouseBox {
    width: 100%;
  }
}
@media (max-width: 991px) {
  .ActivitiesTab {
    padding: 19px;
  }
  .ClubsSouieties .ClubsText h3 {
    font-size: 30px;
  }
  .ClubsSouieties .ClubsText p {
    font-size: 16px;
  }
  .HouseCompetitionsBg .Aryabhatta {
    width: 160px;
    height: 160px;
  }
  .HouseCompetitionsBg .Aryabhatta h4 {
    font-size: 22px;
  }
  .HouseCompetitionsBg .InterHouseBox {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .ClubsSouieties {
    flex-direction: column;
  }
  .ClubsSouieties .ClubsSouietiesImg {
    width: 100%;
  }
  .ClubsSouieties .ClubsText {
    width: 100%;
    margin-top: 25px;
  }
  .EveryStudentFlex {
    flex-direction: column;
    padding-top: 0px !important;
  }
  .HouseCompetitionsBg .StudentFlexText {
    width: 100%;
  }
  .HouseCompetitionsBg .StudentFlexText p {
    margin: 16px 0px;
  }
  .flex-wrap {
    flex-direction: column-reverse !important;
  }
  .HouseCompetitionsBg {
    background-size: cover;
    padding: 5px 0px;
  }
  .NationalLevel {
    flex-direction: column-reverse;
  }
  .CulturalPrograms {
    margin-top: 33px;
  }
  .InNutshell p {
    font-size: 25px;
    margin: 8px 0px;
  }
  .ActivitiesTab {
    padding: 10px;
  }
  .HouseCompetitionsBg .Aryabhatta {
    width: 150px;
    height: 150px;
  }
  .HouseCompetitionsBg .Aryabhatta h4 {
    font-size: 20px;
  }
  .HouseCompetitionsBg .InterHouse h3 {
    font-size: 30px;
    line-height: 39px;
  }
  .ActivitiesTab h3 {
    font-size: 30px;
  }
  .ActivitiesTab p {
    font-size: 16px;
    margin: 0px;
  }
  .HouseCompetitionsBg .StudentFlexText p {
    font-size: 16px;
  }
  .ActivitiesTab span {
    margin-bottom: 14px;
    display: inline-block;
  }
}
@media (max-width: 480px) {
  .HouseCompetitionsBg .InterHouseBox {
    width: 100%;
  }
  .HouseCompetitionsBg .EveryStudentFlex {
    padding-top: 0px;
  }
  .InNutshell p {
    font-size: 20px;
  }
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin: 40px auto;
  max-width: 1320px;
}
.gallery .gallery-item {
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, width 0.3s ease;
  position: relative;
  overflow: hidden;
}
.gallery .gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  transition: transform 0.3s ease;
  position: relative;
}
.gallery .gallery-item::before {
  content: "\f07c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  color: #89918a;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  pointer-events: none;
}
.gallery .gallery-item:hover::before {
  opacity: 1;
}
.gallery .gallery-item:hover::after {
  transform: translateY(0%);
}
.gallery .gallery-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(85, 85, 85, 0.6509803922);
  transform: translateY(-100%);
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 1;
}
.gallery .gallery-item .title {
  margin: 10px 0 5px;
  font-size: 16px;
  font-weight: 500;
  color: #000;
}
.gallery .gallery-item .date {
  font-size: 14px;
  color: #555;
}
.gallery .gallery-item a {
  text-decoration: none;
  color: inherit;
}
.gallery.inner_gallery .gallery-item::before {
  content: "view";
  top: 50%;
  font-weight: 300;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  background: #ef5827;
  border-radius: 0;
  padding: 3px 10px;
  color: white;
  font-size: 18px;
}

@media (max-width: 1600px) {
  .nav_header {
    position: sticky;
    top: 0px;
    z-index: 999;
    width: 100%;
    margin: 0 auto;
    transition: all 0.3s ease-in;
    height: 90px;
  }
  .nav_header .nav_container {
    justify-content: space-around;
  }
  .nav_header .nav_container .hamburger {
    display: block;
    position: relative;
    z-index: 999;
  }
  .nav_header .nav_container .hamburger.active .line {
    background-color: #fff;
    margin: 0;
    width: 20px;
  }
  .nav_header .nav_container .hamburger.active .line:nth-child(2) {
    display: none;
  }
  .nav_header .nav_container .hamburger.active .line:nth-child(1) {
    transform: rotate(45deg);
  }
  .nav_header .nav_container .hamburger.active .line:nth-child(3) {
    transform: rotate(-45deg);
  }
  .nav_header .nav_container .main-nav {
    display: block;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    background: rgba(0, 146, 69, 0.8);
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    background: #009245 url(../images/form-bg.png) no-repeat;
    background-size: cover;
    padding: 160px 0 0 100px;
    transform: translateY(-100%);
    transition: all 0.5s ease-in;
  }
  .nav_header .nav_container .main-nav ul {
    list-style: none;
    display: flex;
    gap: 10px;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    flex-direction: column;
  }
  .nav_header .nav_container .main-nav ul a {
    font-size: 2.5rem;
    color: #c6c6c6;
  }
  .nav_header .nav_container .main-nav ul a:hover {
    color: #fff;
  }
  .nav_header .nav_container .main-nav ul li {
    min-width: 350px;
    width: -moz-fit-content;
    width: fit-content;
  }
  .nav_header .nav_container .main-nav ul li ul.submenu {
    top: -100%;
    left: 100%;
    background: transparent;
    box-shadow: none;
  }
  .nav_header .nav_container .main-nav ul li ul.submenu li a {
    font-size: 2rem;
    color: #fff;
    padding: 0;
  }
  .nav_header .nav_container .main-nav ul li ul.submenu li a:hover {
    color: #f1592c;
  }
  .nav_header .nav_container .main-nav ul li ul.submenu li ul.sub_submenu {
    background: transparent;
    box-shadow: none;
  }
  .nav_header .nav_container .main-nav ul li ul.submenu li ul.sub_submenu li a {
    color: #fff;
  }
  .nav_header .nav_container .main-nav ul li ul.submenu li ul.sub_submenu li a:hover {
    color: #c63505;
  }
  .nav_header .nav_container .main-nav ul li ul.submenu li.menu-item-has-children::after {
    content: "";
    transform: rotate(0deg);
    transform-origin: right;
    width: 10px;
    left: 60%;
    background-color: #c63505;
  }
  .nav_header .nav_container .main-nav ul li ul.submenu li.menu-item-has-children:hover::after {
    background-color: #c63505;
    width: 112px;
  }
  .nav_header .nav_container .main-nav ul li.menu-item-has-children::after {
    content: "";
    position: absolute;
    width: 0px;
    height: 2px;
    position: absolute;
    bottom: 26px;
    transition: all 0.3s ease-in;
    background: #fff;
  }
  .nav_header .nav_container .main-nav ul li.menu-item-has-children:hover::after {
    color: #fff;
    transform: rotate(0deg);
    width: 112px;
  }
  .nav_header .nav_container .main-nav:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 146, 69, 0.6509803922);
  }
  .nav_header .nav_container .main-nav.active {
    transform: translateY(0%);
  }
  .nav_header .logo {
    position: relative;
    z-index: 99;
  }
  .nav_header .cta {
    position: relative;
    z-index: 99;
  }
  .nav_header.active {
    z-index: 99999;
  }
}
@media (max-width: 1366px) {
  .why-choose {
    padding: 70px 30px 150px 30px;
  }
  .why-choose .choose-grid {
    min-height: 300px;
  }
  .why-choose .choose-grid .circle-wrapper {
    width: 250px;
    height: 250px;
  }
  .why-choose .choose-grid .circle-wrapper .center-circle h3 {
    font-size: 24px;
    line-height: 1.2;
  }
  .why-choose .choose-grid .choose-item:nth-child(1) {
    transform: translateY(-25%);
  }
  .why-choose .choose-grid .choose-item:nth-child(4) {
    transform: translateY(-25%);
  }
  .why-choose .choose-grid .choose-item:nth-child(2) {
    transform: translateY(37%);
  }
  .why-choose .choose-grid .choose-item:nth-child(5) {
    transform: translateY(37%);
  }
  .why-choose .choose-grid .circle-wrapper:before {
    display: none;
  }
  .why-choose .choose-grid .circle-wrapper:after {
    display: none;
  }
  .hero-section .hero-content .left-text h1 {
    font-size: 5.8rem;
    line-height: 1;
  }
  .talent-section .talent-grid .talent-card {
    width: 300px;
  }
  .news-section .news-title {
    text-align: center;
  }
  .news-section .news-grid .news-card:nth-child(1) {
    margin-left: 5vw;
  }
  .form_section .right .form-container {
    max-width: 482px;
  }
  .form_section .right .form-container .form-group input {
    padding: 10px 20px;
    font-size: 16px;
  }
  .form_section .right .form-container h2 {
    font-size: 38px;
  }
  .quick-links-section .quick-links-heading {
    font-size: 7rem;
  }
  section.mandotory-section .tabs {
    gap: 5px;
  }
  section.mandotory-section .tabs .tab-button {
    padding: 4px 10px;
    font-size: 16px;
  }
  section.mandotory-section .vision_content .vision-text p {
    font-size: 16px;
    line-height: 1.5;
  }
  section.mandotory-section .director-content .director-section .director-container {
    padding: 0 30px;
  }
  section.mandotory-section .director-content .director-section .director-container .director-text p {
    font-size: 16px;
    line-height: 1.5;
  }
  section.mandotory-section .director-content .director-section .director-container .director-text h2 {
    font-size: 35px;
  }
}
@media (max-width: 1199px) {
  .hero-section .speech-bubble {
    max-width: 540px;
    font-size: 1.5rem;
  }
  .hero-section .hero-content .left-text h1 {
    font-size: 5.5rem;
  }
}
@media (max-width: 1024px) {
  .quick-links-section .quick-links-wrapper .quick-link-item .icon-box img {
    min-width: 75px;
    max-width: 75px;
  }
  .news-section .news-title {
    font-size: 68px;
  }
  .news-section .news_container.blogs .news-title {
    font-size: 33px;
  }
  .testimonial-section .testimonial_wrap .testimonial .testimonial-content:before {
    width: 66px;
    height: 40px;
    top: -52px;
    background-size: contain;
  }
  .testimonial-section .testimonial_wrap .testimonial .testimonial-text:after {
    width: 49px;
    height: 56px;
    bottom: -38px;
    background-size: contain;
  }
  .admission-section .admision_wrap {
    justify-content: center;
    gap: 40px;
  }
}
@media (max-width: 991px) {
  .about-section .about-container .about-left h5 {
    font-size: 16px;
  }
  .about-section .about-container .about-left h2 {
    font-size: 40px;
    line-height: 1.1;
  }
  .about-section .about-container .about-right p {
    font-size: 16px;
    line-height: 1.6;
  }
  .announcement-wrapper .announcement-label {
    padding: 16px 20px;
    font-size: 26px;
  }
  .quick-links-section .quick-links-heading {
    font-size: 6rem;
  }
  .quick-links-section {
    padding: 60px 30px 0px 30px;
  }
  .why-choose .choose-grid .circle-wrapper {
    width: 100%;
    height: auto;
    padding: 20px 0;
    border: 1px solid #fff;
  }
  .talent-section .talent-grid .talent-card:nth-child(even) {
    margin-top: 0;
  }
  .talent-section .talent-grid .talent-card p {
    font-size: 20px;
    line-height: 1.1;
  }
  .talent-section .talent-grid .talent-card {
    margin-bottom: 30px;
  }
  .talent-section .section-title {
    font-size: 35px;
  }
  .why-choose .choose-grid .choose-item {
    gap: 10px;
    max-width: 460px;
    padding: 20px;
    box-shadow: 0 0px 1px 0px rgba(0, 0, 0, 0.3);
    border: 1px solid #fff;
  }
  .why-choose {
    padding: 50px 30px 50px 30px;
  }
  .why-choose h2 {
    margin-bottom: 43px;
  }
  .why-choose .choose-grid .circle-wrapper .center-circle h3 {
    font-size: 40px;
    color: #fff;
  }
  .why-choose .choose-grid .circle-wrapper .center-circle h3 br:nth-child(1) {
    display: none;
  }
  .why-choose .choose-grid .circle-wrapper .circular_path img {
    display: none;
  }
  .why-choose .choose-grid .choose-item .choose-icon {
    margin: 0 auto 6px;
  }
  .why-choose .choose-grid .choose-item p {
    font-size: 15px;
  }
  .why-choose .choose-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px;
  }
  .why-choose .choose-grid > div:nth-child(3) {
    grid-column: 1/-1;
  }
  .why-choose .choose-grid .circle-wrapper .center-circle {
    position: static;
    transform: translate(0);
  }
  .why-choose .choose-grid .choose-item .choose-icon .choose-dashed {
    display: none;
  }
  .why-choose .choose-grid .choose-item:nth-child(1) {
    transform: translateY(0);
    flex-direction: column;
  }
  .why-choose .choose-grid .choose-item:nth-child(4) {
    transform: translateY(0);
    flex-direction: column;
  }
  .why-choose .choose-grid .choose-item:nth-child(2) {
    transform: translateY(0);
  }
  .why-choose .choose-grid .choose-item:nth-child(5) {
    transform: translateY(0);
  }
  .hero-section .hero-image img {
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: right;
       object-position: right;
  }
  .form_section .left {
    display: none;
  }
  .form_section .right {
    width: 100%;
  }
  .hero-section .hero-content.about_content .left-text h1 {
    font-size: 2.7rem;
  }
  section.mandotory-section .vision_content {
    max-width: -moz-fit-content;
    max-width: fit-content;
    grid-template-columns: 1fr;
  }
  section.mandotory-section {
    padding: 20px 30px 50px 30px;
  }
  section.mandotory-section .vision_content {
    padding: 40px 0 0 0;
  }
  section.mandotory-section .director-content {
    padding: 40px 0 0 0;
  }
  section.mandotory-section .director-content .director-section {
    padding: 20px 20px;
  }
  section.mandotory-section .disclosure-content {
    padding: 30px 30px 0;
  }
  section.mandotory-section .director-content .director-section .director-container .chairmain_message {
    align-items: center;
    flex-direction: column-reverse;
  }
  section.mandotory-section .director-content .director-section.principal-section .director-container .chairmain_message {
    align-items: center;
    flex-direction: column;
  }
  section.mandotory-section .director-content .director-section .director-container h2 {
    font-size: 35px;
  }
  section.mandotory-section .society_content_Mn .society-section .society-content h2 {
    font-size: 30px;
  }
  section.mandotory-section .society_content_Mn .society-section .society-content p {
    font-size: 17px;
  }
  section.mandotory-section .society_content_Mn .society-section .society-content a {
    padding: 8px 23px;
    font-size: 17px;
  }
}
@media (max-width: 768px) {
  .head-section .head-container {
    align-items: start;
    flex-direction: column;
  }
  .head-section::before {
    width: 100%;
    background-color: #e1e1e1;
  }
  .head-section {
    padding: 50px 20px;
  }
  .news-section .news-title {
    font-size: 54px;
  }
  .news-section .news-grid .news-card {
    width: 370px;
  }
  .news-section {
    padding: 50px 20px;
  }
}
@media (max-width: 767px) {
  .nav_header .cta {
    display: none;
  }
  .news-card.carousel-slide h2 {
    font-size: 18px;
  }
  .hero-section .speech-bubble {
    max-width: 418px;
    font-size: 1rem;
  }
  .quick-links-section .quick-links-heading {
    font-size: 2.8rem;
    margin: 0 auto 10px auto;
  }
  .nav_header {
    height: 60px;
  }
  .quick-links-section .quick-links-wrapper {
    gap: 20px 33px;
    padding: 20px 0;
  }
  .announcement-wrapper .announcement-label {
    padding: 7px 20px;
    font-size: 24px;
  }
  .announcement-wrapper .announcement-marquee .announcement-track .announcement-item {
    font-size: 18px;
  }
  .about-section .about-container .about-divider {
    display: none;
  }
  .nav_header .nav_container {
    padding: 10px 10px 10px 0px;
  }
  .nav_header .nav_container .logo img {
    height: 50px;
    width: 260px;
  }
  .about-section {
    padding: 170px 30px 50px 30px;
  }
  .about-section .about-container .about-left h5 {
    font-size: 16px;
  }
  .about-section .about-container .about-left h2 {
    font-size: 34px;
    line-height: 1.3;
  }
  .about-section .about-container .about-right p {
    font-size: 16px;
    line-height: 1.5;
  }
  .announcement-wrapper {
    flex-direction: column;
    align-items: center;
    overflow: hidden;
  }
  .quick-links-section {
    padding: 50px 20px 0px 20px;
  }
  .why-choose .choose-grid .circle-wrapper .center-circle h3 {
    font-size: 28px;
  }
  .why-choose .choose-grid .choose-item h3 {
    font-size: 20px;
  }
  .why-choose .choose-grid .choose-item p {
    font-size: 13px;
  }
  .why-choose .choose-grid .choose-item {
    padding: 15px 14px;
  }
  .quick-links-section .quick-links-wrapper .quick-link-item .icon-box {
    width: 95px;
  }
  .quick-links-section .quick-links-wrapper .quick-link-item .link-number {
    font-size: 1.9rem;
    line-height: 1.9rem;
  }
  .quick-links-section .quick-links-wrapper .quick-link-item .link-text {
    font-size: 1rem;
  }
  .talent-section {
    padding: 60px 20px 30px 20px;
  }
  .talent-section .section-tagline {
    font-size: 16px;
  }
  .talent-section .section-title {
    font-size: 26px;
  }
  .talent-section .talent-grid .talent-card p {
    font-size: 21px;
    line-height: 1.2;
  }
  .why-choose {
    padding: 50px 30px 50px 30px;
  }
  .why-choose h2 {
    font-size: 34px;
    margin-bottom: 40px;
  }
  .head-section {
    padding: 50px 20px;
  }
  .head-section .head-container {
    gap: 20px;
  }
  .head-section .head-container .head-content h4 {
    font-size: 16px;
  }
  .head-section .head-container .head-content h2 {
    font-size: 32px;
  }
  .head-section .head-container .head-content p {
    font-size: 16px;
    line-height: 1.6;
  }
  .head-section::before {
    display: none;
  }
  .news-section {
    padding: 30px 20px;
  }
  .news-section .news-title {
    font-size: 44px;
    margin-bottom: 30px;
  }
  .news-section .news-grid .news-card {
    width: 275px;
  }
  .news-section .news-grid .news-card:nth-child(1) {
    margin-left: 0;
  }
  .news-section .news-grid .news-card .news-desc {
    font-size: 17px;
    line-height: 1.5;
  }
  .form_section .right {
    padding: 1.3rem;
  }
  .form_section .right .form-container {
    padding: 0;
  }
  .section-tagline {
    font-size: 18px;
  }
  .news-section .news_container.blogs .news-title {
    font-size: 28px;
  }
  .testimonial-section {
    padding: 50px 20px;
  }
  .testimonial-section h2 {
    font-size: 37px;
  }
  .testimonial-section .testimonial_wrap .testimonial {
    padding: 30px 0 0px 0;
    flex-direction: column;
    margin: 20px auto 0px auto;
  }
  .testimonial-section .testimonial_wrap .testimonial .testimonial-content {
    margin-top: 36px;
    padding: 0 20px;
  }
  .testimonial-section .testimonial_wrap .testimonial .testimonial-content:before {
    width: 64px;
    height: 42px;
    top: -40px;
    background-size: contain;
  }
  .testimonial-section .testimonial_wrap .testimonial .testimonial-text {
    font-size: 18px;
    line-height: 1.5;
  }
  .testimonial-section .testimonial_wrap .testimonial .testimonial-text:after {
    width: 64px;
    height: 42px;
    bottom: -27px;
    background-size: contain;
  }
  .testimonial-section .testimonial_wrap .testimonial .testimonial-img {
    margin-right: 0;
  }
  .footer .footer-container {
    gap: 0px;
  }
  .footer .footer-container .footer-column h4 {
    margin-top: 20px;
  }
  .admission-section .section-title {
    font-size: 22px;
    text-align: center;
  }
  section.mandotory-section {
    padding: 0;
  }
  .hero-section .hero-content.about_content .left-text h1 {
    font-size: 1.7rem;
  }
  .hero-section .hero-content {
    left: 2%;
  }
  section.mandotory-section .vision_content .vision-text h2 {
    font-size: 29px;
  }
  section.mandotory-section .vision_content {
    padding: 40px 20px 0;
  }
  section.mandotory-section .director-content .director-section .director-container {
    padding: 0;
    gap: 0;
  }
  section.mandotory-section .director-content .director-section .director-container .director-text h2 {
    margin-top: 20px;
  }
  section.mandotory-section .disclosure-content {
    padding: 30px 20px 0;
  }
  section.mandotory-section .disclosure-content .disclosure-section .disclosure-container h2 {
    font-size: 27px;
  }
  section.mandotory-section .disclosure-content .disclosure-section .disclosure-container .disclosure-table th {
    font-size: 16px;
  }
  section.mandotory-section .disclosure-content .disclosure-section .disclosure-container .disclosure-table th,
  section.mandotory-section .disclosure-content .disclosure-section .disclosure-container .disclosure-table td {
    padding: 10px 10px;
  }
  .disclosure-table td {
    font-size: 15px;
  }
  section.mandotory-section .society_content_Mn {
    padding: 50px 0 0 0;
  }
  section.mandotory-section .director-content .director-section .director-container .director-text h2 {
    font-size: 26px;
  }
  .nav_header .nav_container .main-nav {
    padding: 160px 0 0 50px;
  }
}
@media (max-width: 576px) {
  section.mandotory-section .society_content_Mn .society-section .society-image {
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: left;
       object-position: left;
  }
}
@media (max-width: 430px) {
  .talent-section .section-tagline {
    letter-spacing: 0px;
  }
  .talent-section .talent-grid .talent-card p {
    font-size: 18px;
  }
}
@media (max-width: 414px) {
  .hero-section .speech-bubble {
    max-width: 280px;
    font-size: 1rem;
  }
  .quick-links-section .quick-links-heading {
    font-size: 2.8rem;
    margin: 0 auto 30px auto;
  }
  .why-choose {
    padding: 50px 10px 50px 10px;
  }
  .why-choose .choose-grid {
    gap: 14px;
  }
  .why-choose .choose-grid .choose-item {
    padding: 15px 11px;
  }
  .why-choose .choose-grid .choose-item p {
    font-size: 11px;
  }
  .about-section .about-container {
    gap: 20px;
  }
  .about-section .about-container .about-left h2 {
    line-height: 1;
  }
  .head-section .head-container .head-content h5 {
    font-size: 17px;
  }
  .news-section .carousel {
    margin: 30px 0 0px 0;
  }
  .news-section .news-title {
    font-size: 36px;
    line-height: 1;
    margin-bottom: 12px;
  }
  .quick-links-section .quick-links-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
    gap: 30px 33px;
  }
  .quick-links-section .quick-links-wrapper .quick-link-item {
    gap: 2px;
    flex-direction: column;
  }
  .quick-links-section .quick-links-wrapper .quick-link-item .icon-box {
    margin-bottom: 5px;
  }
  .quick-links-section .quick-links-wrapper .quick-link-item .link-number {
    font-size: 1.4rem;
    text-align: center;
  }
  .quick-links-section .quick-links-wrapper .quick-link-item .icon-box {
    text-align: center;
  }
  .talent-section .section-tagline {
    font-size: 13px;
  }
}
@media (max-width: 380px) {
  .HouseCompetitionsBg .Aryabhatta {
    width: 125px;
    height: 125px;
  }
  .HouseCompetitionsBg .Aryabhatta h4 {
    font-size: 18px;
  }
  .nav_header .nav_container .main-nav {
    padding: 160px 0 0 20px;
  }
}/*# sourceMappingURL=style.css.map */