@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap");


* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
  text-transform: capitalize;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

html {
  font-size: 60%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 8rem;
}

body {
  background: white;
  overflow-x: hidden;
}

section {
  padding: 2rem 5%;
}

.heading {
  text-align: center;
  margin-bottom: 2rem;
}

.btn {
  margin-top: 4rem;
  display: inline-block;
  padding: 1rem 3rem;
  font-size: 1.8rem;
  color: #fff;
  border: 0.25rem solid #007cdd;
  background: #007cdd;
  border-radius: 0.8rem;
  cursor: pointer;
  font-weight: 500;
  text-align: center;
}

.btn:hover {
  transform: scale(1.11);
}

.btn2 {
  margin-left: 1rem;
  margin-top: 4rem;
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 1.8rem;
  color: #007cdd;
  border: 0.25rem solid #007cdd;
  background: none;
  border-radius: 0.8rem;
  cursor: pointer;
  font-weight: 500;
  text-align: center;
}

.btn2:hover {
  transform: scale(1.11);
}



.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(238, 238, 238, 0.95);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1.6rem 9%;
 
}

.header .navbar {
  margin-right: 4%;
}

.header .navbar a {
  font-size: 1.8rem;
  color: rgb(85, 85, 85);
  display: inline-block;
  margin: 0 1rem;
  font-weight: bold;
}

.header .navbar a:hover {
  color: #3192dd;
}

.header .btn {
  margin-top: 0;
}

.portfolio_txt {
  font-size: 2.5rem;
  color: #222;
  font-weight: bolder;
  margin-left: -6%;
}

.portfolio_txt span {
  color: #007cdd;
}


.nav_handburgers {
  display: block;
  position: relative;
  z-index: 1;
  user-select: none;
  appearance: none;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
}

.nav_handburgers span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background-color: #616161;
  border-radius: 6px;
  z-index: 1;
  transform-origin: 0 0;
  transition: 0.4s;
}

.nav_handburgers span:nth-child(2) {
  transform: translateX(8px);
  background-color: #007cdd;
}
.nav_handburgers.is-active span:nth-child(1) {
  transform: translate(0px, -2px) rotate(45deg);
}
.nav_handburgers.is-active span:nth-child(2) {
  opacity: 0;
  transform: translateX(15px);
}
.nav_handburgers.is-active span:nth-child(3) {
  transform: translate(-3px, 3px) rotate(-45deg);
}
.nav_handburgers.is-active:hover span {
  background-color: #007cdd;
}

.mobile_nav {
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  min-height: 100vh;
  display: block;
  z-index: 98;
  background-color: #111;
  padding-top: 150px;
  transition: 0.4s;
}

.mobile_nav.is-active {
  left: 0;
}

.mobile_nav a {
  display: inline-block;
  width: 100%;
  margin: 0 auto 16px;
  text-align: center;
  padding: 12px 16px;
  text-decoration: none;
  font-size: large;
  font-weight: bold;
  border-radius: 10px;
  font-size: 1.8rem;
  color: rgb(207, 207, 207);
}

.mobile_nav a:hover {
  background-color: #3991d4;
}


#menu-btn {
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  display: none;
}

.home {
  margin: 0 auto;
  margin-top: 5rem;
  width: 100%;
  background-image: url(./img/m1.jpg);
  background-size: cover;
  background-position: 50%;
  background-position-y: 0%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 94vh;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-bottom: 5rem;
}

.home .content {
  position: absolute;
  top: 50%;
  left: 6%;
  transform: translateY(-50%);
}

.home .content h2 {
  color: #111;
  border: 1rem #007cdd;
  font-weight: bolder;
  font-size: 2.2vw;
}

.home .content h1 {
  margin-top: 2.4rem;
  margin-bottom: 2.6rem;
  color: #007cdd;
  font-size: 4vw;
  border: 1rem #007cdd;
  font-weight: bolder;
  font-family: "Libre Baskerville", sans-serif;
}

.home .content h3 {
  color: #444;
  font-size: 2vw;
  font-weight: 500;
  font-family: sans-serif;
  text-transform: none;
}

