* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

:root {
  --primary: #2563eb;
  --bg-card: #ffffff;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --accent: #10b981;
  --color-primary: #000000;
  --color-secondary: hsl(145, 63%, 42%);
  --color-white: #ffffff;
  --color-black: #141313;
  --color-gray0: #f8f8f8;
  --color-gray1: #928585;
  --color-gray2: #b2becd;
  --color-gray3: #6c7983;
  --color-gray4: #454e56;
  --color-gray5: #333841;
  --color-gray6: #12181b;
  --br-sm-2: 14px;
  --box-shadow1: 0 3px 15px rgba(0, 0, 0, 0.2);
}

.light-mode {
  --color-primary: #b9bfd8;
  --color-secondary: #9d9ee0;
  --color-white: #e64343;
  --color-black: rgb(41, 41, 41);
  --color-gray0: #6e2e2e;
  --color-gray1: #7bace6;
  --color-gray2: #8b4851;
  --color-gray3: #5e7485;
  --color-gray4: #7cabd4;
  --color-gray5: #afbbd1;
  --color-gray6: #bdcfd8;
}

body {
  background: var(--color-primary);
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  transition: all 0.4s ease-in-out;
}

#banner {
  display: flex;
  justify-content: center;
  margin: auto;
}

.red {
  color: red;
}

.green {
  color: green;
}

a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  font-family: inherit;
}

header {
  min-height: 100vh;
  color: var(--color-black);
  overflow: hidden;
}

label {
  display: inline-block;
  margin: 10px 0;
}

section {
  min-height: 10vh;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  padding: 2rem 15rem;
  transform: translateY(-10%) scale(0);
  transform: translateX(-1%);
  transition: all 0.4s ease-in-out;
  background: var(--color-primary);
}

.sec1,
.sec2,
.sec3,
.sec4,
.sec5,
.sec6,
.sec7,
.sec8,
.sec9 {
  display: none;
  transform: translateY(0) scale(1);
}

.sec7.active {
  height: -moz-fit-content;
  height: fit-content;
}

.sec8.active,
.sec9.active {
  height: 100%;
}

.dip-text {
  color: var(--color-black);
}

.active {
  display: block;
  animation: scaleAnim 1s ease-in-out;
}
@keyframes scaleAnim {
  0% {
    transform: translateY(-99%) scaleY(0);
  }
  100% {
    transform: translateY(0) scaleY(1);
  }
}

.controlls {
  position: fixed;
  z-index: 1;
  top: 20%;
  right: 3%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transform: translateY(-10%);
}
.controlls .active-btn {
  background: var(--color-secondary) !important;
  transition: all 0.4s ease-in-out;
}
.controlls .control {
  padding: 1rem;
  cursor: pointer;
  background: var(--color-gray4);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0.2rem 0;
  box-shadow: var(--box-shadow1);
}
.controlls .control i {
  font-size: 0.9rem;
  color: var(--color-gray2);
  pointer-events: none;
}

.theme-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 5%;
  right: 3%;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--color-gray4);
  cursor: pointer;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.1s ease-in-out;
}
.theme-btn:active {
  transform: translateY(-5px);
}
.theme-btn i {
  font-size: 1.4rem;
  color: var(--color-gray3);
  pointer-events: none;
}

article,
.ic2 {
  color: var(--color-gray1);
}

.header-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  min-height: 100vh;
}
.header-content .left-header {
  display: flex;
  align-items: center;
  position: relative;
}
.header-content .left-header .h-shape {
  transition: all 0.4s ease-in-out;
  width: 40%;
  height: 100%;
  background: hsla(145, 63%, 42%, 0.5);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  clip-path: polygon(0 0, 46% 0, 79% 100%, 0% 100%);
}
.header-content .left-header .image {
  border-radius: var(--br-sm-2);
  width: 38%;
  height: 90%;
  margin-left: 3rem;
  background: var(--color-black);
  transition: all 0.1s ease-in-out;
}
.header-content .left-header .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.1s ease-in-out;
  filter: grayscale(100%);
}
.header-content .left-header .image img:hover {
  filter: grayscale(0);
}
.header-content .right-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 18rem;
}
.header-content .right-header .name {
  font-family: Georgia, serif;
  font-size: 14px;
  letter-spacing: 2px;
  word-spacing: -3.6px;
  color: var(--text-muted);
  font-weight: 700;
  text-decoration: none;
  font-style: oblique;
  font-variant: small-caps;
  text-transform: none;
  font-size: 2rem;
}
.header-content .right-header .name span {
  color: var(--color-secondary);
}
.header-content .right-header p {
  margin: 1.5rem 0;
  line-height: 2rem;
}

