* {
  margin: 0;
  padding: 0;
  font: "Montserrat", sans-serif;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
  background-color: white;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}
:root {
  --color-primary: #212331;
  --color-primary-switch: #212331;
  --color-border: red;
  --color-background: white;
  --color-text: #212331;
  --color-hover: #eaeaea;
  --color-hover-2: #f0eeee;
  --box-shadow: rgba(0, 0, 0, 0.1);

  --bp-largest: 81.25em;
  --bp-medium: 62.5em;
  --bp-large: 71.875em;
  --bp-small: 56.25em;
  --bp-smaller: 46.875em;
  --bp-smallest: 37.5em;

  --header-height: 4rem;

  --black-color: hsl(220, 24%, 12%);
  --black-color-light: hsl(220, 24%, 15%);
  --black-color-lighten: hsl(220, 20%, 18%);
  --white-color: #fff;
  --body-color: hsl(220, 100%, 97%);

  --body-font: "Montserrat", sans-serif;
  --normal-font-size: 0.938rem;

  --font-regular: 400;
  --font-semi-bold: 600;

  --z-tooltip: 10;
  --z-fixed: 100;
}

@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
  }
}

body {
  font-family: "Montserrat", sans-serif;
  height: 100vh;
}

body.dark {
  font-family: "Montserrat", sans-serif;
  height: 100vh;
  --color-background: #212331;
  --color-primary-switch: white;
  --color-text: white;
  --box-shadow: rgba(255, 255, 255, 0.1);
}

/* Navbar */

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

.container {
  max-width: 112rem;
  margin-inline: 1.5rem;
}

/*=============== HEADER ===============*/
.header__main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-primary);
  box-shadow: 0 2px var(--color-border);
  z-index: var(--z-fixed);
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
}

.nav__logo,
.nav__burger,
.nav__close {
  color: white;
}

.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo-container {
  width: 100%;
  height: 100%;
}

.nav__logo-container a {
  height: 100%;
}
.nav__logo-container a img {
  height: 80%;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: 0.25rem;
  font-weight: 500;
  font-size: 2.5rem;
}

.nav__logo i {
  font-weight: initial;
  font-size: 4rem;
}

.nav__toggle {
  position: relative;
  width: 3.2rem;
  height: 3.2rem;
}

.nav__burger,
.nav__close {
  position: absolute;
  width: max-content;
  height: max-content;
  inset: 0;
  margin: auto;
  font-size: 2rem;
  cursor: pointer;
  transition: opacity 0.1s, transform 0.4s;
}

.nav__close {
  opacity: 0;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1118px) {
  .nav__menu {
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    transition: top 0.4s, opacity 0.3s;
  }
  .nav__menu::-webkit-scrollbar {
    width: 0;
  }
  .nav__list {
    background-color: var(--color-primary);
    padding-top: 1rem;
  }
}

.nav__link {
  font-size: 1.75rem;
  color: white;
  background-color: var(--color-primary);
  font-weight: 400;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}

.nav__link:hover {
  background-color: rgba(255, 0, 0, 0.835);
}

/* Show menu */
.show-menu {
  opacity: 1;
  top: 3.5rem;
  pointer-events: initial;
}