.auth_heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.auth_heading span {
  color: #007cdd;
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.Authority_images {
  width: 95%;
  display: flex;
  justify-content: center;
  justify-items: center;
  flex-direction: row;

}

.Authority_img1 {
  width: 45%;
  margin: 1rem 2rem 0rem 2rem;
  border: 3px solid #007cdd;
  background-size: cover;
}

.Authority_img2 {
  width: 45%;
  margin: 1rem 2rem 0rem 2rem;
  border: 3px solid #dd0000;
  background-size: cover;
}

.auth_txt {
  font-size: 2rem;
  color: #444;
  font-weight: 400;
  margin-top: 1rem;
}

.auth_txt a {
  font-size: 2rem;
  color: #444;
  font-weight: 400;
  margin-top: 1rem;
  text-decoration: underline;
}

.services {
  margin-bottom: 4rem;
  background-color: #fff;
}

.services .box-container {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service_heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

.service_heading span {
  color: #007cdd;
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.Services_txt {
  font-size: 2rem;
  color: #444;
  font-weight: 400;
  margin-top: 1rem;
}

.services .box-container .box {
  border-radius: 1rem;
  overflow: hidden;
  background: #eee;
  margin: 1rem 3rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.services .box-container .box:hover {
  transform: translateY(-15px);
  box-shadow: 3px 3px 3px #aaa;
}

.services .box-container .box .image {
  height: 100%;
  width: 100%;
  flex: 1;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services .box-container .box .image img {
  width: 70%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 1rem;
  border: thick double #3192dd;
}

.services .box-container .box .content {
  padding: 2rem;
  flex: 2;
  text-align: start;
}

.services .box-container .box .content h3 {
  font-size: 2.2rem;
  color: #222;
}

.services .box-container .box .content p {
  padding: 1rem 0;
  font-size: 1.5rem;
  color: #444;
  line-height: 2;
}

.Card_1 {
  margin: 4rem auto;
  width: 85%;
  border-radius: 1.5rem;
  background: #eee;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 50vh;
  align-items: center;
  justify-content: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.Card_1 .content {
  text-align: start;
  padding-right: 5rem;
  padding-top: 1rem;
  flex: 2;
}

.Card_1 .card_img {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Card_1 .card_img img {
  width: 90%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}

.Card_1 .content h2 {
  font-weight: bolder;
  color: #222;
  font-size: 3.5rem;
  display: block;
}

.Card_1 .content h2 span {
  font-weight: bolder;
  color: #007cdd;
  font-size: 3.5rem;
  display: inline;
}

.Card_1 .content h3 {
  font-size: 2.2rem;
  color: #555;
  font-weight: 300;
  margin-top: 12px;
  margin-bottom: 12px;
}

.ECCEFor {
  background-color: #75c3ff;
  margin-top: 6.5rem;
}

.ECCEFor .box-container {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ECCEFor .box-container .box {
  border-radius: 1rem;
  overflow: hidden;
  margin: 1rem 3rem;
  min-width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ECCEFor .box-container .box .image {
  height: 100%;
  width: 100%;
  flex: 1;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ECCEFor .box-container .box .image img {
  width: 25%;
  -o-object-fit: cover;
  object-fit: cover;
}

.ECCEFor .box-container .box .content {
  padding: 2rem;
  flex: 2;
  text-align: center;
}

.ECCEFor .box-container .box .content h3 {
  font-size: 2.2rem;
  color: #222;
  text-transform: none;
}

.ECCEFor .box-container .box .content p {
  padding: 1rem 0;
  font-size: 1.5rem;
  color: #444;
  line-height: 2;
}

.blogs {
  margin-top: 3.2rem;
}

.blogs .box-container {
  margin-top: 2rem;
  margin-left: 4rem;
  margin-right: 4rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(27rem, 1fr)) [auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(27rem, 1fr));
  gap: 2rem;
  justify-items: center;
}

.blogs .box-container .card {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.05),
    inset -5px -5px 5px rgba(255, 255, 255, 0.5),
    5px 5px 5px rgba(0, 0, 0, 0.05), -5px -5px 5px rgba(255, 255, 255, 0.5);
}

.blogs .box-container .box {
  border-radius: 1rem;
  overflow: hidden;
  background: #eee;
  width: 100%;
}

.blogs .box-container .box:hover {
  transform: translateY(-20px);
  box-shadow: 2px 2px 2px #ccc;
}

.blogs .box-container .box .image {
  height: 18rem;
  object-fit: cover;
}

.blogs .box-container .box .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-position: 0% 0%;
}

.blogs .box-container .box .content {
  padding: 2rem;
  text-align: center;
}

.blogs .box-container .box .content h3 {
  font-size: 2rem;
  color: #222;
}

.blogs .box-container .box .content p {
  padding: 1rem 0;
  font-size: 1.4rem;
  color: #555;
  line-height: 2;
}

.blogs .box-container .box .content a {
  font-size: 1.7rem;
  color: #3192dd;
}

.blogs .box-container .box .content a:hover i {
  padding-left: 1rem;
}

.blogs .box-container .box .content a i {
  padding-right: 0.5rem;
}

.footer .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 1.5rem;
}

.footer .box-container .box {
  padding: 1rem 0;
}

.footer .box-container .box h3 {
  font-size: 2.2rem;
  color: #444;
  padding: 1rem 0;
}

.footer .box-container .box p {
  font-size: 1.4rem;
  color: #555;
  padding: 1rem 0;
  line-height: 2;
}

.footer .box-container .box .links {
  font-size: 1.4rem;
  color: #555;
  padding: 1rem 0;
  display: block;
}

.footer .box-container .box .links:hover {
  color: #007cdd;
}

@media (max-width: 480px) {
  html {
    font-size: 50%;
  }

  .header .navbar {
    display: none;
  }

  .home {
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 5)),
      url(./img/m1_mob.jpg);
    background-size: cover;
    background-position: 50%;
    background-position-y: 50%;
  }

  .home .content {
    position: absolute;
    top: 48%;
    left: auto;
  }

  .portfolio_txt {
    font-size: 3vh;
    margin-left: 0.4rem;
  }

  .home .content h2 {
    padding: 0;
    margin-top: 100%;
    font-size: 5vw;
    text-align: center;
    color: #d1af06;
    text-shadow: 0.5px 0.5px rgb(0, 0, 0);
  }

  .home .content h1 {
    padding: 0;
    margin-top: 2rem;
    margin-bottom: 2rem;
    margin-left: 2rem;
    margin-right: 2rem;
    font-size: 7vw;
    text-align: center;
    color: #fff;
    text-shadow: 0.5px 0.5px rgb(0, 0, 0);
  }

  .home .content h3 {
    display: none;
    color: #271a1a;
    font-size: 5vw;
    font-weight: 500;
    font-family: sans-serif;
    text-transform: none;
    text-align: center;
  }

  .btns {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;

    align-items: center;
    text-align: center;
    margin-bottom: 2rem;
  }

  .btn {
    text-align: center;
    align-self: center;
    align-items: center;
    width: 40%;
    margin-top: 1rem;
    padding: 1rem;
    text-align: center;
  }

  .btn2 {
    text-align: center;
    width: 40%;
    padding: 1rem;
    margin-left: 1rem;
    align-items: center;
    margin-top: 1rem;

  }

  .auth_heading span {
    font-size: 2.5rem;
  }

  .auth_txt {
    font-size: 1.6rem;
  }

  .Authority_images {
    width: 95%;
    flex-direction: column;
    margin: 0 auto 12rem auto;
  }

  .Authority_img1 {
    width: 96%;
    margin: 0rem auto 1rem auto;
    border: 3px solid #007cdd;
  }

  .Authority_img2 {
    width: 96%;
    margin: 1rem auto;
    border: 3px solid #dd0000;
  }

  section .heading span {
     font-size: 2.5rem;
  }

  .services .box-container {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.2rem;
  }

  .service_heading span {
    font-size: 2.5rem;
  }

  .Services_txt {
    font-size: 1.6rem;
  }

  .services .box-container .box {
    margin: 1rem 0.5rem;
    display: flex;
    flex-direction: row;
  }

  .services .box-container .box:hover {
    transform: translateY(0px);
    box-shadow: 0px 0px 0px #aaa;
  }

  .services .box-container .box .image img {
    width: 85%;
  }

  .services .box-container .box .content {
    padding: 1rem 1rem 1rem 0.5rem;
  }

  .services .box-container .box .content h3 {
    font-size: 1.6rem;
  }

  .services .box-container .box .content p {
    padding: 0.5rem 0;
    font-size: 1.25rem;
    line-height: 1.65;
    text-transform: none;
  }

  .Card_1 {
    margin: 2rem auto;
    flex-direction: column;
    gap: 0.5rem;
  }

  .Card_1 .content {
    padding: 1rem 1rem 1rem 0.5rem;
  }

  .Card_1 .content h2 {
    font-size: 2.1rem;
  }

  .Card_1 .content h2 span {
    font-size: 2.1rem;
  }

  .Card_1 .content h3 {
    font-size: 1.6rem;
    margin-top: 8px;
    margin-bottom: 8px;
  }

  .ECCEFor .box-container {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.2rem;
    padding: 2rem 0 0 0;
  }

  .ECCEFor .box-container .box {
    margin: 0 1.5rem;
  }

  .ECCEFor .box-container .box .content h3 {
    font-size: 2.1rem;
  }

  .blogs .box-container .card {
    width: 100%;
  }

  .blogs .box-container {
    margin-top: 2rem;
    margin-left: 1.8rem;
    margin-right: 1.8rem;
  }

  .footer .box-container {
    gap: 0.5rem;
  }

  .footer .box-container .box {
    padding: 0.5rem 0;
  }

  .footer .box-container .box .links {
    padding: 0.5rem 0;
  }
}

@media (min-width: 750px) {
  .nav_handburgers {
    display: none;
  }
  .nav_menu {
    display: flex;
  }
}