.table-container {
  width: 100%;
  margin: auto;
  overflow: auto;
}

table {
  border-collapse: collapse;
  font-family: Times, serif;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  text-align: center;
  margin: auto;
  color: #000000;
  font-weight: bolder;
  text-decoration: none;
  font-style: oblique;
  font-variant: small-caps;
  text-transform: none;
}

caption,
.earn {
  text-align: left;
  text-shadow: 1px 1px 2px red, 0 0 1em blue, 0 0 0.2em blue;
  background-color: hsla(0, 0%, 0%, 0.5);
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  padding: 10px;
  margin-bottom: 10px;
  text-align: center;
  width: 100%;
}

th,
td {
  text-align: left;
  border: 1px solid var(--color-gray5);
}

th {
  color: var(--color-white);
}

td {
  text-overflow: ellipsis;
  overflow: hidden;
  background-color: rgba(0, 247, 255, 0.151);
  padding: 10px;
}

table a {
  left: 0;
  top: 0;
  padding: 10px;
  font-weight: bolder;
}

table a:focus-visible,
table a:hover {
  opacity: 0.5;
  font-weight: bolder;
  font-style: oblique;
  font-variant: small-caps;
  font-size: larger;
}

table.paleBlueRows td,
table.paleBlueRows th {
  padding: 3px 2px;
}

table.paleBlueRows tbody td {
  font-size: 13px;
}

table.paleBlueRows thead {
  background: #0b6fa4;
}

table.paleBlueRows thead th {
  font-size: 17px;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
}

table.paleBlueRows thead th:first-child {
  border-left: none;
}

table.paleBlueRows tfoot td {
  font-size: 14px;
  font-weight: bold;
  color: white;
  background: hsla(0, 0%, 15%, 0.5);
  width: 100%;
}

.about-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding-top: 3.5rem;
  padding-bottom: 5rem;
}
.about-container .right-about {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 2rem;
}
.about-container .right-about .about-item {
  border: 1px solid var(--color-gray5);
  border-radius: 5px;
  transition: all 0.4s ease-in-out;
  box-shadow: 1px 2px 15px rgba(0, 0, 0, 0.1);
}
.about-container .right-about .about-item:hover {
  cursor: default;
  transform: translateY(-5px);
  border: 1px solid var(--color-secondary);
  box-shadow: 1px 4px 15px rgba(0, 0, 0, 0.32);
}
.about-container .right-about .about-item .abt-text {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}
.about-container .right-about .about-item .abt-text .large-text {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-secondary);
}
.about-container .right-about .about-item .abt-text .small-text {
  padding-left: 3rem;
  position: relative;
  text-transform: uppercase;
  font-size: 1.2rem;
  color: var(--color-gray1);
  letter-spacing: 2px;
}
.about-container .right-about .about-item .abt-text .small-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 2rem;
  height: 2px;
  background: var(--color-gray5);
}
.about-container .left-about {
  padding-right: 5rem;
}
.about-container .left-about p {
  line-height: 2rem;
  padding: 1rem;
  color: var(--color-gray1);
}
.about-container .left-about h4 {
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--color-gray4);
}

