/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@400..800&family=Birthstone+Bounce:wght@400;500&family=Bona+Nova+SC:ital,wght@0,400;0,700;1,400&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900&display=swap');

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  color: black;
  font-family: "Poppins", sans-serif;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  background-color: white;
  width: 100%;
  overflow-x: hidden;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
}

.logo {
  font-size: 2.8rem;
  font-weight: 600;
  font-family: 'Courier New', Courier, monospace;
  color: #09e509;
}

.logo span {
  color: black;
}

/* Nav */
nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

nav a {
  font-size: 1.8rem;
  font-family: "Bona Nova SC", serif;
  padding: 0.5rem 1rem;
  transition: 0.3s ease;
}

.hover-underline-animation {
  position: relative;
  display: inline-block;
}

.hover-underline-animation::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #0de35b;
  transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover::after {
  transform: scaleX(1);
}

.hover-underline-animation.left::after {
  transform-origin: bottom right;
}

.hover-underline-animation.left:hover::after {
  transform-origin: bottom left;
}

.getstarted {
  font-size: 1.6rem;
  background-color: #0dc14f;
  color: white;
  padding: 1rem 2rem;
  border-radius: 1rem;
}

.getstarted:hover {
  background-color: #095a27;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  font-size: 3rem;
  cursor: pointer;
  color: #0dc14f;
}

/* Home Section */
.home {
  padding: 12rem 5% 8rem;
  min-height: 100vh;
  background-color: #defbde;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-content {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
}

.home-left {
  flex: 1 1 45rem;
}

.home-left h2 {
  font-size: 4.5rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  text-align: left;
}

.home-left h2 span {
  color: #0de35b;
}

.home-left p {
  font-size: 1.6rem;
  color: gray;
  margin-bottom: 2rem;
  text-align: left;
  max-width: 90%;
}

.home-left a {
  display: inline-block;
  font-size: 1.6rem;
  margin: 1rem 1rem 0 0;
  padding: 1rem 2rem;
  border-radius: 1rem;
  transition: 0.3s ease;
}

.startedbtn {
  background-color: #18f268;
  color: white;
}

.startedbtn svg {
  width: 2rem;
  margin-left: 0.5rem;
  vertical-align: middle;
}

.startedbtn:hover {
  transform: scale(1.05);
  background-color: #14cc5a;
}

.explorebtn {
  color: #18f268;
  border: 2px solid #18f268;
}

.explorebtn:hover {
  background-color: rgba(168, 244, 196, 0.5);
  transform: scale(1.05);
}

.home-right {
  flex: 1 1 35rem;
  text-align: center;
}

.home-right img {
  width: 50rem;
  border-radius: 10%;
  border: 3px solid #18f268;
  box-shadow: 0 0 10px #18f268;
}

/* Services Section */
.services {
  padding: 8rem 5%;
  background-color: #f5fff5;
}

.services h1 {
  text-align: center;
  font-size: 5rem;
  color: #0dc14f;
  margin-bottom: 5rem;
  font-family: 'Courier New', Courier, monospace;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  justify-items: center;
}

.service-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  width: 100%;
  max-width: 500px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.service-icon svg {
  text-align: left;
  background-color: #c8f4d2;
  border-radius: 50%;
  padding: 1rem;
  margin-bottom: 2rem;
}

.service-card h3 {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  color: #333;
}

.service-card p {
  font-size: 1.6rem;
  color: #666;
  margin-bottom: 2rem;
}

.service-card a {
  font-size: 1.6rem;
  color: #0dc14f;
  font-weight: 500;
  text-decoration: none;
}

.service-card a:hover {
  text-decoration: underline;
}

/* STATS  */
.stats {
  margin-top: 9rem;
  border-radius: 2rem;
  padding: 8rem 5%;
  background-color: #e0f9e0;
}

.stats h1 {
  text-align: center;
  font-size: 4rem;
  color: #13a046;
  margin-bottom: 1rem;
  font-family: 'Courier New', Courier, monospace;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  justify-items: center;
}

