/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* End CSS Reset */

/* font */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  word-wrap: break-word;
  background-color: var(--page-bg);
}

a {
  color: var(--blue-color);

  text-decoration: none;
}

a:hover {
  color: var(--blue-color);
}

:root {
  /* --orange-color: #F15A24; */
  /* --brown-color:rgb(137, 117, 78); */
  --blue-color: rgb(78, 97, 137);
  --page-bg: rgb(208, 211, 218);
  --text-color: rgb(0, 0, 0);
  --hamburger-bg-switch: blue;
  --hamburger-color: #fff;
  --toggle-icon: #fff;
  --button-bg: black;
  --button-bg-hover: #fff;
  --gray-color: #888;
}

.dark-mode {
  /* --orange-color: #F15A24; */
  --blue-color: rgb(50, 61, 90);
  --page-bg: rgb(0, 0, 0);
  --text-color: rgb(255, 250, 250);
  --hamburger-bg-switch: #fff;
  --hamburger-color: #000;
  --toggle-icon: #000;
  --button-bg: #fff;
  --button-bg-hover: #000;
  --gray-color: #5a5a5a;
}

/* Header styles */

nav {
  position: sticky;
  z-index: 100;
  top: 0;
  background-color: var(--button-bg);
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: max-content;
  padding: 30px 0;
}

.nav-identity {
  font-size: 30px;
  font-weight: 700;
  color: var(--text-color);
}

.header-right {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 600;
}

#navi-menu {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-left a,
.header-right a {
  text-decoration: none;
  /* color: var(--text-color); */
}

.header-right ul {
  display: flex;
}

.header-right ul li {
  margin: 0 20px;
}
li a {
  position: relative;
  color: var(--blue-color);
  text-decoration: none;
}
/* here  */
li a:hover {
  color: rgb(255, 255, 255);
}

li a::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--text-color);
  transform: scaleX(0);
  transform-origin: top left;
  transition: transform 0.3s ease;
}

li a:hover::before {
  transform: scaleX(1);
}

.head-btn {
  width: 110px;
  height: 40px;
  border-radius: 20px;
  font-weight: 600;
  color: var(--button-bg-hover);
  background-color: var(--button-bg);
  border: 2px solid var(--text-color);
  transition: all 0.5s ease;
}

.head-btn:hover {
  background-color: var(--button-bg-hover);
  color: var(--button-bg);
  border-color: var(--orange-color);
}

/* Dark Mode toggle  */

.form-check-input {
  cursor: pointer;
  transform: rotate(90deg);
}

.form-check-input {
  box-shadow: 0px 0px 2px 4px rgba(0, 4, 255, 0.61);
  -webkit-box-shadow: 0px 0px 2px 4px rgba(0, 42, 253, 0.61);
  -moz-box-shadow: 0px 0px 2px 4px rgba(0, 55, 255, 0.61);
}

.form-switch .form-check-input {
  background-image: url(/media/moon-solid.svg) !important;
  background-position: left 2px center !important;
  background-size: 35%;
  height: 30px;
  width: 40px;
  border: 3px solid var(--blue-color);
  transition: all 0.6s ease-in-out;
}

.form-switch .form-check-input:checked {
  background-image: url(/media/sun-solid.svg) !important;
  background-size: 45%;
  background-position: right 4px center !important;
  background-color: #000;
  height: 30px;
  width: 40px;
  border: 3px solid var(--blue-color);
  transition: all 0.6s ease-in-out;
}

/* Mobile Menu styles */

.mobile-menu {
  cursor: pointer;
  transition: all 1s ease-in-out;
  direction: rtl;
  display: none;
  margin-top: 5px;
}

.hamburger-menu {
  background-color: var(--hamburger-color);
  left: 0;
  height: 3px;
  border-radius: 8px;
  margin-bottom: 5px;
  transition: 0.4s;
}

/* Middle  */
.hamburger-menu:nth-child(2) {
  padding-right: 0;
  width: 30px;
}

/* Top */
.hamburger-menu:nth-child(1) {
  width: 30px;
}

/* Bottom */
.hamburger-menu:nth-child(3) {
  width: 30px;
}
/* header responsive styles */