.about-stats {
  padding-bottom: 4rem;
}
.about-stats .progress-bars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 2rem;
  background: rgba(0, 0, 0, 0.05);
  padding: 40px;
  box-shadow: 0 0 20px 5px rgb(255, 255, 255);
  color: var(--text-main);
}
.about-stats .progress-bars .progress-bar {
  display: flex;
  flex-direction: column;
}
.about-stats .progress-bars .progress-bar .prog-title {
  text-transform: uppercase;
  font-weight: 500;
}
.about-stats .progress-bars .progress-bar .progress-con {
  display: flex;
  align-items: center;
}
.about-stats .progress-bars .progress-bar .progress-con .prog-text {
  color: var(--color-gray2);
}
.about-stats .progress-bars .progress-bar .progress-con .progress {
  width: 100%;
  height: 0.45rem;
  background: var(--color-gray4);
  margin-left: 1rem;
  position: relative;
}
.about-stats .progress-bars .progress-bar .progress-con .progress span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--color-secondary);
  transition: 4s ease-in-out;
  width: 60%;
}
.about-stats .progress-bars .progress-bar .progress-con .progress .html {
  width: 75%;
}
.about-stats .progress-bars .progress-bar .progress-con .progress .css {
  width: 75%;
}
.about-stats .progress-bars .progress-bar .progress-con .progress .scssless {
  width: 20%;
}
.about-stats .progress-bars .progress-bar .progress-con .progress .javascript {
  width: 40%;
}
.about-stats .progress-bars .progress-bar .progress-con .progress .php {
  width: 10%;
}
.about-stats .progress-bars .progress-bar .progress-con .progress .python {
  width: 20%;
}
.about-stats .progress-bars .progress-bar .progress-con .progress .django {
  width: 8%;
}
.about-stats .progress-bars .progress-bar .progress-con .progress .git {
  width: 20%;
}
.about-stats .progress-bars .progress-bar .progress-con .progress .typescript {
  width: 4%;
}
.about-stats .progress-bars .progress-bar .progress-con .progress .cplus {
  width: 4%;
}
.about-stats .progress-bars .progress-bar .progress-con .progress .csharp {
  width: 4%;
}
.about-stats .progress-bars .progress-bar .progress-con .progress .java {
  width: 2%;
}
.about-stats .progress-bars .progress-bar .progress-con .progress .mysql {
  width: 4%;
}
.about-stats .progress-bars .progress-bar .progress-con .progress .graph {
  width: 1%;
}
.about-stats .progress-bars .progress-bar .progress-con .progress .batchshell {
  width: 20%;
}

.stat-title {
  text-transform: uppercase;
  font-size: 1.4rem;
  text-align: center;
  padding: 3.5rem 0;
  position: relative;
  color: var(--color-secondary);
}
.stat-title::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 40%;
  height: 1px;
  background: var(--color-gray5);
  transform: translateY(-50%);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 2rem;
  padding-bottom: 3rem;
}
.timeline .timeline-item {
  position: relative;
  padding-left: 3rem;
  border-left: 1px solid var(--color-gray2);
}
.timeline .timeline-item .tl-icon {
  position: absolute;
  left: -27px;
  top: 0;
  background: var(--color-secondary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline .timeline-item .tl-icon i {
  font-size: 1.3rem;
}
.timeline .timeline-item .tl-duration {
  padding: 0.2rem 0.6rem;
  background: #2a2e35;
  border-radius: 15px;
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 500;
}
.timeline .timeline-item h5 {
  padding: 1rem 0;
  text-transform: uppercase;
  font-size: 1.3rem;
  font-weight: 600;
}
.timeline .timeline-item h5 span {
  color: var(--color-gray2);
  font-weight: 500;
  font-size: 1.2rem;
}
.timeline .timeline-item p {
  color: var(--color-gray2);
}

.port-text {
  padding: 2rem 0;
  text-align: center;
}

.portfolios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2rem;
  margin-top: 3rem;
}
.portfolios .portfolio-item {
  position: relative;
  border-radius: 15px;
  box-shadow: 5px 5px 5px 0;
}
.portfolios .portfolio-item img {
  image-rendering: auto;
  image-rendering: crisp-edges;
  image-rendering: pixelated;
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
  -o-object-position: center;
     object-position: center;
}
.portfolios .portfolio-item .hover-items {
  width: 100%;
  height: 100%;
  background: var(--color-secondary);
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}
.portfolios .portfolio-item .hover-items h3 {
  font-size: 1.5rem;
  color: var(--color-white);
  margin-bottom: 1.5rem;
}
.portfolios .portfolio-item .hover-items .icons {
  display: flex;
  justify-content: center;
  align-items: center;
}
.portfolios .portfolio-item .hover-items .icons .icon {
  background: var(--color-primary);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 1rem;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
.portfolios .portfolio-item .hover-items .icons .icon i {
  font-size: 1.5rem;
  color: var(--color-white);
  margin: 0 1rem;
}
.portfolios .portfolio-item .hover-items .icons .icon:hover {
  background: var(--color-white);
}
.portfolios .portfolio-item .hover-items .icons .icon:hover i {
  color: var(--color-primary);
}

.portfolio-item:hover .hover-items {
  opacity: 1;
  transform: scale(1);
}

.blogs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2rem;
  margin-top: 3rem;
}
.blogs .blog {
  position: relative;
  background: var(--color-gray5);
  border-radius: 5px;
  box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease-in-out;
}
.blogs .blog:hover {
  box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(-5px);
  transition: all 0.4s ease-in-out;
}
.blogs .blog:hover img {
  filter: grayscale(0);
  transform: scale(1.1);
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.8);
}
.blogs .blog img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  filter: grayscale(100%);
  transition: all 0.4s ease-in-out;
}
.blogs .blog .blog-text {
  margin-top: -10px;
  padding: 1.1rem;
  border-top: 8px solid var(--color-secondary);
}
.blogs .blog .blog-text h4 {
  text-transform: uppercase;
  font-size: 1.5rem;
  margin-bottom: 0.7rem;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}