/* Show icon */
.show-icon .nav__burger {
  opacity: 0;
  transform: rotate(90deg);
}
.show-icon .nav__close {
  opacity: 1;
  transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown__item {
  cursor: pointer;
}

.dropdown__arrow {
  font-size: 2rem;
  font-weight: initial;
  transition: transform 0.4s;
}

.dropdown__link,
.dropdown__sublink {
  padding: 1.25rem 1.25rem 1.25rem 2.5rem;
  color: var(--color-primary);
  background-color: white;
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
  font-weight: 600;
  transition: background-color 0.3s;
  font-size: 1.5rem;
  border-radius: 1px;
}

.dropdown__link:hover,
.dropdown__sublink:hover {
  background-color: rgb(216, 216, 216);
}

.dropdown__menu,
.dropdown__submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.dropdown__link i {
  font-size: 1.5rem;
}
.dropdown__item:hover .dropdown__menu,
.dropdown__subitem:hover > .dropdown__submenu {
  max-height: 100rem;
  transition: max-height 0.4s ease-in;
}

.dropdown__item:hover .dropdown__arrow {
  transform: rotate(180deg);
}

/*=============== DROPDOWN SUBMENU ===============*/
.dropdown__add {
  margin-left: auto;
}

.dropdown__sublink {
  background-color: var(--black-color-lighten);
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .container {
    margin-inline: 1rem;
  }

  .nav__link {
    padding-inline: 1rem;
  }
}

/* For large devices */
@media screen and (min-width: 1118px) {
  .container {
    margin-inline: auto;
  }

  .nav {
    height: calc(var(--header-height) + 2rem);
    display: flex;
    justify-content: space-between;
  }
  .nav__toggle {
    display: none;
  }
  .nav__list {
    height: 100%;
    display: flex;
    column-gap: 3rem;
  }
  .nav__link {
    height: 100%;
    padding: 0;
    justify-content: initial;
    column-gap: 0.25rem;
  }
  .nav__link:hover {
    background-color: transparent;
  }

  .dropdown__item,
  .dropdown__subitem {
    position: relative;
  }

  .dropdown__menu,
  .dropdown__submenu {
    max-height: initial;
    overflow: initial;
    position: absolute;
    left: 0;
    top: 6rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, top 0.3s;
    width: 21rem;
  }

  .dropdown__link,
  .dropdown__sublink {
    padding-inline: 1rem 3.5rem;
  }

  .dropdown__subitem .dropdown__link {
    padding-inline: 1rem;
  }

  .dropdown__submenu {
    position: absolute;
    left: 100%;
    top: 0.5rem;
  }

  /* Show dropdown menu */
  .dropdown__item:hover .dropdown__menu {
    opacity: 1;
    top: 5.5rem;
    pointer-events: initial;
    transition: top 0.3s;
  }

  /* Show dropdown submenu */
  .dropdown__subitem:hover > .dropdown__submenu {
    opacity: 1;
    top: 0;
    pointer-events: initial;
    transition: top 0.3s;
  }
}

.changeColor {
  background-color: #212331;
  /* border-bottom: 2px solid var(--color-border); */
  /* color: var(--grey-dark-2); */
  transition: all 0.5s ease-in;
}

/* Header Section */

.header {
  height: 90vh;
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.3),
      rgba(0, 0, 0, 0.9)
    ),
    url(../img/hero.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.header__text-box {
  margin-top: -3rem;
}

.heading {
  color: white;
  text-transform: uppercase;
  margin-bottom: 5rem;
}

.heading__main {
  display: block;
  font-size: 6rem;
  font-weight: 700;
  letter-spacing: 1.75rem;
  animation: moveInLeft 1s ease-out;
  margin-bottom: 1.5rem;
}

.heading__sub {
  display: block;
  text-transform: capitalize;
  padding: 0 1rem;
  font-size: 3rem;
  letter-spacing: 0.4rem;
  font-weight: 600;
  animation: moveInRight 1s ease-out;
}

.heading__sub-2 {
  display: block;
  text-transform: capitalize;
  padding: 0 1rem;
  font-size: 3rem;
  letter-spacing: 0.4rem;
  font-weight: 600;
  animation: moveInRight 1s ease-out;
}

.btn,
.btn:link,
.btn:visited {
  text-decoration: none;
  display: inline-block;
  padding: 1.3rem 4rem;
  border-radius: 10rem;
  transition: all 0.2s;
  position: relative;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}
.btn:hover:after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}