@media screen and (max-width: 1000px) {
  .header {
    display: flex;
    justify-content: space-around;
    height: max-content;
    padding: 30px 0;
  }

  .mobile-menu {
    display: block;
  }

  .nav-items {
    flex-direction: column;
    margin-bottom: 30px;
  }

  .list-items {
    padding-bottom: 40px;
  }

  #navi-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    right: -50%;
    width: 50%;
    height: 100vh;
    color: var(--text-color);
    background-color: var(--hamburger-bg-switch);
    transition: all 0.1s ease-in-out;
  }

  .hide {
    display: none;
  }

  #navi-menu.active {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    right: 0;
    width: 60%;
    height: 100vh;
    color: var(--text-color);
    background-color: var(--hamburger-bg-switch);
    overflow-x: hidden;
  }

  .top {
    top: 10px;
    position: relative;
    width: 35px;
    transform: rotate(-45deg);
  }

  .middle {
    position: relative;
    background-color: transparent;
    translate: 300%;
  }

  .bottom {
    top: -5px;
    width: 35px;
    position: relative;
    transform: rotate(45deg);
  }

  .form-switch .form-check-input {
    margin-right: 10px;
  }

  .form-check-input {
    transform: none;
  }

  .form-switch .form-check-input {
    height: 30px;
    width: 45px;
  }

  .form-switch .form-check-input:checked {
    height: 30px;
    width: 45px;
  }
}

/* Hero Section */

#home {
  height: max-content;
  padding: 70px 0;
}

#hero-left {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-bg {
  border-radius: 50%;
  background-color: var(--blue-color);

  height: 250px;
  width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img {
  height: 280px;
  padding: 25px;
}

#hero-right {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}

.hero-header-1 {
  color: var(--text-color);
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
  transition: all 1s ease-in-out;
}

.hero-parag {
  color: var(--gray-color);
  font-size: 17px;
  padding-top: 10px;
  width: 80%;
}

u {
  box-shadow: inset 0 -0.5em 0 var(--blue-color);
  text-decoration: none;
  transition: box-shadow 0.3s ease-out;
}

u:hover {
  box-shadow: inset 0 -1em 0 var(--blue-color);
}

.hero-wave-img {
  width: 2rem;
}

#cont-btns {
  margin-top: 15px;
}

.cont-btn {
  width: 130px;
  height: 40px;
  border-radius: 20px;
  font-weight: 600;
  color: var(--button-bg-hover);
  background-color: var(--button-bg);
  border: 2px solid var(--text-color);
  transition: all 0.7s ease;
}

.cont-btn:hover {
  background-color: var(--button-bg-hover);
  color: var(--button-bg);
}

.cont-btn .fa-brands,
.cont-btn .fa-solid {
  margin-right: 3px;
}

#scrolldown {
  color: var(--text-color);
}

/* hero responsive styles */
@media screen and (min-width: 770px) and (max-width: 1000px) {
  .hero-header-1 {
    font-size: 35px;
  }
}

@media screen and (max-width: 770px) {
  .col-md-6 {
    flex: 0 0 auto;
    width: 100%;
  }

  #hero-right {
    margin-top: 50px;
  }

  .hero-header-1 {
    font-size: 30px;
    font-weight: 600;
  }

  .hero-parag {
    text-align: center;
    width: 85%;
    margin-bottom: 10px;
    font-size: 15px;
    overflow: hidden;
  }

  #hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .cont-btn {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 700px) {
  .hero-header-2 {
    font-size: 20px;
    font-weight: 600;
  }

  #cont-btns {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #hero-right {
    align-items: center;
  }

  /* #scroller {
        display: flex;
        justify-content: center;
        margin-top: 10px;
    } */
}
/* About Section */

#about {
  height: max-content;
  padding: 120px 0;
}

#about-row-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 30px;
  margin-bottom: 30px;
}
.heading-h2 {
  color: var(--text-color);
  font-size: 35px;
  font-weight: 700;
}

.heading-h3 {
  color: var(--text-color);
  margin-top: 35px;
  font-size: 20px;
  font-weight: 600;
}

.paragraph-text {
  margin-top: 15px;
  color: var(--text-color);
  font-size: 17px;
  line-height: 2;
  text-align: justify;
}

.link-text {
  color: var(--blue-color);
  text-decoration: underline;
  text-decoration-color: var(--blue-color);
  transition: all 0.4s ease-in-out;
}

.link-text:hover {
  color: var(--text-color);
  text-decoration: underline;
  text-decoration-color: var(--blue-color);
}

.about-hr {
  color: var(--text-color);
  width: 70%;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 30px;
  transition: all 1s ease-in-out;
}

#about-row-right {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.about-image {
  object-fit: cover;
  width: 450px;
  border-radius: 30px;
  border-bottom: 5px solid var(--blue-color);
  border-right: 10px solid var(--blue-color);
  transition: all 1s ease-in-out;
}