.blogs .blog .blog-text h4:hover {
  color: var(--color-secondary);
}
.blogs .blog .blog-text p {
  color: var(--color-gray2);
  line-height: 2rem;
  padding-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: bold;
}

.contact-content-con {
  display: flex;
  padding-top: 3.5rem;
  justify-content: space-between;
}
.contact-content-con .left-contact {
  margin: 0 20px;
  color: var(--text-main);
}
.contact-content-con .left-contact h4 {
  margin-top: 1rem;
  font-size: 2rem;
  text-transform: uppercase;
}
.contact-content-con .left-contact p {
  margin: 1rem 0;
}
.contact-content-con .left-contact .contact-info .contact-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact-content-con .left-contact .contact-info .contact-item p {
  margin: 0.3rem 0;
  text-align: right;
  font-size: 1rem;
  letter-spacing: 0.5px;
}
.contact-content-con .left-contact .contact-info .contact-item .icon {
  display: grid;
  grid-template-columns: 40px 1fr;
}
.contact-content-con .left-contact .contact-info .contact-item .icon i {
  display: flex;
  align-items: center;
  font-size: 1.3rem;
}
.contact-content-con .contact-icon {
  display: flex;
  margin-top: 2rem;
}
.contact-content-con .contact-icon a {
  display: flex;
  align-items: center;
  color: var(--color-white);
  background: var(--color-gray2);
  cursor: pointer;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0.4rem;
  transition: all 0.4s ease-in-out;
}
.contact-content-con .contact-icon a:hover {
  background: var(--color-secondary);
}
.contact-content-con .contact-icon a:hover i {
  color: var(--color-primary);
}
.contact-content-con .contact-icon a i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.contact-content-con .right-contact {
  box-shadow: 0 0 5px 0;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  margin-left: 3rem;
}
.contact-content-con .right-contact .input-control {
  display: grid;
  align-items: center;
  padding: 50px;
  margin: auto;
}
.contact-content-con .right-contact .input-control input,
.contact-content-con .right-contact .input-control textarea {
  padding: 16px;
  border-radius: 10px;
  font-weight: inherit;
  font-size: 0.9rem;
  font-family: inherit;
  background: var(--color-gray5);
  color: var(--color-white);
  resize: vertical;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  line-clamp: 4;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.contact-content-con .right-contact .input-control input:valid,
.contact-content-con .right-contact .input-control textarea:valid {
  border: 2px solid lime;
}
.contact-content-con .right-contact .input-control input:invalid,
.contact-content-con .right-contact .input-control textarea:invalid {
  border: 2px dashed red;
}
.contact-content-con .right-contact .input-control textarea:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.contact-content-con .right-contact .submit-btn {
  display: flex;
  justify-content: space-around;
}

.btn-con {
  display: flex;
  align-self: flex-start;
  border: solid 1px #000;
  border-radius: 10px;
  padding: 10px;
}
.btn-con:hover {
  background: var(--color-gray4);
  transition: all 0.4s ease-out;
}
.btn-con .btn-icon {
  color: var(--color-secondary);
}

.sub-btn {
  border-radius: 30px;
  color: inherit;
  font-weight: 600;
  position: relative;
  margin: 20px auto;
  background: var(--color-gray2);
  border: 1px solid var(--color-secondary);
  display: flex;
  justify-content: space-around;
  overflow: hidden;
}
.sub-btn .btn-text {
  display: flex;
  padding: 0.5rem 3rem;
  text-align: center;
  color: var(--text-main);
}
.sub-btn:hover {
  background: var(--color-gray4);
  transition: all 0.4s ease-out;
}

.show-storage-access {
  position: absolute;
  bottom: 0;
}

.main-btn {
  border-radius: 30px;
  color: inherit;
  font-weight: 600;
  position: relative;
  border: 1px solid var(--color-secondary);
  display: flex;
  align-self: flex-start;
  margin: 0 0 40px 0;
  align-items: center;
  overflow: hidden;
  max-width: 225px;
}
.main-btn .btn-text {
  display: flex;
  align-items: center;
  text-align: center;
  padding: 0 2rem;
  color: var(--text-main);
}
.main-btn .btn-icon {
  background: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 1rem;
}
.main-btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(100%);
  transition: all 0.4s ease-out;
  z-index: -1;
}
.main-btn:hover::before {
  width: 100%;
  height: 100%;
  background: var(--color-secondary);
  transform: translateX(0);
  transition: all 0.4s ease-out;
}

