

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'inter', sans-serif;
}

html, body{
    width: 100%;
    height: 100%;
    padding-top: 0.1px;
}

body{
	scroll-behavior: smooth;
  scroll-padding: 12rem;   
}

a{
	text-decoration: none;
}


/*************************NAV-HEADER******************************/
.header{
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: white;
  z-index: 10;
  box-shadow: 0 4px 7px rgba(0, 0, 0, 0.23);
  padding: 4px 0;
  font-weight: 550;
}

.nav-container{
  max-width: 1280px;
  margin: auto;
  padding: 0 15px;
}

.header .nav-container{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .logo img{
  vertical-align: middle;
  width: 150px;
}

.header .menu .head{
  display: none;
}

.header .menu ul{
  list-style: none;
}

.header .menu > ul > li{
  display: inline-block;
}

.header .menu > ul > li:not(:last-child){
  margin-right: 40px;
}

.header .menu .dropdown{
  position: relative;
}

.header .menu a{
  text-decoration: none;
  text-transform: capitalize;
  font-size: 16px;
  color: black;
  line-height: 1.5;
  display: block;
}

.header .menu a:hover{
  color: #5767B0;
}

.header .menu > ul > li > a{
  padding: 18px 0;
}
.marginright{
  margin-right: 1rem;
}

.header .menu > ul > .dropdown > a{
  padding-right: 15px;
}

.header .menu i{
  font-size: 30px;
  pointer-events: none;
  user-select: none;
  position: absolute;
  color: black;
  top: calc(50% - 15px);
}

.header .menu > ul > li > i{
  right: 0;
}

.header .menu .sub-menu{
  position: absolute;
  top: 100%;
  left: 0;
  width: 230px;
  padding: 15px 0;
  border: 3px solid #5767B0;
  border-radius: 12px;
  background-color:white;
  /*box-shadow: 0 0 5px hsla(0,0%,0%,0.5);*/
  z-index: 1;
  transform-origin: top;
  transform: scaleY(0);
  visibility: hidden;
  opacity: 0;
}

.header .menu li:hover > .sub-menu{
  opacity: 1;
  transform: none;
  visibility: visible;
  transition: all 0.2s ease;
}

.header .menu .sub-menu a{
  padding: 6px 24px;
}

.header .menu .sub-menu span{
  background-image: linear-gradient(hsl(0, 0%, 5%), hsl(0, 0%, 5%));
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition:  background-size 0.5s ease;
}

.header .menu .sub-menu li:hover > a > span{
  background-size: 100% 1px;
}

.header-right{
  display: flex;
}

.header-right > *{
  margin-left: 11px;
}

.header-right .icon-btn{
  background-color: transparent;
  border: none;
  cursor: pointer;
  color: black;
  font-size: 2rem;
}

.header-right .icon-btn:hover{
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.ri-facebook-circle-fill {
  color: #1877f2;
}
.ri-instagram-fill {
  color: #c32aa3;
}
.ri-linkedin-box-fill {
  color: #0a66c2;
}
.ri-whatsapp-fill {
  color: #25d366;
}
.ri-phone-fill {
  color: #5767B0;
}

.header-right .open-menu-btn{
  display: none;
}

@media (max-width:991px) {
  .header{
    padding: 12px 0;
  }

  .header .logo img{
    width: 82px;
  }

  .header .menu{
    position: fixed;
    right: 0;
    top: 0;
    width: 300px;
    height: 100%;
    border-radius: 20px;
    border: 2px solid #5767B0;
    background-color: #EEEEEE;
    padding: 15px 30px 30px;
    overflow-y: auto;
    z-index: 1;
    transform: translateX(100%);
  }

  .header .menu.open{
    transform: none;
  }

  .header .menu .head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
  }

  .header .menu .close-menu-btn{
    height: 35px;
    width: 35px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    cursor: pointer;
    border: none;
  }

  .header .menu .close-menu-btn::before,
  .header .menu .close-menu-btn::after{
    content: '';
    position: absolute;
    width: 80%;
    height: 2px;
    background-color: black;
  }

  .header .menu .close-menu-btn::before{
    transform: rotate(45deg);
  }

  .header .menu .close-menu-btn::after{
    transform: rotate(-45deg);
  }

  .header .menu > ul > li{
    display: block;
  }

  .header .menu > ul > li:not(:last-child){
    margin-right: 0;
  }

  .header .menu li{
    border-bottom: 1px solid gray;
  }

  .header .menu li:first-child{
    border-top: 1px solid gray;
  }

  .header .menu > ul > li > a{
    padding: 12px 0;
  }

  .header .menu > ul > .dropdown > a{
    padding-right: 34px;
  }

  .header .menu i{
    height: 34px;
    width: 34px;
    border: 1px solid grey;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    cursor: pointer;
    top: 7px;
    border-radius: 50px;
  }

  .header .menu .dropdown.active > i{
    background-color: gray;
    transform: rotate(180deg);
  }

  .header .menu .sub-menu{
    position: static;
    opacity: 1;
    transform: none;
    visibility: visible;
    padding: 0;
    transition: none;
    box-shadow: none;
    width: 100%;
    display: none;
    border: none;
  }

  .header .menu .dropdown.active > .sub-menu{
    display: block;
  }

  .header .menu .sub-menu li:last-child{
    border: none;
  }

  .header .menu .sub-menu a{
    padding:  12px 0 12px 15px;
  }

  .header .menu .sub-menu span{
    background-image: none;
  }

  
  .header-right .open-menu-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 44px;
    cursor: pointer;
    position: relative;
    background-color: transparent;
    border: none;
  }

  .header-right .open-menu-btn .line{
    height: 2px;
    width: 30px;
    background-color: #000000;
    position: absolute;
  }

  .header-right .open-menu-btn .line-1{
    transform: translateY(-8px);
  }

  .header-right .open-menu-btn .line-3{
    transform: translateY(8px);
  }
}

/* ----------------------------------grievance form */
.container {
  max-width: 600px;
  margin: 80px auto;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

}

.container h2 {
  text-align: center;
  color: #5767B0;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

.form-group textarea {
  resize: vertical;
}

.form-group button {
  width: 100%;
  padding: 10px;
  background-color: #5767B0;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-group button:hover {
  background-color: #36458a;
}

@media (max-width: 480px) {
  .container {
      padding: 15px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
      font-size: 14px;
  }

  .form-group button {
      font-size: 14px;
  }
}