@media screen and (max-width: 1000px) {
  .about-hr {
    margin: auto;
    margin-top: 20px;
  }

  #about-row-right {
    margin-top: 50px;
  }

  .heading-h2 {
    color: var(--text-color);
    font-size: 30px;
    font-weight: 700;
  }

  .about-image {
    object-fit: cover;
    width: 350px;
    border-radius: 30px;
    border-bottom: 5px solid var(--blue-color);
    border-right: 10px solid var(--blue-color);
  }
}

@media screen and (max-width: 400px) {
  .about-image {
    object-fit: cover;
    width: 250px;
    border-radius: 30px;
    border-bottom: 5px solid var(--blue-color);
    border-right: 10px solid var(--blue-color);
  }
}

/* Skills Styles */
#skills {
  height: max-content;
  padding: 100px 0;
}

#skill-btns {
  margin-top: 15px;
  margin-bottom: 20px;
}

.skill-btn {
  width: max-content;
  padding: 10px 10px;
  height: 40px;
  border-radius: 20px;
  font-weight: 600;
  color: var(--button-bg-hover);
  background-color: var(--button-bg);
  border: 2px solid var(--text-color);
  transition: all 0.5s ease;
}

.skill-btn:hover {
  background-color: var(--button-bg-hover);
  color: var(--button-bg);
}

.skill-btn .fa-brands,
.cont-btn .fa-solid {
  margin-right: 3px;
}

/* Change color of svg on hover from white to black */
.skill-btn:hover > .skill-svg {
  filter: brightness(0.1);
}

@media screen and (max-width: 800px) {
  #skills-cont {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 20px;
  }

  .skill-btn {
    margin-top: 10px;
  }
}

@media screen and (max-width: 700px) {
  #skills {
    margin: 0 20px;
  }
}

/* experience section */

.experience-heading {
  color: var(--text-color);
  margin-top: 30px;
  font-weight: 700;
  font-size: 22px;
}
.experience-description {
  color: var(--text-color);
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 16px;
}

.experience-row {
  display: flex;
}

.experience-left {
  margin-top: 30px;
}
.div-container {
  display: flex;
  gap: 30px; /* Optional spacing between items */
  align-items: flex-start;
}

.webexperience,
.programing-contest{
  flex: 1; /* Make them share available space equally */
  padding: 20px;
  background-color: rgb(201, 205, 214);
  margin: 10px;
  box-sizing: border-box;
  border-radius: 17px;
}
.contest-img{
    margin-left: 50px;
}
.introduction-img{
    margin-left: 50px;
}
.essentials-img{
    margin-left: 50px;
}
@media screen and (max-width: 779px) {
  #experience {
    padding: 30px;
  }
}
/* experience section end */

/* Project Section */
#projects {
  height: max-content;
  padding: 100px 0;
  margin: 0 20px;
}

#proj-row-id {
  margin-top: 20px;
}

.port-card {
  width: 400px;
  height: max-content;
  margin-top: 30px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: center;
  border-radius: 5px;
  border: 2px solid var(--blue-color);
  transition: all 0.3s ease-in-out;
}

.port-card:hover {
  border: 2px solid var(--text-color);
}

.port-img {
  width: 350px;
  height: 160px;
  transition: all 0.3s ease-in-out;
}

.card-heading {
  color: var(--text-color);
  margin-top: 20px;
  font-weight: 700;
  font-size: 22px;
}

.description {
  color: var(--gray-color);
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.3;
}

.tags {
  display: flex;
  width: 80%;
  gap: 10px;
}

.tag-para {
  margin-top: 10px;
  font-size: 10px;
  font-weight: 600;
  padding: 5px;
  border: 1px solid var(--blue-color);
  color: var(--text-color);
}

.port-links {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

#load {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

#loadmore {
  width: 140px;
  height: 50px;
  color: #fff;
  font-weight: 500;
  border-radius: 5px;
  background-color: var(--blue-color);
  border: 1px solid var(--blue-color);
  transition: all 0.3s ease-in-out;
}

#loadmore:hover {
  background-color: var(--button-bg);
  color: var(--text-color);
}

#seemore {
  width: 140px;
  height: 50px;
  color: #fff;
  font-weight: 500;
  border-radius: 5px;
  background-color: var(--blue-color);
  border: 1px solid var(--blue-color);
  transition: all 0.3s ease-in-out;
}

#seemore:hover {
  background-color: var(--button-bg);
  color: var(--text-color);
}