h1 {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-muted);
  border-left: 1px solid var(--color-gray2);
  padding-left: 12px;
}

.main-title {
  text-align: center;
}
.main-title h2 {
  position: relative;
  text-transform: uppercase;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 100px;
  color: var(--text-main);
}
.main-title h2 span {
  color: var(--color-secondary);
}
.main-title h2 .bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  color: var(--color-gray5);
  transition: all 0.4s ease-in-out;
  z-index: -1;
  transform: translate(-50%, -50%);
  font-weight: 800;
  font-size: 6.3rem;
}

#na {
  text-shadow: 2px 2px 0 #4074b5, 2px -2px 0 #4074b5, -2px 2px 0 #4074b5, -2px -2px 0 #4074b5, 2px 0px 0 #4074b5, 0px 2px 0 #4074b5, -2px 0px 0 #4074b5, 0px -2px 0 #4074b5, 22px -27px 12px rgba(206, 89, 55, 0.93);
}

.earn {
  -moz-columns: 3;
       columns: 3;
}
.earn a:hover {
  font-weight: bolder;
  font-style: oblique;
  font-variant: small-caps;
  text-transform: none;
}

.dip-container {
  font-family: "Inter", sans-serif;
  max-width: 600px;
}

.dip-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-main);
  border-left: 4px solid var(--primary);
  padding-left: 12px;
}

.dip-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dip-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.dip-card:hover {
  transform: translateX(8px);
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.platform {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.course-name {
  margin: 0;
  font-weight: 600;
  color: var(--text-main);
  font-size: 1rem;
}

.status-badge {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
}

.completed .status-badge {
  background: #ecfdf5;
  color: var(--accent);
}

.pending {
  opacity: 0.7;
  border-style: dashed;
}

.pending .status-badge {
  background: #f1f5f9;
  color: var(--text-muted);
}

#blink {
  animation: blink 1s linear infinite;
}

@keyframes blink {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.25;
  }
  50% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}
.Information {
  height: 300px;
}

form {
  overflow: auto;
}

.yxcv {
  display: flex;
  justify-content: space-around;
  overflow: hidden;
  flex-direction: column;
  padding-top: 9rem;
}