.stats-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem 2rem;
  width: 100%;
  max-width: 300px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}



.stats-card p {
  font-size: 2rem;
  color: #666;
  margin-bottom: 2rem;
}

/* STAFF  */

.staff {
  padding: 8rem 5%;
  background-color: #f5fff5;
}

.staff h1 {
  text-align: center;
  font-size: 5rem;
  color: #0dc14f;
  margin-bottom: 3rem;
  font-family: 'Courier New', Courier, monospace;
}

.staff h4{
  color: #4b4c4b;
  font-size: 2rem;
  text-align: center;
  font-weight: 400;
  margin-bottom: 3rem;
}



.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(1000px, 1fr));
  gap: 3rem;
  justify-items: center;
}

.staff-card {
  background: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  border-radius: 1.5rem;
  padding: 3rem;
  width: 100%;
  max-width: 1000px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  gap: 3rem;
}
.staff-img img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
}
.staff-info h3 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}

.staff-info h6 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #333;
}

.staff-info p {
  font-size: 1.6rem;
  color: #666;
  margin-bottom: 2rem;
}


.staff-info a {
  font-size: 2.5rem;
  font-weight: 500;
  transition: .2s;
  border-radius: 2rem;
  padding: .5rem 1rem;
}


/* PIXEL  */
.pixel-img{
  box-shadow: 0 0 10px blue;
}

.pixel-h3{
  color: blue;
}

.pixel-btn{
  color: blue;
}


.pixel-btn:hover{
  background-color: rgb(154, 154, 241);

}

/* KING  */

.king-img{
  box-shadow: 0 0 10px crimson;
}

.king-h3 , .king-btn{
  color: crimson;
}

.king-btn:hover{
  background-color: rgb(243, 185, 185);
}

/* CONTACT  */

.contact{
  height: 35vh;
  border: 2px solid black;
  display: block;
  padding: 25px;
  background: url(Assets/bgn.jpg);
  background-repeat: no-repeat;
  background-size: 150rem;
  text-align: center;
}

.contact h1{
  font-size: 4rem;
  margin: 5rem 0rem 2rem 0rem;
}

.contact p{
  font-size: 2rem;
  margin-bottom: 5rem;
}

.contact a{
  background-color: #e7fbef;
  font-size: 2.5rem;
  padding: 1rem 2rem;
  border: 3px solid #18f268;
  font-family: 'Courier New', Courier, monospace;
  font-weight: 600;
  margin-bottom: 3rem;
  border-radius: 3rem;
  transition: .3s;
}

.contact a:hover{
  background-color: rgb(24, 242, 104 , 0.5);
  color: white;
  border: 3px solid white;
}

.copyright{
  margin-top: 5rem;
  font-size: 2rem;
  justify-items: center;
}

  /* Responsive */
  @media (max-width: 1024px) {
    .home-left h2 {
      font-size: 4rem;
    }

    nav a {
      font-size: 1.6rem;
    }
  }

  @media (max-width: 768px) {
    .menu-toggle {
      display: block;
    }

    nav {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      background: white;
      width: 100%;
      padding: 1rem 2rem;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    nav.show {
      display: flex;
    }

    nav a {
      margin: 1rem 0;
    }

    header {
      flex-direction: row;
      align-items: center;
    }

    .home {
      padding: 12rem 5% 6rem;
    }

    .home-content {
      flex-direction: column;
      align-items: center;
    }

    .home-left h2,
    .home-left p {
      text-align: center;
      width: 100%;
    }

    .home-right img {
      width: 45rem;
    }

    .home-left a {
      display: block;
      text-align: center;
      margin: 1rem auto;
    }


    .staff-card p{
      width: 200px;
    }
  }

  @media (max-width: 480px) {
    .home-left h2 {
      font-size: 3.2rem;
    }

    .home-left p {
      font-size: 1.4rem;
    }

    .getstarted {
      font-size: 1.4rem;
      padding: 0.8rem 1.6rem;
    }

    nav a {
      font-size: 1.4rem;
    }
  }