#more-section {
  display: none;
}

/* responsive card styles */

@media screen and (min-width: 1200px) and (max-width: 1400px) {
  .port-img {
    width: 300px;
  }
  .port-card {
    width: 350px;
  }
}

@media screen and (min-width: 780px) and (max-width: 1200px) {
  .port-img {
    width: 250px;
    height: auto;
  }

  .port-card {
    width: 300px;
  }
}

@media screen and (max-width: 779px) {
  .port-card {
    margin: 20px 0;
    width: 350px;
  }

  .port-img {
    width: 300px;
    height: auto;
  }

  #projects-cont,
  #card-col {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 540px) {
  .port-card {
    width: 290px;
  }

  .port-img {
    width: 250px;
  }
}

@media screen and (max-width: 400px) {
  .port-card {
    width: 270px;
  }

  .port-img {
    width: 230px;
  }
}

@media screen and (max-width: 320px) {
  .port-card {
    width: 270px;
  }

  .port-img {
    width: 230px;
  }
}

@media screen and (max-width: 290px) {
  .port-img {
    width: 200px;
  }

  .port-card {
    width: 240px;
  }
}

/* Contact Section */
#contact {
  height: max-content;
  padding: 70px 0;
  display: flex;
  margin: 0 20px;
}

.contact-buttons {
  margin-top: 30px;
}

.heading-h3 a {
  text-decoration: underline;
}

input[type="text"] {
  height: 50px;
  color: var(--text-color);
  margin-top: 20px;
  padding: 0 10px;
  width: 600px;
  background: transparent;
  border: 1px solid #888;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

input[type="email"] {
  height: 50px;
  color: var(--text-color);
  background: transparent;
  margin-top: 20px;
  padding: 0 10px;
  margin-bottom: 20px;
  width: 600px;
  border: 1px solid #888;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

input[type="textarea"] {
  padding: 0 10px;
  height: 150px;
  color: var(--text-color);
  width: 600px;
  background: transparent;
  border: 1px solid #888;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

button[type="submit"] {
  background-color: var(--blue-color);
  color: #fff;
  padding: 15px 25px;
  border-radius: 5px;
  margin-top: 20px;
  margin-left: 0;
  border: 2px solid var(--blue-color);
  transition: all 0.3s ease-in-out;
}

button[type="submit"]:hover {
  background-color: var(--button-bg);
  color: var(--text-color);
}

@media screen and (max-width: 800px) {
  input[type="text"] {
    height: 50px;
    color: var(--text-color);
    margin-top: 20px;
    padding: 0 10px;
    width: 400px;
    background: transparent;
    border: 1px solid #888;
    border-radius: 5px;
  }

  input[type="email"] {
    height: 50px;
    color: var(--text-color);
    background: transparent;
    margin-top: 20px;
    padding: 0 10px;
    margin-bottom: 20px;
    width: 400px;
    border: 1px solid #888;
    border-radius: 5px;
  }

  input[type="textarea"] {
    padding: 0 10px;
    height: 120px;
    color: var(--text-color);
    width: 400px;
    background: transparent;
    border: 1px solid #888;
    border-radius: 5px;
  }
}

@media screen and (max-width: 500px) {
  .heading-h3 {
    font-size: 15px;
  }

  input[type="text"] {
    height: 50px;
    color: var(--text-color);
    margin-top: 20px;
    padding: 0 10px;
    width: 290px;
    background: transparent;
    border: 1px solid #888;
    border-radius: 5px;
  }

  input[type="email"] {
    height: 50px;
    color: var(--text-color);
    background: transparent;
    margin-top: 20px;
    padding: 0 10px;
    margin-bottom: 20px;
    width: 290px;
    border: 1px solid #888;
    border-radius: 5px;
  }

  input[type="textarea"] {
    padding: 0 10px;
    height: 120px;
    color: var(--text-color);
    width: 290px;
    background: transparent;
    border: 1px solid #888;
    border-radius: 5px;
  }
}

@media screen and (max-width: 350px) {
  input[type="text"] {
    height: 50px;
    color: var(--text-color);
    margin-top: 20px;
    padding: 0 10px;
    width: 260px;
    background: transparent;
    border: 1px solid #888;
    border-radius: 5px;
  }

  input[type="email"] {
    height: 50px;
    color: var(--text-color);
    background: transparent;
    margin-top: 20px;
    padding: 0 10px;
    margin-bottom: 20px;
    width: 260px;
    border: 1px solid #888;
    border-radius: 5px;
  }

  input[type="textarea"] {
    padding: 0 10px;
    height: 120px;
    color: var(--text-color);
    width: 260px;
    background: transparent;
    border: 1px solid #888;
    border-radius: 5px;
  }
}

@media screen and (max-width: 290px) {
  input[type="text"] {
    height: 50px;
    color: var(--text-color);
    margin-top: 20px;
    padding: 0 10px;
    width: 200px;
    background: transparent;
    border: 1px solid #888;
    border-radius: 5px;
  }

  input[type="email"] {
    height: 50px;
    color: var(--text-color);
    background: transparent;
    margin-top: 20px;
    padding: 0 10px;
    margin-bottom: 20px;
    width: 200px;
    border: 1px solid #888;
    border-radius: 5px;
  }

  input[type="textarea"] {
    padding: 0 10px;
    height: 120px;
    color: var(--text-color);
    width: 200px;
    background: transparent;
    border: 1px solid #888;
    border-radius: 5px;
  }
}

/* Process Section */
#process {
  padding: 100px 0;
}

/* Development Process carousel styles */
#process-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 50px; /* increased spacing */
  overflow-x: auto;
  padding: 20px 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

#process-row::-webkit-scrollbar {
  display: none; /* hide scrollbar for WebKit */
}

#process-row > div {
  flex: 0 0 auto; /* keep each item’s natural width */
  scroll-snap-align: center;
}