.btn:active {
  transform: translateY(-1px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}

.btn--white {
  color: #212331;
  background-color: white;
}
.btn--white::after {
  background-color: white;
}

.btn::after {
  position: absolute;
  display: inline-block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10rem;
  content: "";
  z-index: -1;
  transition: all 0.4s;
}

.btn--animated {
  animation: moveInBottom 0.5s ease-out 0.5s;
  animation-fill-mode: backwards;
}

@media only screen and (max-width: 71.725em) {
  .heading__main {
    font-size: 4.5rem;
  }
  .heading__sub {
    font-size: 2rem;
  }
  .heading__sub-2 {
    font-size: 2rem;
  }
  .btn,
  .btn:link,
  .btn:visited {
    font-size: 1.2rem;
  }
}

@media only screen and (max-width: 56.25em) {
  .heading__main {
    font-size: 3.5rem;
  }
  .heading__sub {
    font-size: 1.5rem;
  }
  .heading__sub-2 {
    font-size: 1.7rem;
  }
  .btn,
  .btn:link,
  .btn:visited {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 46.875em) {
  .heading__main {
    font-size: 2.7rem;
  }
  .heading__sub {
    font-size: 1.8rem;
  }
  .heading__sub-2 {
    font-size: 1.7rem;
  }
  .btn,
  .btn:link,
  .btn:visited {
    font-size: 0.8rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .heading {
    margin-bottom: 3rem;
  }
  .heading__main {
    font-size: 2rem;
  }
  .heading__sub {
    font-size: 1.4rem;
  }
  .heading__sub-2 {
    font-size: 1.2rem;
  }
  .btn,
  .btn:link,
  .btn:visited {
    padding: 0.9rem 2rem;
    font-size: 0.7rem;
  }
}

/* News Sections */

.section__news {
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-50%);
  width: 100%;
}

.news__container {
  background-color: var(--color-background);
  width: 65vw;
  height: auto;
  min-height: 25rem;
  display: flex;
  align-items: stretch;
  justify-content: center;
  box-shadow: 0 1rem 5rem rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  flex-wrap: wrap;
}

.news__left-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  color: var(--color-primary-switch);
  width: 30%;
  min-width: 180px;
}

.news__left-container i {
  font-size: 5rem;
  padding: 1rem;
  margin-right: 1.5rem;
}

.news__heading {
  font-size: 3rem;
  font-weight: 600;
}

.news__heading p {
  line-height: 1.2;
}

.news__right-container {
  width: 70%;
  padding: 1.5rem;
  font-size: 1.2rem;
  color: var(--color-primary-switch);
}

.news__list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.news__list li a {
  text-decoration: none;
  color: var(--color-primary-switch);
}

.news__list li a:hover {
  color: red;
}

.news__list li i {
  margin-right: 0.5rem;
  font-size: 2rem;
  flex-shrink: 0;
}

.news__list li p {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

/* Improved Responsive Breakpoints */
@media only screen and (max-width: 1200px) {
  .news__container {
    width: 80vw;
  }

  .news__left-container i {
    font-size: 4rem;
  }

  .news__heading {
    font-size: 2.5rem;
  }
}

@media only screen and (max-width: 992px) {
  .news__container {
    width: 85vw;
  }

  .news__left-container {
    width: 25%;
  }

  .news__right-container {
    width: 75%;
  }

  .news__heading {
    font-size: 2.2rem;
  }

  .news__list li p {
    font-size: 1.3rem;
  }
}

@media only screen and (max-width: 768px) {
  .section__news {
    transform: translateY(-30%);
  }

  .news__container {
    width: 90vw;
    flex-direction: column;
  }

  .news__left-container {
    width: 100%;
    justify-content: flex-start;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .news__right-container {
    width: 100%;
  }
}

@media only screen and (max-width: 576px) {
  .section__news {
    transform: translateY(-20%);
  }

  .news__container {
    width: 95vw;
  }

  .news__left-container {
    padding: 1rem;
  }

  .news__left-container i {
    font-size: 3.5rem;
    margin-right: 1rem;
  }

  .news__heading {
    font-size: 1.8rem;
  }

  .news__list li p {
    font-size: 1.2rem;
  }

  .news__list li i {
    font-size: 1.8rem;
  }
}

@media only screen and (max-width: 400px) {
  .news__left-container i {
    font-size: 3rem;
    margin-right: 0.8rem;
  }

  .news__heading {
    font-size: 1.6rem;
  }

  .news__list li p {
    font-size: 1.1rem;
  }
}

main {
  background-color: var(--color-background);
}

/* About Us */

.about-us-section {
  padding: 6rem 0;
  background-color: var(--color-background);
  position: relative;
  overflow: hidden;
  font-family: var(--body-font);
  margin-bottom: 5rem;
}

.about-us-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top right,
    rgba(255, 0, 0, 0.05) 0%,
    transparent 70%
  );
  z-index: 1;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.about-heading {
  font-size: 3rem;
  color: var(--color-primary);
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease-out;
  font-weight: var(--font-semi-bold);
}

.about-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  height: 3px;
  background-color: var(--color-border);
  animation: expandWidth 1.2s ease-out;
}

.about-content {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  margin-bottom: 3rem;
  animation: fadeIn 1.2s ease-out;
}

.about-image {
  flex: 0 0 40%;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s ease;
}

.about-image:hover img {
  transform: scale(1.03);
}

.about-description {
  flex: 1;
  padding: 1rem 0;
}

.about-description h3 {
  font-size: 2.4rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  animation: fadeInRight 0.8s ease-out;
  font-weight: var(--font-semi-bold);
}

.description-paragraph {
  font-size: 1.5rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 2rem;
  animation: fadeInUp 1.2s ease-out;
  font-weight: var(--font-regular);
}

.additional-paragraph {
  font-size: 1.5rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 3rem;
  animation: fadeInUp 1.4s ease-out;
  font-weight: var(--font-regular);
}

.icon-container {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 3rem;
  animation: fadeInUp 1.6s ease-out;
}

.icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 1.6rem;
  color: var(--color-primary);
  transition: transform 0.3s ease, color 0.3s ease;
}