.asdf {
  position: relative;
  margin-top: 3rem;
  gap: 2rem;
  margin: 2rem auto;
  justify-content: space-around;
  display: flex;
  flex: 1 1 50%;
  display: flex;
  overflow: hidden;
  margin: 2rem auto;
  mask: linear-gradient(transparent, #ffffff 10%, #ffffff 90%, transparent 100%);
  -webkit-mask: linear-gradient(transparent, #ffffff 10%, #ffffff 90%, transparent 100%);
}

.asdf.animated {
  flex-wrap: nowrap;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
  animation: scroll 40s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.color-container {
  border-color: var(--text-muted);
  background: var(--primary);
}

.details-container {
  align-items: center;
  justify-content: center;
  padding: 3rem;
  display: grid;
  align-items: center;
  flex: 1;
  background: var(--color-gray5);
  border-radius: 2rem;
  border: var(--text-muted) 0.1rem solid;
  border-color: var(--text-muted);
  text-align: center;
  box-shadow: 5px 5px var(--text-muted);
  mask: linear-gradient(transparent, #ffffff 25%, #ffffff 75%, rgba(255, 255, 255, 0) 100%);
  -webkit-mask: linear-gradient(transparent, #ffffff 25%, #ffffff 75%, rgba(255, 255, 255, 0) 100%);
  border-color: var(--text-muted);
  background: var(--color-gray5);
}

.project-img {
  box-shadow: 2px 2px var(--text-muted);
  border-radius: 1.5rem;
  max-width: 300px;
  height: 200px;
  vertical-align: middle;
  shape-margin: 0.8rem;
}

.project-img:hover {
  transform: translateX(2%);
  transform: translateY(1%);
}

.experience-sub-title {
  color: var(--text-main);
  font-weight: 600;
  font-size: 1.75rem;
  margin-bottom: 2rem;
}

.btn-container {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.article-container {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  /* text-align: initial; */
  flex-wrap: wrap;
  flex-direction: row;
  gap: 2rem;
  justify-content: space-around;
}

.btn {
  font-weight: 600;
  transition: all 300ms ease;
  padding: 1rem;
  width: 8rem;
  border-radius: 2rem;
}

.project-btn {
  color: var(--text-main);
  background-color: var(--color-gray5);
  border-color: var(--text-muted);
}

#theme:active,
.btn-color-1:active,
.btn-color-2:active {
  background-color: var(--color-gray5);
  outline: white solid 2px;
}

#theme:hover,
.btn-color-1:hover,
.btn-color-2:hover {
  background-color: var(--color-gray5);
  color: var(--text-main);
  opacity: 0.9;
}

#theme:focus,
.btn-color-1:focus,
.btn-color-2:focus {
  outline: red solid 2px;
  background-color: var(--color-gray5);
  opacity: 0.9;
}

.btn-color-1,
.btn-color-2 {
  border: solid;
}

.btn-color-1:hover,
.btn-color-2:hover {
  cursor: pointer;
}

.btn-color-1,
.btn-color-2:hover {
  background: var(--text-muted);
  color: var(--text-main);
}

@media screen and (max-width: 1432px) {
  header {
    padding: 0 !important;
  }
  .contact-content-con {
    flex-direction: column;
  }
  .contact-content-con .right-contact {
    margin-left: 0;
    margin-top: 2.5rem;
  }
  .contact-content-con .right-contact .i-c-2 {
    flex-direction: column;
  }
  .contact-content-con .right-contact .i-c-2 :last-child {
    margin-left: 0;
    margin-top: 1.5rem;
  }
}
@media screen and (max-width: 1070px) {
  .about-container {
    grid-template-columns: 1fr;
  }
  .about-container .right-about {
    padding-top: 2.5rem;
  }
  .portfolios {
    grid-template-columns: 1fr 1fr;
  }
  .blogs {
    grid-template-columns: 1fr 1fr;
  }
  .main-title h2 {
    font-size: 4rem;
  }
  .main-title h2 span {
    font-size: 4rem;
  }
  .main-title h2 .bg-text {
    font-size: 3rem;
  }
  .earn {
    -moz-columns: 3;
         columns: 3;
  }
}
@media screen and (max-width: 970px) {
  .about-container {
    grid-template-columns: 1fr;
  }
  .about-container .right-about {
    grid-template-columns: 1fr;
    padding-top: 2.5rem;
  }
  .about-container .left-about {
    padding-right: 0;
  }
  .about-container .left-about p {
    padding-left: 0;
  }
  .about-stats .progress-bars,
  .timeline,
  .blogs {
    grid-template-columns: 1fr;
    overflow: auto;
  }
  .timeline,
  .portfolios {
    grid-template-columns: 1fr;
    padding-bottom: 6rem;
  }
  .main-title h2 {
    font-size: 2rem;
  }
  .main-title h2 span {
    font-size: 2.5rem;
  }
  .main-title h2 .bg-text {
    font-size: 3rem;
  }
  input,
  textarea {
    padding: 16px;
    border-radius: 10px;
    font-weight: inherit;
    font-size: 0.9rem;
    font-family: inherit;
    background: var(--color-gray5);
    color: var(--color-white);
    width: auto;
  }
  section {
    padding: 0 1.5rem;
  }
}/*# sourceMappingURL=styles.css.map */