@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@200;300;400;500;600;700;800&family=Noto+Sans+JP:wght@100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Source+Code+Pro:wght@200..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Open Sans','Mukta',serif;
}

body {
  height: 100%;
  max-width: 100%;
}


html {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden !important;
}

:root {
  --primary: #399918;
  --primary-light: #B22222;
  --primary-dark: #028f45;
  --accent: #D8BFD8;
  --secondary: #BC8F8F;
  --text-dark: #2D3436;
  --text-light: #636E72;
  --white: #FFFFFF;
  --grey: #E9ECEF;
}

.text-dark{
  color: var(--text-dark);
}

.text--white{
  color: var(--white);
}

.text--primary{
  color: var(--primary-dark);
}

.cta-button-primary{
  background-color: var(--primary-dark) !important;
  color: var(--white) !important;
}

.section-white {
  padding: 100px 0;
  background: #F8F9FA;
}

.section-grey {
  padding: 100px 0;
  background: var(--grey);
}

.section-title {
  color: var(--primary-dark);
  margin-bottom: 60px;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 5%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--primary);
}

@media(max-width:480px){
  .section-white, .section-grey{
    padding: 60px 0;
  }

  .section-title{
    margin-bottom: 40px;
  }
 
}

.about-card {
  background: var(--white);
  border-radius: 15px;
  padding: 40px;
  height: 100%;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px #96a2a7;
}

.notice-header{
  width: 100px;
  height: 45px;
  background-color: var(--primary-dark);
  clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
}


.comittee-image-container {
  padding: 20px;
  width: 100%;
  position: relative;
  padding-top: 75%; 
  overflow: hidden;
}

.comittee-image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain; 
}

#owl-demo .item{
  background: var(--grey);
  max-width: 300px;
  height: 250px;
  padding: 25px 0px;
  margin: 10px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 4px;
  text-align: center;
}

.scrollToTopBtn {
  width: 40px;
  height: 40px;
  position: fixed;
  bottom: 5px;
  right: 5px;
  z-index: 100;
  background-color: var(--primary-dark);
  color: white;
  border: none;
  outline: none;
  border-radius: 50%;
  font-size: 28px;
  cursor: pointer;
  display: none;
  transition: opacity 0.3s;
}

.scrollToTopBtn:hover {
  background-color: var(--primary-dark);
}

.scrollToTopBtn.show {
  display: block;
}


#scrollToTopBtn #arrow {
  position: absolute;
  top: 50%;
  right: 50%;
  height: 0;
  width: 0;
  margin-left: -9px;
  margin-top: -5px;
  border-bottom: 10px solid #fff;
  left: 50%;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}

.gapp-right-50 {
  padding-right: 50px;
}

.logo-section {
  position: relative;
  width: 100%;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.logo-section a img {
  width: 100%;
  height: 100px;
  object-fit: contain;
}

@media (max-width: 900px) {

  .logo-section a img {
    height: auto;
  }
}

.banner {
  height: 400px;
  background-repeat: no-repeat;
  background-position: center;
  background-size:cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 80vh;  
  overflow: hidden;
}

.banner-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); 
  width: 100%; 
  height: 100%;  
  object-fit: cover; 
}

#feature-link {
  max-width: 250px;
  width: 100%;
  text-decoration: none;
  color: var(--primary-dark);
}

.feature-card-md {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px;
  width: 100%;
  max-width: 250px;
  box-sizing: border-box;
}

.feature-card {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
}

.feature-card-md:hover,
.feature-card:hover {
  transition: all 0.2s ease-out;
  /* box-shadow: 2px 2px 2px 2px #6c757d; */
  box-shadow: 0 15px 30px #96a2a7;
}

.feature-card-body {
  margin-bottom: 10px;
}

.feature-card-md img,
.feature-card img {
  width: 100px;
  height: 100px;
}

.data-icon {
  color: aliceblue;
}

.section-grey h5 p {
  margin-bottom: 0;
}


.utility-container {
  width: 200px;
  flex-direction: row;
  justify-content: space-evenly;
  border: 1px solid rgb(182, 181, 181);
  text-align: center;
  border-radius: 12px;
  padding: 30px 8px 10px 8px;
  background-color: white;
}

.utility-container:hover {
  transition: all 0.2s ease-out;
  box-shadow: 3px 4px 8px 5px rgba(41, 40, 40, 0.849);
  top: -4px;
  border: 1px solid #adacac;
  background-color: white;
  cursor: pointer;
}

.utility-container:hover:before {
  transform: scale(2.15);
}

.utility-container li {
  color: #028F45;
  list-style: none;
  text-decoration: none;
  background-color: white;
  font-family: "Mukta";
}

.utility-container li h2 {
  font-size: 20px;
}