.icon i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--color-border);
}

.icon:hover {
  transform: translateY(-5px);
  color: var(--color-border);
}

/* Responsive Styles */
@media screen and (max-width: var(--bp-large)) {
  .about-content {
    flex-direction: column;
  }

  .about-image {
    flex: 0 0 100%;
    margin-bottom: 3rem;
  }

  .icon-container {
    flex-wrap: wrap;
    gap: 2rem;
  }
}

@media screen and (max-width: var(--bp-small)) {
  .about-us-section {
    padding: 4rem 0;
  }

  .about-heading {
    font-size: 2.5rem;
  }

  .about-description h3 {
    font-size: 2rem;
  }

  .description-paragraph,
  .additional-paragraph {
    font-size: 1.4rem;
  }

  .icon-container {
    gap: 3rem;
  }
}

@media screen and (max-width: var(--bp-smaller)) {
  .about-heading {
    font-size: 2rem;
  }

  .about-description h3 {
    font-size: 1.8rem;
  }

  .icon-container {
    flex-direction: column;
    gap: 2rem;
  }

  .icon {
    margin-bottom: 1.5rem;
  }
}

.counters__container {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.7)
    ),
    url(../img/counter.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #212331;
  width: 100vw;
  height: 25rem;
  margin-top: 7rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 5rem;
}

