@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&display=swap");
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------class to put alphabetin lowercase-------------------------------------*/
.lowercase{
  text-transform: lowercase;
}
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  outline: none;
  border: none;
  text-transform: capitalize;
  transition: all 0.2s linear;
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
    font-family: 'Ubuntu', sans-serif;
    /* ... existing styles ... */
    background: #cbdcf7;
    /* Default dark mode styles */
    body {
        background: #080808;
        color: #ffffff;
    }
}
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/* Light mode styles */
body.light-mode {
    background: #ffffff;
    color: #000000;
}

body.light-mode header {
    background-color: #f1f1f1;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

body.light-mode .navbar ul li a {
    color: #000000;
}

body.light-mode .navbar ul li a.active,
body.light-mode .navbar ul li a:hover {
    color: #d30707;
    border-bottom: 0.2rem solid #d30707;
}

body.light-mode .btn {
    background: #d30707;
    color: #ffffff;
}

body.light-mode .btn:hover {
    background: #a30512;
}

*::selection {
  background: #da2b2b;
  color: #fff;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}
html::-webkit-scrollbar {
  width: 0.8rem;
}
html::-webkit-scrollbar-track {
  background: rgb(0, 0, 0);
}
html::-webkit-scrollbar-thumb {
  background: rgb(255, 255, 255);
}

/* pre loader start */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  background: #e6eff1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.loader-container.fade-out {
  top: -120%;
}
/*                                             pre loader end                                                  */
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/*                                          N   A   V   B   A   R                                              */
header {
  position:absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.2%;
  height: 40px;
  background-color:rgb(0, 0, 0);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3)
}
section {
  min-height: 100vh;
  padding: 0.4rem 9%;
}

.navbar .logo img {
  height: 30px; /* Adjust logo size */
  align-items: center;
}

.heading {
  font-size: 0.4rem;
  color: rgb(248, 248, 248);
  font-weight: 80;
  text-align: center;
}
.heading span {
  color: rgba(248, 248, 248);
}
header .logo {
  font-size: 0.5rem;
  font-weight: 100;
  text-decoration: none;
  color: #8a8a89;

}
header .logo i {
  font-size: 2.2rem;
}
header .logo:hover {
  color: #ffffff;
}
header .navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .navbar li {
  margin: 1.6rem;
  justify-content: center;
  align-items: center;
}
header .navbar ul li a {
  font-size: 1.3rem;
  color: #f1f1f1;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04rem;
  transition: 0.2s;
}
header .navbar ul li a.active,
header .navbar ul li a:hover {
  color: rgba(90, 90, 90, 0.8);
  border-bottom: 0.2rem solid rgba(90, 90, 90, 0.8);
  padding: 0.5rem 0;
}

@media (max-width: 768px) {
  .heading {
    font-size: 1rem;
  }
  header .logo {
    font-size: 1.5rem;
  }
  header .navbar ul li a {
    font-size: 1rem;
  }
}
/* hamburger icon starts*/
#menu {
  font-size: 2rem;
  cursor: pointer;
  color: rgb(255, 255, 255);
  display: none;
  margin-right: 20px;
}
/* hamburger icon ends */

/* responsive styles */
@media (max-width: 768px) {
  .heading {
    font-size: 1rem;
  }

  header .logo {
    font-size: 1.5rem;
  }

  header .navbar {
    position: absolute;
    top: 40px;
    right: 0;
    width: 100%;
    background: black;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    display: none; /* hidden by default */
  }

  header .navbar ul {
    flex-direction: column;
  }

  header .navbar li {
    margin: 1rem 0;
  }

  header .navbar ul li a {
    font-size: 1.2rem;
  }

  #menu {
    display: block;
  }

  header.active .navbar {
    display: flex;
  }
}
/* hamburger icon ends */
/*                                          navbar icon ends                                                   */
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/*                                H   E   R   O        S   E   C   T   I   O   N                               */
/* hero section starts*/
.home {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  min-height: 100vh;
  margin-top: 2rem;
  align-items: center;
}
.home #particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top:0;
  left: 0;
  background-color: #000000;
}
.home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.home .content {
  flex: 1 1 40rem;
  padding-top: 1rem;
  z-index: 1;
}
.home .image {
  display: flex;
  flex: 1 1 30rem;
  z-index: 1;
}
.home .image img {
  display: flex;
  width: 100%;
  height: 100%;
  margin-top: 2rem;
  
  border-radius: 20%;
  box-shadow: 0 2px 8px rgba(9, 107, 235, 0.3);
  cursor: pointer;
}
.home .image img:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}
.home .content h2 {
  font-size: 5.5rem;
  font-weight: 1400;
  color: #ffae00;
}
.home .content h2 span {
  font-size: 5rem;
  font-weight: 1400;
  color: #ffffff;
}
.home .content p {
  font-size: 6rch;
  color: #ffffff;
  font-weight: 600;
  padding: 1rem 0;
}
.home .content p span {
  font-size: 4.5rch;
  color: #d30707;
  font-weight: 600;
  padding: 1rem 0;
}

/* social icons start */
.socials {
  position: relative;
  margin-top: 1rem;
}

.socials .social-icons {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.socials .social-icons li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 170px;
  height: 55px;
}