.modal-content {
  position: relative;
  left: 0;
  bottom: 100px;
  height: auto;
  max-height: 90vh;
  background-color: transparent;
}

@media (max-width: 1200px) {

  .modal-dialog {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .modal-dialog {
    max-width: 95%;
  }

  .modal-img {
    height: auto;
    max-height: 70vh;
  }

  .utility-container {
    width: 150px;
    padding: 20px 5px 5px 4px;
  }


  .utility-container li h2 {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .modal-dialog {
    max-width: 100%;
  }

  .modal-img {
    max-height: 60vh;
  }
}

.row-gapp-10 {
  gap: 10px;
}

.row-gapp-16 {
  row-gap: 16px;
}

.row-gapp-20 {
  row-gap: 20px;
}

.col-gapp-12 {
  column-gap: 12px;
}

.col-gapp-20 {
  column-gap: 20px;
}


.header-div {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 70px;
}

.header-div h2 {
  color: aliceblue;
  font-weight: bold;
  text-align: center;
}


@media screen and (max-width: 1200px) {
  .header-div {
    padding: 20px;
  }
}

@media screen and (max-width: 800px) {
  .header-div {
    font-size: 18px;
    padding: 16px;
  }

}

.contact-form {
  border-radius: 1%;
  margin-right: 3px;
  background: #e8edf07a;
  position: relative;
  border: 1px solid green;
  padding-bottom: 30px;
}

@media (max-width: 600px) {
  .contact-form {
    width: 100%;
    left: 0;
    padding: 10px;
  }
}

#social-link {
  font-size: 35px;
}

#social-link #icon-fb {
  color: #055fd3;
}

#social-link #icon-insta {
  color: #f322ce;
}

#social-link #icon-x {
  color: black;
}

#social-link #icon-yt {
  color: red;
}

@media (min-width: 1200px) {
  .heading-container {
    max-width: 100%;
  }
}

@media (min-width: 1200px) {
  .header-div {
    max-width: 100%;
  }
}
.font-13 {
  font-size: 13px;
}

.font-14{
  font-size: 14px;
}

.modal-dialog {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: transparent;
  background-blend-mode: darken;
}

.carousel-item .caption {
  position: absolute;
  margin: 0;
  color: white;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}


.left-column,
.right-column {
  transform: skewX(-25deg);
}

.right-column {
  border-left: 10px solid aliceblue;
  border-bottom: 5px solid aliceblue;
}
.left-column{
  border-bottom: 5px solid aliceblue;
}

@media(max-width:680px) {

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 1rem !important;
    height: 1rem !important;
  }
}

@media(max-width:480px) {
  .scrollToTopBtn {
    width: 30px;
    height: 30px;
    font-size: 20px;
  }

  .banner {
    height: 250px;
  }

  .profile-data-container h5 {
    font-size: 1rem;
  }

  .utility-container li h2 {
    font-size: 16px;
  }

  .utility-container {
    width: 130px;
  }

  .logo-section a img {
    max-width: 100%;
  }

  .header-div h3 {
    font-size: 1.4rem;
  }
}

.bg-custom {
  background: #e8edf0;
}

.list-unstyled {
  list-style: none;
}

.font-18 {
  font-size: 18px !important;
}

.font-20 {
  font-size: 20px !important;
}

.slick-slide img {
  width: 100%;
  max-width: 150px;
  border: 0px solid #fff;
}

.marquee-row{
  width: 100%;
  overflow-x: hidden;
}
.marquee-block{
  position:relative;
  display: flex;
  width: 100%;  
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  justify-content: space-between;
}


.marquee-item-list{
 display: inline-flex;
}

.marquee-item-list:hover{
  animation-play-state: paused;
}


.marquee-item-list li{
width: 100%;
list-style: none;
padding-right: 30px;
font-size: 1rem;
white-space: nowrap
}

.marquee-item-list li a{
  font-size: 1rem !important;
  color: var(--primary-dark);
}
.marquee1{animation-name: marquee1;}
.marquee2{animation-name: marquee2;}
@keyframes marquee1 {
  0% { left: 0; }
  100% {left: -100%;}
}
@keyframes marquee2 {
  100% { left: 0; }
  0% {left: -100%;}
}



.richtext-content ul, .richtext-content ol{
  padding-left: 30px;
}


.wrappedimg {
  margin: 30px 0 28px 40px; 
  width: 50%; 
  max-width: 628px;
  float: right;
}

.wrappedimg-person{
  margin: 5px 0 8px 23px;
  width: 30%; 
  max-width: 628px;
  float: right;
}

@media (max-width: 1200px) {
  .wrappedimg {
      margin: 20px 0; 
      width: 100%; 
      float: none;
  }
}
@media (max-width: 768px) {
 
  .wrappedimg {
      margin: 10px 0; 
  }

}