.item {
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.counter__wrapper {
  display: flex;
  align-items: center;
  border-bottom: 2px solid red;
}

.item h2,
.item p {
  font-size: 5rem;
  font-weight: 400;
}

.item i {
  font-size: 7rem;
}

@media only screen and (max-width: 81.25em) {
  .counters__container {
    height: 22rem;
  }
  .item h2,
  .item p {
    font-size: 4rem;
  }
  .item i {
    font-size: 6rem;
  }
}

@media only screen and (max-width: 71.725em) {
  .counters__container {
    height: 20rem;
  }
  .item h2,
  .item p {
    font-size: 3rem;
  }
  .item i {
    font-size: 4rem;
  }
}

@media only screen and (max-width: 37.5em) {
  .counters__container {
    height: 16rem;
  }
  .item h2,
  .item p {
    font-size: 3rem;
  }
  .item i {
    font-size: 3.5rem;
  }
}
@media only screen and (max-width: 26.25em) {
  .counters__container {
    height: 12rem;
  }
  .item h2,
  .item p {
    font-size: 2.2rem;
  }
  .item i {
    font-size: 3rem;
  }
}
*/


/* Padma Shri Award Section Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  font-size: 16px;
}

/* Your existing CSS */
.padma-shri-section {
  padding: 6rem 0;
  background-color: #f8f8f8;
  position: relative;
  overflow: hidden;
}

.padma-shri-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at top right,
    rgba(255, 0, 0, 0.05) 0%,
    transparent 70%
  );
  z-index: 1;
}

.padma-shri-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.award-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
}

.award-title {
  font-size: 3rem;
  color: #212331;
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
  animation: fadeInUp 0.8s ease-out;
}

.award-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  height: 3px;
  background-color: red;
  animation: expandWidth 1.2s ease-out;
}

.award-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 1s ease-out;
}

.badge-img {
  width: 8rem;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
  animation: pulse 3s infinite ease-in-out;
}

.award-content {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  animation: fadeIn 1.2s ease-out;
}

.award-image {
  flex: 0 0 45%;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.award-image:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.award-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1));
  z-index: 1;
}

.award-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s ease;
}

.award-image:hover img {
  transform: scale(1.03);
}

.award-text {
  flex: 1;
  padding: 1rem 0;
}

.award-text h3 {
  font-size: 2.8rem;
  color: #212331;
  margin-bottom: 1rem;
  line-height: 1.2;
  animation: fadeInRight 0.8s ease-out;
}

.award-date {
  font-size: 1.4rem;
  color: red;
  font-weight: 600;
  margin-bottom: 2rem;
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background-color: rgba(255, 0, 0, 0.1);
  border-radius: 4px;
  animation: fadeInRight 1s ease-out;
}

.award-description,
.award-quote {
  font-size: 1.5rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 2rem;
  animation: fadeInUp 1.2s ease-out;
}

.award-quote {
  font-style: italic;
  padding-left: 2rem;
  border-left: 3px solid red;
  color: #444;
}