.socials .social-icons a {
  font-size: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2.5rem;
  transition: 0.3s;
  color: #fff;
  background-color: #ffae00;
  width: 100%;
  height: 60px;
  text-align: center;
  padding: 0 1rem;
  box-sizing: border-box;
}

.socials .social-icons a span {
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: 0.05rem;
  font-family: "ubuntu", sans-serif;
  margin-left: 0.5rem;
}

.socials .social-icons i {
  font-size: 2rem;
  transition: 0.3s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .socials .social-icons li {
    max-width: 120px;
    height: 50px;
  }

  .socials .social-icons a {
    font-size: 2rem;
    height: 50px;
  }

  .socials .social-icons a span {
    font-size: 1.6rem;
  }

  .socials .social-icons i {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .socials .social-icons li {
    max-width: 100%;
  }

  .socials .social-icons a {
    flex-direction: column;
    height: auto;
    padding: 0.5rem 1rem;
  }

  .socials .social-icons a span {
    margin-left: 0;
    margin-top: 0.3rem;
  }
}
/* social icons end */


/* hero media queries starts*/
@media (max-width: 450px) {
  .home .btn {
    margin: 4rem 0;
  }
  .socials {
    margin-top: 12rem;
  }
  .home .image img {
    margin-top: 1rem;
  }
  .home .content p {
    font-size: 2.2rem;
  }
  .home .content p span {
    font-size: 2.2rem;
  }
}
/* hero media queries ends*/
/*                                           hero section end                                                  */
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/*                              A   B   O   U   T      S   E   C   T   I   O   N                               */
/* about section starts */
.about {
  background-color: #000000;
  min-height: 100vh;
  justify-content: center;
}

.about .heading {
  color: #737373;
  font-size: 46px;
  font-weight: bolder;
  margin-top: 4rex;
}

.about .heading span {
  color: #ffffff;
}

.about .row {
  display: flex;
  flex-direction: row;
  gap: 8rem;
  flex-wrap: wrap;
  padding: 6rem;
}
.about .row .image {
  text-align: center;
  display: flex;
  flex: 1 1 35rem;
}
.about .row .image img {
  margin: 1rem;
  display: flex;
  width: 110%;
  height: 420px;
  border-radius: 20%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.6);
  transition: 0.3s;
  cursor: pointer;
}
.about .row .image img:hover {
  mix-blend-mode: normal;
}
.about .row .content {
  flex: 1 1 45rem;
  padding: 1rem;
  color: #ffffff;
}
.about .row .content h1 {
  color: rgb(255, 255, 255);
  font-size: 2rem;
}
.about .row .content .tag {
  font-size: 1.4rem;
  color: #020133;
  font-weight: 600;
  margin-top: 1rem;
}
.about .row .content p {
  font-size: 2rem;
  margin-top: .5rem;
  font-family: "ubuntu", sans-serif;
  font-weight: 600;
  text-transform: none;
}
.about .row .content .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: "ubuntu", sans-serif;
  font-weight: 600;
}
.about .row .content .box-container .box p {
  text-transform: none;
}
.about .row .content .box-container .box p span {
  color: #737373;
  font-weight: bold;
}
.resumebtn {
  margin-top: 1rem;
  display: flex;
}
.resumebtn .btn {
  padding: 1.9rem 3rem;
  border-radius: 2.5rem;
  transition: 0.3s;
  color: #ffffff;
  background: #ffae00;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.801);
  font-family: "ubuntu", sans-serif;
}
.resumebtn .btn span {
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
}
.resumebtn .btn i {
  margin-left: 0.3rem;
  font-size: 1.6rem;
  transition: 0.3s;
}
.resumebtn .btn:hover {
  background: #8d8d8d;
}
.resumebtn .btn:hover i {
  transform: translateX(5px);
}
/* about media queries starts*/
@media screen and (max-width: 600px) {
  .about .row .image {
    margin-top: 2rem;
  }
  .about .row .image img {
    margin: 0 auto;
    width: 80%;
    mix-blend-mode: normal;
  }
  .about .row {
    padding: 0.5rem;
    margin-bottom: 7rem;
  }
  .about .row .content {
    padding: 1rem;
  }
  .about .row .content .box-container {
    gap: 0;
  }
}
/* about media queries ends*/
/*                                         about section ends                                                  */
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/*                           S   K   I   L   L       S   E   C   T   I   O   N                                 */
/* Skills section starts */
.skills {
  min-height: 100vh;
  background-color: #000000;
}
.skills h2 {
  color: #737373;
  font-size: 46px;
  font-weight: bolder;
  margin-top: 3rem;
}
.skills .heading span {
  color: #ffffff;
}
.skills .container {
  background: #000000;
  color: #fff;
  border-radius: 2rem;
  padding: 1rem;
  width: 80%;
  height: 100%;
  margin: auto;
  margin-top: 1rem;
}
.skills .container .row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center; /* Center the items */
}
.skills .container .bar {
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 1rem;
  box-shadow: 0 4px 10px #000000;
  background: #6e6d6d;
  height: 100px;
  width: 125px;
}
.skills .container .bar:hover {
  box-shadow: 0 8px 10px rgba(0, 0, 0, 0.8) !important;
  background-color: #ffae00 !important;
}
.skills .container .bar .info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}
.skills .container .bar .info i {
  font-size: 4rem;
}
.skills .container .bar .info span {
  font-size: 2rem;
  font-weight: 700;
  font-family: "ubuntu", sans-serif;
  margin-left: 0.5rem;
}
.sdbtn {
  margin-top: 5rem;
  margin-bottom: 2rem;
  display: flex;
  place-content: center;
}
.sdbtn .btn {
  padding: 1.9rem 3rem;
  border-radius: 2rem;
  transition: 0.3s;
  color: #ffffff;
  background: #ffae00;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.801);
  font-family: "ubuntu", sans-serif;
}
.sdbtn .btn span {
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
  font-family: "ubuntu", sans-serif;
}
.sdbtn .btn i {
  margin-left: 0.3rem;
  font-size: 1.6rem;
  transition: 0.3s;
}
.sdbtn .btn:hover {
  background: #747474;
  color: #ffffff;
}
.sdbtn .btn:hover i {
  transform: translateX(5px);
}