/* Card sizing & interaction only within the Process section */
#process .port-card {
  width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.4s ease, background-color 0.4s ease;
  background-color: transparent;
  border-radius: 18px;
}

#process .port-card:hover {
  transform: scale(1.1);
  background-color: var(--blue-color);
}

#process .port-card:hover .card-heading,
#process .port-card:hover .description {
  color: #ffffff;
}

#process .card-heading {
  margin-top: 10px;
  margin-bottom: 8px;
}

#process .description {
  margin: 0;
}

/* Carousel indicators */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 15px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--blue-color);
  opacity: 0.3;
  transition: opacity 0.3s;
}

.carousel-dot.active {
  opacity: 1;
}

/* Footer Section */
#footer {
  height: max-content;
  padding: 50px 0;
}

#footer-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.socials {
  display: flex;
  gap: 20px;
}

/* back top button */
#btn-back-to-top {
  background-color: var(--blue-color);
  border-color: var(--text-color);
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
}

/* Success html */
#fullpage-section {
  height: 500px;
  display: flex;
  align-items: center;
}

#fullpagecol {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.heading-alert {
  font-size: 30px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 10px;
}

.backhome {
  margin-top: 10px;
  width: 110px;
  height: 50px;
  border-radius: 5px;
  color: #fff;
  background-color: var(--blue-color);
  border: 1px solid var(--blue-color);
  transition: all 0.3s ease-in-out;
}

.backhome:hover {
  background-color: var(--button-bg);
  color: var(--text-color);
}

/* failed html */

.heading-alert-fail {
  font-size: 30px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 10px;
}

.heading-alert-fail .fa-solid {
  color: red;
}

/* Resume html */

.resume-section {
  margin: 35px 0;
}

.resume-download-btn {
  background-color: var(--blue-color);
  color: #fff;
  width: 200px;
  padding: 15px 15px;
  border-radius: 5px;
  margin-top: 20px;
  margin-left: 0;
  border: 2px solid var(--blue-color);
  transition: all 0.3s ease-in-out;
}

.resume-download-btn:hover {
  background-color: var(--button-bg);
  color: var(--text-color);
}

.accent-header {
  font-size: 20px;
  color: var(--blue-color);
  margin: 20px 0;
}

.accent-desc {
  color: var(--blue-color);
  margin-bottom: 25px;
  font-size: 17px;
}

.paragraph-text-li {
  margin-top: 15px;
  color: var(--text-color);
  font-size: 15px;
  line-height: 1.5;
  text-align: justify;
}

ul > .paragraph-text-li {
  margin: 10px 30px;
  list-style: disc;
}

/* 404 */

.b404-back-btn {
  display: flex;
  justify-content: center;
}

.backhome-404 {
  text-align: center;
  margin-top: 10px;
  width: 200px;
  height: 50px;
  border-radius: 5px;
  color: #fff;
  background-color: var(--blue-color);
  border: 1px solid var(--blue-color);
  transition: all 0.3s ease-in-out;
}

.backhome-404:hover {
  background-color: var(--button-bg);
  color: var(--text-color);
}