.award-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  animation: fadeInUp 1.4s ease-out;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  flex: 1;
  margin-right: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:last-child {
  margin-right: 0;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: #212331;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.4rem;
  color: #666;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 60%;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
  .award-content {
    flex-direction: column;
  }

  .award-image {
    flex: 0 0 100%;
    margin-bottom: 3rem;
  }

  .award-stats {
    flex-wrap: wrap;
  }

  .stat-item {
    flex: 0 0 calc(50% - 1rem);
    margin-bottom: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .padma-shri-section {
    padding: 4rem 0;
  }

  .award-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .award-badge {
    margin-top: 2rem;
  }

  .award-title {
    font-size: 2.5rem;
  }

  .award-text h3 {
    font-size: 2.2rem;
  }

  .award-description,
  .award-quote {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 480px) {
  .award-stats {
    flex-direction: column;
  }

  .stat-item {
    flex: 0 0 100%;
    margin-right: 0;
    margin-bottom: 1.5rem;
  }

  .award-title {
    font-size: 2rem;
  }

  .award-text h3 {
    font-size: 1.8rem;
  }
}

/* Footer */

.footer__container {
  background-color: var(--color-primary);
  padding: 5rem 3rem;
  display: flex;
  justify-content: center;
  align-items: top;
}

.college__details,
.college__contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  color: #74767a;
}

.college__details {
  border-right: 1px dotted #74767a;
  padding-right: 5rem;
}

.college__details img {
  height: 10rem;
  filter: grayscale(100%);
  margin-bottom: 1rem;
}

.college__details h2 {
  color: rgb(200, 202, 204);
  display: block;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.college__details p {
  display: block;
  font-size: 1.2rem;
  font-weight: 200;
  margin-bottom: 2rem;
}

.college__contacts {
  align-items: flex-start;
  margin-bottom: 2.5rem;
}

.contact__item {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact__item a:link,
.contact__item a:visited {
  color: #74767a;
  text-decoration: none !important;
}

.contact__item a:active,
.contact__item a:hover {
  color: rgb(200, 202, 204);
}

.contact__item i {
  font-size: 1.7rem;
  margin-right: 0.7rem;
  color: rgb(200, 202, 204);
}

.contact__social {
  display: flex;
  align-items: center;
}
.social__wrapper {
  border-radius: 50%;
  border: 1px solid rgb(200, 202, 204);
  padding: 0.5rem;
  height: 3rem;
  width: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}

.social__wrapper a:link,
.social__wrapper a:visited {
  font-size: 1.5rem;
  text-decoration: none;
  color: rgb(200, 202, 204);
}

.social__wrapper:hover {
  background-color: rgba(200, 202, 204, 0.3);
}

.college__quicklinks {
  margin-left: 5rem;
  padding-right: 5rem;
  border-right: 1px dotted #74767a;
}

.quicklinks__heading {
  color: rgb(200, 202, 204);
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid red;
}

.quicklinks__list {
  list-style-type: none;
}

.quicklinks__list li i {
  margin-right: 1rem;
}

.quicklinks__list li a:link,
.quicklinks__list li a:visited {
  font-size: 2rem;
  text-decoration: none;
  font-weight: 300;
  color: rgb(200, 202, 204);
  flex-wrap: nowrap;
}

.location__container {
  margin-left: 5rem;
}

.location__heading {
  color: rgb(200, 202, 204);
  font-size: 3rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  padding-right: 1.5rem;
  display: inline-block;
  border-bottom: 2px solid red;
}

.map__container {
  height: 80%;
  width: 35vw;
}

.map__container iframe {
  height: 100%;
  width: 100%;
  border-radius: 10px;
}

.copyright__text {
  background-color: #2b2d3b;
  margin: 0 auto;
  text-align: center;
  color: rgb(200, 202, 204);
  font-size: 1.5rem;
  font-weight: 300;
  padding: 2rem;
}

@media only screen and (max-width: 81.25em) {
  .quicklinks__list li a:link,
  .quicklinks__list li a:visited {
    font-size: 1.3rem;
  }
}

@media only screen and (max-width: 71.25em) {
  .copyright__text {
    font-size: 1.1rem;
  }
}
@media only screen and (max-width: 46.875em) {
  .footer__container {
    flex-direction: column;
    align-items: center;
  }
  .college__details {
    border-right: none;
    padding-right: 0;
    margin-bottom: 2rem;
  }
  .college__details h2 {
    font-size: 1.8rem;
  }
  .college__details p {
    font-size: 1.4rem;
  }
  .college__contacts {
    margin-bottom: 1.5rem;
  }
  .contact__social {
    display: flex;
    align-items: center;
  }
  .college__quicklinks {
    border-right: none;
    margin-bottom: 2rem;
  }
  .quicklinks__list li a:link,
  .quicklinks__list li a:visited {
    font-size: 2.5rem;
  }

  .location__container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .location__heading {
    margin-right: 7rem;
  }
  .map__container {
    width: 70vw;
  }
  .copyright__text {
    font-size: 1.3rem;
    padding: 1.5rem;
  }
}

/* Animations*/

@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  80% {
    transform: translateX(1rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem);
  }
  80% {
    transform: translateX(-1rem);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}

@keyframes moveInTop {
  0% {
    opacity: 0;
    transform: translateY(-20rem);
  }
  75% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(20rem);
  }
  75% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