/* Skills media queries for responsiveness */
@media screen and (max-width: 768px) {
  .skills .container {
    width: 90%;
  }
  .skills .container .bar {
    width: 120px;
    height: 100px;
  }
  .skills .container .bar .info i {
    font-size: 3.5rem;
  }
  .skills .container .bar .info span {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 480px) {
  .skills .container {
    width: 100%;
  }
  .skills .container .bar {
    width: 100px;
    height: 80px;
  }
  .skills .container .bar .info i {
    font-size: 3rem;
  }
  .skills .container .bar .info span {
    font-size: 1.6rem;
  }
}
/* skills media queries ends*/
/*                                            skills section ends                                              */
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/*                      E   D   U   C  A   T   I   O   N       S   E   C   T   I   O   N                       */
/* education section starts */
.education {
  background-color: #000000;
  min-height: 100vh;
}
.education h2 {
  color: #737373;
  margin-top: 2rem;
  padding: 1rem;
  font-size: 46px;
  font-weight: bolder;
}
.education .heading span {
  color: #ffffff;
  font-size: 46px;
  font-weight: bolder;
}
.education .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2rem;
}
.education .box-container .box {
  flex: 1 1 30rem;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  height: 20rem;
}
.education .box-container .box img {
  height: 100%;
  width: 100%;
  object-fit:cover
}
.education .box-container .box .content {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 85%;
  left: 0;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
}
.education .box-container .box .content .tag {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 3rem;
  width: 100%;
  background: #000000;
  color: rgb(255, 255, 255);
}
.education .box-container .box .content .tag h3 {
  font-size: 1.5rem;
  font-weight: 800;
  text-align: center;
  margin-left: 1rex;
}
.education .box-container .box .content p {
  font-size: 1.5rem;
  margin-top: 1rex;
  font-weight: 600;
  text-align: center;
}
.education .box-container .box:hover .content {
  top: 25%;
}
.education .desc {
  margin: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.education .desc p {
  font-size: 1.5rem;
}
.education .desc .btns {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 1rem;
}
.education .desc .btns .btn {
  line-height: 0;
  display: inline;
  padding: 1.5rem 2.5rem;
  border-radius: 0.5rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: #ffffff;
  background: #ffae00;
  margin-right: 1rem;
  font-family: "ubuntu", sans-serif;
}
.education .desc .btns .btn:hover {
  background: #7c7c7c;
}
.education .viewall {
  display: flex;
  justify-content: center;
}
.education .viewall .btn {
  position: relative;
  line-height: 0;
  padding: 1.6rem 3rem;
  border-radius: 0.5em;
  transition: 0.5s;
  color: rgb(255, 255, 255);
  font-weight: 700;
  border: 2px solid #fff;
  box-shadow: 0px 5px 10px rgba(65, 84, 241, 0.4);
  text-align: center;
}
.education .viewall .btn span {
  font-weight: 600;
  font-size: 1.7rem;
  font-family: "ubuntu", sans-serif;
}
.education .viewall .btn i {
  margin-left: 0.3rem;
  font-size: 1.5rem;
  transition: 0.3s;
}
.education .viewall .btn:hover {
  background: #fff;
  color: #000;
}
.education .viewall .btn:hover i {
  transform: translateX(5px);
}
.tcbtn {
  margin-top: 2rem;
  margin-bottom: 2rem;
  display: flex;
  place-content: center;
}
.tcbtn .btn {
  padding: 1.9rem 3rem;
  border-radius: 2rem;
  transition: 0.3s;
  color: #ffffff;
  background: #ffae00;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.801);
  font-family: "ubuntu", sans-serif;
}
.tcbtn .btn span {
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
}
.tcbtn .btn i {
  margin-left: 0.3rem;
  font-size: 1.6rem;
  transition: 0.3s;
}
.tcbtn .btn:hover {
  background: #707070;
}
.tcbtn .btn:hover i {
  transform: translateX(5px);
}
/* education media queries ends*/
/*                                           education section ends                                            */
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/*                    T   R   A   I   N   I   N   G        &         C   O   U   R   S   E                     */
/* work section starts */
.work {
  background-color: #000000;
  min-height: 100vh;
}
.work h2 {
  color: #ffffff;
  padding: 1rem;
  font-size: 46px;
  font-weight: bolder;
  margin-top: 2rex;
}
.work .heading span {
  color: #737373;
}
.work .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2rem;
}
.work .box-container .box {
  flex: 1 1 30rem;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  height: 20rem;
}
.work .box-container .box img {
  height: 100%;
  width: 100%;
  object-fit: fill;
}
.work .box-container .box .content {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 85%;
  left: 0;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
}
.work .box-container .box .content .tag {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 3rem;
  width: 100%;
  background: #000000;
  color: rgb(255, 255, 255);
}
.work .box-container .box .content .tag h3 {
  font-size: 1.5rem;
  font-weight: 800;
  text-align: center;
}
.work .box-container .box:hover .content {
  top: 25%;
}
.work .desc {
  margin: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.work .desc p {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}

.work .desc .p i {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}
.work .desc .btns {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 1rem;
}
.work .desc .btns .btn {
  line-height: 0;
  display: inline;
  padding: 1.5rem 2.5rem;
  border-radius: 0.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  background-color: #ffae00;
  color: #ffffff;
  margin-right: 1rem;
}
.work .desc .btns .btn:hover {
  background: #747474;
}
.work .viewall {
  display: flex;
  justify-content: center;
}
.work .viewall .btn {
  position: relative;
  line-height: 0;
  padding: 1.6rem 3rem;
  border-radius: 0.5em;
  transition: 0.5s;
  color: rgb(255, 255, 255);
  font-weight: 700;
  border: 2px solid #fff;
  box-shadow: 0px 5px 10px rgba(65, 84, 241, 0.4);
  text-align: center;
}
.work .viewall .btn span {
  font-weight: 600;
  font-size: 1.7rem;
  font-family: "ubuntu", sans-serif;
}
.work .viewall .btn i {
  margin-left: 0.3rem;
  font-size: 1.5rem;
  transition: 0.3s;
}
.work .viewall .btn:hover {
  background: #fff;
  color: #757575;
}
.work .viewall .btn:hover i {
  transform: translateX(5px);
}

.pbtn {
  margin-top: 2rem;
  margin-bottom: 2rem;
  display: flex;
  place-content: center;
}
.pbtn .btn {
  padding: 1.9rem 3rem;
  border-radius: 2rem;
  transition: 0.3s;
  color: #ffffff;
  background: #ffae00;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.801);
  font-family: "ubuntu", sans-serif;
}
.pbtn .btn span {
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
}
.pbtn .btn i {
  margin-left: 0.3rem;
  font-size: 1.6rem;
  transition: 0.3s;
}
.pbtn .btn:hover {
  background: #8b8b8b;
}
.pbtn .btn:hover i {
  transform: translateX(5px);
}
/*                                          work section ends                                                  */
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/*       P   R   O   J   E   C   T       &        V   I   S   I   T        S   E   C   T   I   O   N           */
/* project and visit section starts */
.project {
  background-color: #000000;
  min-height: 100vh;
}
.project .heading {
  color: #737373;
  padding: 1rem;
  font-size: 46px;
  font-weight: bolder;
  margin-top: 2.5rex;
}
.project .heading span {
  color: #ffffff;
}
.project .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2rem;
}
.project .box-container .box {
  flex: 1 1 30rem;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  height: 20rem;
}
.project .box-container .box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.project .box-container .box .content {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 85%;
  left: 0;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
}
.project .box-container .box .content .tag {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 3rem;
  width: 100%;
  padding-left: 2rem;
  background: #000000;
  color: #ffffff;
}
.project .box-container .box .content .tag h3 {
  font-size: 1.5rem;
  text-align: center;
  font-weight: 800;
}
.project .box-container .box:hover .content {
  top: 25%;
}
.project .desc {
  margin: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.project .desc p {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}
.project .desc .btns {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 1rem;
}
.project .desc .btns .btn {
  line-height: 0;
  display: inline;
  padding: 1.5rem 2.5rem;
  border-radius: 0.5rem;
  font-size: 1.5rem;
  color: #fff;
  background: rgb(12, 12, 12);
  margin-right: 1rem;
}
.project .desc .btns .btn:hover {
  background: #868484;
}
.project .viewall {
  display: flex;
  justify-content: center;
}
.project .viewall .btn {
  position: relative;
  line-height: 0;
  padding: 1.6rem 3rem;
  border-radius: 0.5em;
  transition: 0.5s;
  color: rgb(255, 255, 255);
  font-weight: 700;
  border: 2px solid #fff;
  box-shadow: 0px 5px 10px rgba(65, 84, 241, 0.4);
  text-align: center;
}
.project .viewall .btn span {
  font-weight: 600;
  font-size: 1.7rem;
  font-family: "ubuntu", sans-serif;
}
.project .viewall .btn i {
  margin-left: 0.3rem;
  font-size: 1.5rem;
  transition: 0.3s;
}
.project .viewall .btn:hover {
  background: #fff;
  color: #000;
}
.project .viewall .btn:hover i {
  transform: translateX(5px);
}
.rpbtn {
  margin-top: 2rem;
  margin-bottom: 2rem;
  display: flex;
  place-content: center;
}
.rpbtn .btn {
  padding: 1.9rem 3rem;
  border-radius: 2rem;
  transition: 0.3s;
  color: #ffffff;
  background: #ffae00;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.801);
  font-family: "ubuntu", sans-serif;
}
.rpbtn .btn span {
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
}
.rpbtn .btn i {
  margin-left: 0.3rem;
  font-size: 1.6rem;
  transition: 0.3s;
}
.rpbtn .btn:hover {
  background: #747474;
}
.rpbtn .btn:hover i {
  transform: translateX(5px);
}
/*                                       project and visit section end                                         */
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/*                       R  E  S  E  A  R  C  H    &    P  U  B  L  I  C  A  T  I  O  N  S                     */
/* research and publication section starts */
.researchandpublication {
  background-color: #000000;
  min-height: 100vh;
}
.researchandpublication .heading {
  color: #737373;
  padding: 1rem;
  font-size: 46px;
  font-weight: bolder;
}
.researchandpublication .heading span {
  color: #ffffff;
  font-size: 46px;
  font-weight: bolder;
}
.researchandpublication .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2rem;
}
.researchandpublication .box-container .box {
  flex: 1 1 30rem;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  height: 40rem;
}
.researchandpublication .box-container .box img {
  height: 100%;
  width: 100%;
  object-fit: fill;
}
.researchandpublication .box-container .box .content {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 85%;
  left: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
}
.researchandpublication .box-container .box .content .tag {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 5rem;
  width: 100%;
  padding-left: 2rem;
  background: #000000;
  color: #ffffff;
}
.researchandpublication .box-container .box .content .tag h3 {
  font-size: 1.5rem;
  margin-top: 10px;
  margin-bottom: 10px;
}
.researchandpublication .box-container .box:hover .content {
  top: 25%;
  background-color: #ffffff;
  color: #000000;
}
.researchandpublication .desc {
  margin: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.researchandpublication .desc p {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}
.researchandpublication .desc .btns {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 1rem;
}
.researchandpublication .desc .btns .btn {
  line-height: 0;
  display: inline;
  padding: 1.5rem 2.5rem;
  border-radius: 0.5rem;
  font-size: 1.5rem;
  color: #fff;
  background: #ffae00;
  margin-right: 1rem;
  font-weight: 600;
}
.researchandpublication .desc .btns .btn:hover {
  background: #363636;
}
.researchandpublication .viewall {
  display: flex;
  justify-content: center;
}
.researchandpublication .viewall .btn {
  position: relative;
  line-height: 0;
  padding: 1.6rem 3rem;
  border-radius: 0.5em;
  transition: 0.5s;
  color: rgb(255, 255, 255);
  font-weight: 700;
  border: 2px solid #fff;
  box-shadow: 0px 5px 10px rgba(65, 84, 241, 0.4);
  text-align: center;
}
.researchandpublication .viewall .btn span {
  font-weight: 600;
  font-size: 1.7rem;
  font-family: "ubuntu", sans-serif;
}
.researchandpublication .viewall .btn i {
  margin-left: 0.3rem;
  font-size: 1.5rem;
  transition: 0.3s;
}
.researchandpublication .viewall .btn:hover {
  background: #fff;
  color: #7a7a7a;
}
.researchandpublication .viewall .btn:hover i {
  transform: translateX(5px);
}

.cbtn {
  margin-top: 2rem;
  margin-bottom: 2rem;
  display: flex;
  place-content: center;
}
.cbtn .btn {
  padding: 1.9rem 3rem;
  border-radius: 2rem;
  transition: 0.3s;
  color: #ffffff;
  background: #ffae00;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.801);
  font-family: "ubuntu", sans-serif;
}

.cbtn .btn span {
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
}
.cbtn .btn i {
  margin-left: 0.3rem;
  font-size: 1.6rem;
  transition: 0.3s;
}
.cbtn .btn:hover {
  background: #747474;
}
.cbtn .btn:hover i {
  transform: translateX(5px);
}
/*                                  research and publication section end                                       */
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/*                           C   E   R   T   I   F   I   C   A   T   I   O   N   S                             */
/* certification section starts */
.certification {
  background-color: #000000;
  min-height: 100vh;
}
.certification h2 {
  color: #ffffff;
  padding: 1rem;
  font-size: 46px;
  font-weight: bolder;
  margin-top: 2rex;
}
.certification .heading span {
  color: #737373;
}
.certification .box-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2rem;
}
.certification .box-container .box {
  flex: 1 1 30rem;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  height: 20rem;
}
.certification .box-container .box img {
  height: 100%;
  width: 100%;
  object-fit: fill;
}
.certification .box-container .box .content {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 85%;
  left: 0;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
}
.certification .box-container .box .content .tag {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 3rem;
  width: 100%;
  padding-left: 2rem;
  background: #000000;
  color: #ffffff;
}
.certification .box-container .box .content .tag h2 {
  font-size: 1.5rem;
  text-align: center;
  color: #ffffff;
}
.certification .box-container .box:hover .content {
  top: 25%;
  background-color: #ffffff;
  color: #000000;
}
.certification .desc {
  margin: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.certification .desc p {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}
.certification .desc .btns {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 1rem;
}
.certification .desc .btns .btn {
  line-height: 0;
  display: inline;
  padding: 1.5rem 2.5rem;
  border-radius: 0.5rem;
  font-size: 1.5rem;
  color: #fff;
  background: rgb(12, 12, 12);
  margin-right: 1rem;
}
.certification .desc .btns .btn:hover {
  background: #ffffff;
}
.certification .viewall {
  display: flex;
  justify-content: center;
}
.certification .viewall .btn {
  position: relative;
  line-height: 0;
  padding: 1.6rem 3rem;
  border-radius: 0.5em;
  transition: 0.5s;
  color: rgb(255, 255, 255);
  font-weight: 700;
  border: 2px solid #fff;
  box-shadow: 0px 5px 10px rgba(114, 114, 114, 0.4);
  text-align: center;
}
.certification .viewall .btn span {
  font-weight: 600;
  font-size: 1.8rem;
  font-family: "ubuntu", sans-serif;
}
.certification .viewall .btn i {
  margin-left: 0.3rem;
  font-size: 1.6rem;
  transition: 0.3s;
  font-weight: 600;
}
.certification .viewall .btn:hover {
  background: #fff;
  color: #ffae00;
}
.certification .viewall .btn:hover i {
  transform: translateX(5px);
}
.ebtn {
  margin-top: 2rem;
  margin-bottom: 2rem;
  display: flex;
  place-content: center;
}
.ebtn .btn {
  padding: 1.9rem 3rem;
  border-radius: 2rem;
  transition: 0.3s;
  color: #ffffff;
  background: #ffae00;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.801);
  font-family: "ubuntu", sans-serif;
}
.ebtn .btn span {
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
}
.ebtn .btn i {
  margin-left: 0.3rem;
  font-size: 1.6rem;
  transition: 0.3s;
}
.ebtn .btn:hover {
  background: #757575;
}
.ebtn .btn:hover i {
  transform: translateX(5px);
}
/*                                          certification section end                                          */
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/*                                   E   X   P   E   R   I   E   N   C   E   S                                 */
/* experience section starts */
.experience {
  background-color: #000000;
  min-height: 100vh;
}
.experience .heading {
  color: #737373;
  font-size: 46px;
  font-weight: bolder;
  margin-top: 0.5rex;
}
.experience .heading span {
  color: #ffffff;
}
.experience .timeline {
  position: relative;
  max-width: 1500px;
  margin: 0 auto;
}
.experience .timeline::after {
  content: "";
  position: absolute;
  width: 6px;
  background: #ffffff;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
  z-index: -2;
}
.experience .container {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

/*circles on timeline*/
.experience .container::after {
  content: "\f0b1";
  position: absolute;
  width: 25px;
  height: 25px;
  right: -17px;
  background-color: #3b3b3b;
  border: 4px solid #ffffff;
  top: 15px;
  border-radius: 50%;
  z-index: 100;
  font-size: 1.89rem;
  text-align: center;
  font-weight: 600;
  color: #ffffff;
  font-family: "Font Awesome\ 5 Free";
}
.experience .left {
  left: 0;
}
.experience .right {
  left: 50%;
}
/* arrows pointing right */
.experience .left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  border: medium solid #747474;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #747474;
}

/* arrows pointing left  */
.experience .right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  border: medium solid #747474;
  border-width: 10px 10px 10px 0;
  border-color: transparent #747474 transparent transparent;
}
.experience .right::after {
  left: -16px;
}
.experience .content {
  background-color: #747474;
  position: relative;
  border-radius: 6px;
}
.experience .content .tag {
  font-size: 1.3rem;
  padding-top: 1.5rem;
  padding-left: 1.5rem;
}
.experience .content .tag1 h2 {
  font-size: 2rem;
  padding-top: 1.5rem;
  padding-left: 1.5rem;
  color: #ffae00;
}

.experience .content .tag h2 {
  color: #ffffff;
}
.experience .content .desc {
  margin-left: 1.5rem;
  padding-bottom: 1rem;
}
.experience .content .desc h1 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
}
.experience .content .desc p {
  font-size: 1.2rem;
  color: #ffffff;
}
.experience .content p {
  font-size: 1.2rem;
  color: #ffffff;
}

/* view all button */
.morebtn {
  display: flex;
  justify-content: center;
}
.morebtn .btn {
  position: relative;
  line-height: 0;
  padding: 1.6rem 3rem;
  border-radius: 0.5em;
  transition: 0.5s;
  color: #fff;
  background: #777777;
  box-shadow: 0px 5px 10px rgba(122, 122, 122, 0.6);
  text-align: center;
}
.morebtn .btn span {
  font-weight: 600;
  font-size: 1.7rem;
  font-family: "Nunito", sans-serif;
}
.morebtn .btn i {
  margin-left: 0.3rem;
  font-size: 1.5rem;
  transition: 0.3s;
}
.morebtn .btn:hover {
  background: #7a7a7a;
}
.morebtn .btn:hover i {
  transform: translateX(5px);
}
.qbtn {
  margin-top: 2rem;
  margin-bottom: 2rem;
  display: flex;
  place-content: center;
}
.qbtn .btn {
  padding: 1.9rem 3rem;
  border-radius: 2rem;
  transition: 0.3s;
  color: #ffffff;
  background: #ffae00;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.801);
  font-family: "ubuntu", sans-serif;
}
.qbtn .btn span {
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 0.1rem;
}
.qbtn .btn i {
  margin-left: 0.3rem;
  font-size: 1.6rem;
  transition: 0.3s;
}
.qbtn .btn:hover {
  background: #747474;
}
.qbtn .btn:hover i {
  transform: translateX(5px);
}

/* Media queries - Responsive timeline on screens less than 600px wide */
@media screen and (max-width: 600px) {
  .experience {
    min-height: 100vh;
  }
  .experience .timeline {
    margin-top: 2rem;
  }
  .experience .timeline::after {
    left: 31px;
  }
  .experience .container {
    width: 100%;
    padding-left: 8rem;
    padding-right: 2rem;
  }
  .experience .container::after {
    font-size: 2.2rem;
  }
  .experience .container::before {
    left: 61px;
    border: medium solid #ffae00;
    border-width: 10px 10px 10px 0;
    border-color: transparent #ffae00 transparent transparent;
  }
  .experience .left::after {
    left: 15px;
  }
  .experience .right::after {
    left: 15px;
  }
  .experience .right {
    left: 0%;
  }
  .morebtn {
    margin-top: 3rem;
  }
}
/* experience media queries ends */
/*                                       experience section ends                                               */
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/*                                     F    O     O     T     E     R                                          */
/* contact section starts */
.contact {
  background: #1b1919;
  min-height: 100vh;
}
.contact .container {
  max-width: 1500px;
  width: 100%;
  background: #fff;
  border-radius: 1.5rem;
  margin: 2rem 5rem;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}
.contact .container .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem 2rem;
}
.contact .content .image-box {
  max-width: 60%;
  margin-left: 4rem;
}
.contact .content .image-box img {
  width: 100%;
  height: 40rem;
  position: relative;
}
.contact .content form {
  width: 45%;
  margin-right: 3.5rem;
}
form .form-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.form-group .field {
  height: 50px;
  display: flex;
  position: relative;
  margin: 1rem;
  width: 100%;
}
form i {
  position: absolute;
  top: 50%;
  left: 18px;
  color: rgb(51, 51, 51);
  font-size: 17px;
  pointer-events: none;
  transform: translateY(-50%);
}
form .field input,
form .message textarea {
  width: 100%;
  height: 100%;
  outline: none;
  padding: 0 16px 0 48px;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  border-radius: 5px;
  border: 1px solid rgb(51, 51, 51);
  background: #e5ecfb;
}
.field input::placeholder,
.message textarea::placeholder {
  color: rgb(51, 51, 51);
}
.field input:focus,
.message textarea:focus {
  padding-left: 47px;
  border: 2px solid rgb(115, 3, 167);
}
.field input:focus ~ i,
.message textarea:focus ~ i {
  color: rgb(115, 3, 167);
}
form .message {
  position: relative;
  margin: 1rem;
  width: 100%;
}
form .message i {
  top: 25px;
  font-size: 20px;
  left: 15px;
}
form .message textarea {
  min-height: 130px;
  max-height: 230px;
  max-width: 100%;
  min-width: 100%;
  padding: 12px 20px 0 48px;
}
form .message textarea::-webkit-scrollbar {
  width: 0px;
}
form .button-area {
  display: flex;
  float: right;
  flex-direction: row-reverse;
}
.button-area button {
  color: #fff;
  border: none;
  outline: none;
  font-size: 1.8rem;
  cursor: pointer;
  border-radius: 5px;
  padding: 13px 25px;
  background: #2506ad;
  box-shadow: 0px 5px 10px rgba(48, 68, 247, 0.6);
  transition: 0.3s ease;
  font-family: "ubuntu", sans-serif;
}
.button-area button:hover {
  background: #421cecf5;
}
.button-area span {
  font-size: 17px;
  padding: 1rem;
  display: none;
}
.button-area button i {
  position: relative;
  top: 6px;
  left: 2px;
  font-size: 1.5rem;
  transition: 0.3s;
  color: #fff;
}
.button-area button:hover i {
  left: 8px;
}
/* contact section media queries starts */
@media (max-width: 900px) {
  .contact {
    min-height: 70vh;
  }
  .contact .container {
    margin: 3rem 0 2rem 0;
  }
  .contact .container .content {
    padding: 18px 12px;
  }
  .contact .content .image-box {
    display: none;
  }
  .contact .content form {
    width: 100%;
    margin-right: 2rem;
  }
}
/* contact section media queries ends */
/* contact section ends */
/* footer section starts */
.footer {
  background-color: #000000;
  min-height: 100vh;
}
.footer h2 {
  color: #ffffff;
  padding: 1rem;
  font-size: 46px;
  font-weight: bolder;
  margin-top: 1.6rex;
}
.footer .heading span {
  color: #737373;
}
.footer .box-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}
.footer .box-container .box {
  flex: 1 1 25rem;
  margin: 2rem;
}
.footer .box-container .box h3 {
  font-size: 4rem;
  color: #ffae00;
  font-weight: bolder;
  
}
.footer .box-container .box h3 a {
  font-size: 3rem;
  color: #ffae00;
  font-weight: bolder;
  margin-bottom: 2rem;
}

.footer .box-container .box h3 a {
  font-size: 3rem;
  font-weight: bolder;
  margin-bottom: 2rem;
}

.footer .box-container .box h3 .yellow {
  color: #ffae00; /* Set 't' to yellow */
  margin: 0; /* Remove any margin */
  padding: 0; /* Remove any padding */
  display: inline; /* Ensure 't' stays inline with 's' */
  font-size: 4rem;
}

.footer .box-container .box h3 .white {
  color: #ffffff; /* Set 's' to white */
  margin: 0; /* Remove any margin */
  padding: 0; /* Remove any padding */
  display: inline; /* Ensure 's' stays inline with 't' */
  font-size: 4rem;
}

.footer .box-container .box h3 .lowercase {
  color: #737373; /* Default grey for .says */
  font-size: 2.4rem;
  font-weight: bolder;
  display: inline; /* Ensure .says stays inline with 'ts' */
  margin: 0; /* Remove any margin */
  padding: 0; /* Remove any padding */
}

.footer .box-container .box h3 span {
  font-size: 2.4rem;
  color: #737373;
  padding-bottom: 1rem;
  font-weight: bolder;
}
.footer .box-container .box p {
  font-size: 1.5rem;
  color: #737373;
  padding: 0.7rem 0;
  text-transform: none;
  font-weight: bolder;
}
.footer .box-container .box span{
  font-size: 1.5rem;
  color: #ffae00;
  padding: 0.7rem 0;
  text-transform: none;
  font-weight: bolder;
}
.footer .box-container .box p i {
  padding-right: 1rem;
  color: #737373;
  font-weight: bolder;
}
.footer .box-container .box span {
  padding-right: 1.5rem;
  color: #ffffff;
  font-weight: bolder;
}
.footer .box-container .box a {
  font-size: 1.5rem;
  color: #ffffff;
  padding: 0rem 0;
  display: block;
  font-weight: bolder;
}
.footer .box-container .box a i {
  color: #737373;
}
.footer .box-container .box a:hover {
  color: #ffae00;
}
.footer .box-container .box .share {
  display: flex;
  flex-wrap: wrap;
  padding: 1rem 0;
}
.footer .box-container .box .share a {
  height: 4rem;
  width: 4rem;
  padding: 0.8rem;
  text-align: center;
  border-radius: 5rem;
  font-size: 1.7rem;
  margin-right: 1rem;
  transition: 0.2s;
  background: rgb(230, 230, 230);
  color: #02094b;
  border: none;
}
.footer .box-container .box .share a:hover {
  background: transparent;
  transform: scale(0.98);
  border: 0.1rem solid rgb(180, 178, 178);
  color: #ffae00;
}
.footer .credit {
  padding: 1rem 0 0 0;
  text-align: center;
  font-size: 1.5rem;
  font-family: "ubuntu", sans-serif;
  font-weight: 600;
  color: #fff;
  border-top: 0.1rem solid #fff3;
}
.footer .credit a {
  color: #ffae00;
  padding: 1rem 0 0 0;
  text-align: center;
  font-size: 2rem;
  font-family: "ubuntu", sans-serif;
  font-weight: 600;
}
.footer .fa {
  color: #e90606;
  margin: 0 0.3rem;
  font-size: 1.5rem;
  animation: pound 0.35s infinite alternate;
}
@-webkit-keyframes pound {
  to {
    transform: scale(1.1);
  }
}
@keyframes pound {
  to {
    transform: scale(1.1);
  }
}
@media (max-width: 450px) {
  .footer .box-container .box {
    margin: 1.5rem;
  }
  .footer .box-container .box p {
    padding: 0.7rem;
  }
  .footer .box-container .box .share a {
    padding: 1.2rem;
  }
}
/* footer section ends */
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------*/
/* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
  width: 100%; /* Full width */
  padding: 12px; /* Some padding */
  border: 1px solid #ccc; /* Gray border */
  border-radius: 16px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 4px; /* Add a top margin */
  margin-bottom: 6px; /* Bottom margin */
  resize: vertical; /* Allow the user to vertically resize the textarea (not horizontally) */
  font-family: "ubuntu", sans-serif;
  font-weight: bolder;
  font-size: 2rem;
  text-align: center;
}

input[type=email], select, textarea {
  width: 100%; /* Full width */
  padding: 12px; /* Some padding */
  border: 1px solid #ccc; /* Gray border */
  border-radius: 16px; /* Rounded borders */
  box-sizing: border-box; /* Make sure that padding and width stays in place */
  margin-top: 4px; /* Add a top margin */
  margin-bottom: 6px; /* Bottom margin */
  resize: vertical; /* Allow the user to vertically resize the textarea (not horizontally) */
  font-family: "ubuntu", sans-serif;
  font-weight: bolder;
  font-size: 2rem;
  text-align: center;
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
  background-color: #ffae00;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  font-family: "ubuntu", sans-serif;
  font-weight: bolder;
  font-size: 1.8rem;
}

form {
  text-align: center;
  width: 500px;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
  background-color: #7c7c7c;
}

/* common media queries starts*/
@media (max-width: 450px) {
  html {
    font-size: 55%;
  }
  body {
    padding-right: 0;
  }
  section {
    padding: 2rem;
  }
}
/* common media queries ends*/

/* scroll top starts */
#scroll-top {
  position: fixed;
  top: -140%;
  right: 2rem;
  padding: 1.3rem 1.5rem;
  font-size: 2rem;
  background: #ffae00;
  color: #ffffff;
  border-radius: 50%;
  transition: 1s linear;
  z-index: 1000;
}
#scroll-top.active {
  top: calc(100% - 12rem);
}
/* scroll top ends */


#clocks {
  padding-right: 1.5rem;
  color: #ffffff;
  font-weight: bolder;
}

@media (max-width: 400px) {
  #clocks {
      font-size: 18px;
      padding: 8px 16px;
      background-color: #eaeaea;
  }
}
