@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  list-style: none;
  scroll-behavior: smooth;
}

:root {
  --background-color: radial-gradient(
    circle at 70% 50%,
    rgb(141, 20, 101) 0%,
    rgb(177, 17, 218) 100%
  );
  --bg-color: #250821;
  --background-clr: linear-gradient(to bottom, #060b13, #173052);
  --text-color: #b6a9a9;
  --main-color: rgb(22, 184, 206);
  --color-text: #f5f5f5;
  --color-hover: #12f7ff;
  --color-background: #250821;
  --color-secondary-bg: #292e33;
  --font-size-large: 2.5rem;
  --font-size-medium: 1.7rem;
  --neon-shadow: 0 0 0.5rem #12f7ff;
  --big-font: 2.5rem;
  --normal-font: 2rem;
  --h2-font: 3rem;
  --hover-color: #12f7ff;
  --secon-bg-color: #292e33;
  --font-neon-text-shadow: 0 0 10px rgba(18, 247, 233, 0.3),
    0 0 20px rgba(18, 247, 255, 0.3), 0 0 30px rgba(18, 247, 255, 0.3),
    0 0 40px rgba(18, 247, 255, 0.3), 0 0 70px rgba(18, 247, 255, 0.3),
    0 0 80px rgba(18, 247, 255, 0.3), 0 0 100px rgba(18, 247, 255, 0.3),
    0 0 150px rgba(18, 247, 255, 0.3);
}
body {
  min-height: 100vh;
  position: relative;
  background: var(--bg-color);
  color: var(--text-color);
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  padding: 10px 20px;
  transition: all 0.5s ease-in-out;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.3);
  padding: 25px;
  border-bottom: 2px solid rgba(32, 6, 34, 0.979);
}
header.scrolled {
  background-color: var(--bg-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.header .main {
  display: flex;
  gap: 15px;
}

.header .main a {
  width: 132.4417px;
  justify-content: right;
  color: var(--text-color);
  font-size: 17px;
  font-weight: 600;
  transition: all 0.5s ease;
  text-decoration: none;
  margin-right: 70px;
}
.header .navbar a.active,
.header .main a.active {
  color: var(--hover-color);
}
.header .main .user .cm-icon {
  font-size: 22px;
}

.user {
  display: flex;
  align-items: center;
}

.user i {
  color: var(--main-color);
  font-size: 28px;
  margin-right: 7px;
}

.main a:hover {
  color: var(--main-color);
}

#menu-icon {
  font-size: 35px;
  color: var(--hover-color);
  cursor: pointer;
  z-index: 114;
  display: none;
}

#menu-icon.open {
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 90px;
}

.logo .main-icon {
  width: 0.7rem;
  height: 1.7rem;
  margin-right: 5px;
  background-color: var(--main-color);
  border-radius: 50px;
}

.logo span {
  color: var(--text-color);
  font-size: 1.7rem;
  font-weight: 800;
}
.logo:hover span {
  color: var(--color-hover);
  transition: all 0.5s ease-in-out;
}

/* Navbar container */
.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 1s ease-in;
}

/* Fade-in animation */
@keyframes fadeIn {
  from {
    transform: translateY(-10px); /* Start slightly above */
    opacity: 0; /* Start transparent */
  }
  to {
    transform: translateY(0); /* Move to the original position */
    opacity: 1;
  }
}

/* Navbar links */
.navbar a {
  position: relative;
  color: var(--text-color);
  font-weight: 500;
  padding: 10px 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  transform: translateX(0);
}

.navbar a:hover {
  color: var(--hover-color);
  text-shadow: 0 0 10px rgba(18, 247, 233, 0.6),
    0 0 20px rgba(18, 247, 255, 0.6), 0 0 30px rgba(18, 247, 255, 0.6),
    0 0 40px rgba(18, 247, 255, 0.6), 0 0 70px rgba(18, 247, 255, 0.6),
    0 0 80px rgba(18, 247, 255, 0.6), 0 0 100px rgba(18, 247, 255, 0.6),
    0 0 150px rgba(18, 247, 255, 0.6);
  transform: translateY(-5px); /* Slight lift effect */
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}

/* Underline effect for navbar links */
.navbar a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 4px;
  background-color: var(--hover-color);
  border-radius: 10px;
  transition: all 0.3s ease;
  opacity: 0;
}

.navbar a:hover::after {
  opacity: 1;
}

/* New */

@media (max-width: 600px) {
  body {
    min-width: auto;
  }
  header {
    padding: 10px;
    display: block;
  }
  .header .logo{
    margin-left: 80px;
  }
  .header .logo .text {
    font-size: 16px;
    text-align: center;
  }
  .header .main{
    justify-content: space-between;
  }
  
  .header .main a{
   margin-top: 10px;
    width: 50px;
  }
  .header .logo {
    justify-content: center;
    align-items: center;
  }
  .navbar a {
    font-size: 1rem;
    padding: 8px;
  }
  .about {
    padding-top: 100px;
  }
  .about .text {
    font-size: 1.5rem;
  }
}
@media (max-width: 1418px) {
  .navbar {
    position: absolute;
    top: 100%;
    right: -100%;
    width: auto;
    height: auto;
    border: 2px solid var(--hover-color);
    background: linear-gradient(to bottom, #060b13, #173052);
    color: var(--color-text);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    border-radius: 10px;
    transition: all 0.5s ease;
  }

  .navbar.open {
    right: 2%;
    width: 40%;
  }

  #menu-icon {
    display: block;
  }

  .navbar a {
    display: block;
    margin: 12px 0;
    padding: 0px 25px;
    color: var(--text-color);
    font-size: 15px;
    font-weight: 600;
    transition: all 0.5s ease;
  }
}

.about {
  width: 100%;
  padding-top: 150px;
  min-width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-content {
  max-width: 1377px;
  width: 100%;
  padding: 0px 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-direction: row;
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1s ease, transform 0.8s ease;
}

.about-content.visible {
  opacity: 1;
  transform: translateY(0);
}
/* End */

.column.left {
  text-align: left;
  max-width: 70%;
}

.column.right {
  order: 1;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
}

.column.right img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border: 2px solid var(--hover-color);
  border-radius: 50%;
  filter: drop-shadow(3px 9px 10px var(--hover-color));
  transition: all 0.3s ease-in-out;
  animation: border-pulse 2s infinite;
}

/* Keyframes for border animation */
@keyframes border-pulse {
  0% {
    border-width: 2px;
  }
  50% {
    border-width: 6px; /* Thicker border at 50% */
  }
  100% {
    border-width: 2px;
  }
}
.column.right img:hover {
  transform: scale(1.1);
  transition: all 1s ease;
}

.about .text {
  font-size: 2rem;
  font-weight: bold;
  color: var(--text-color);
}

.about .iAm {
  color: var(--hover-color);
}

.about p {
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 20px;
  color: var(--text-color);
}

.about .buttons {
  margin-top: 20px;
  display: flex;
  column-gap: 20px;
}

.about a {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--hover-color);
  color: var(--bg-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 500;
  transition: 0.3s;
  box-shadow: 2px 2px 7px var(--hover-color);
}

.about a:hover {
  background-color: var(--bg-color);
  box-shadow: 2px 2px 7px var(--hover-color);
  color: var(--hover-color);
  transform: translateY(10px);
}

.about .cm-button {
  color: var(--hover-color);
  font-weight: 600;
  background-color: transparent;
  outline: 2px solid var(--hover-color);
}

.about .cm-button:hover {
  font-weight: 500;
  color: var(--bg-color);
  background: var(--hover-color);
  outline: none;
}

.nav-touch-close {
  position: fixed;
  display: none;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  cursor: pointer;
  z-index: 100;
}

.nav-touch-close-open {
  display: block;
}

.nav-LR-TC {
  background: transparent;
  backdrop-filter: none;
}

@media (max-width: 1200px) {
  header {
    padding: 14px 2%;
    transition: 0.2s;
    justify-content: space-between;
  }

  .navbar a {
    padding: 5px 0;
    margin: 0px 20px;
  }
}

@media (max-width: 1270px) {
  .about-content {
    display: block;
    padding: 0px;
    /* top: 100px; */
    max-width: 100%;
    height: 100%;
  }

  .about-content .column.left {
    max-width: 100%;
    margin-left: 20px;
    margin-right: 20px;
    padding: 0px;
    text-align: center;
  }

  .about-content .column.left .text {
    margin-top: 20px;
    font-size: 1.8rem;
  }

  .about-content .column.left p {
    margin: 0px;
    font-size: 1.1rem;
    margin-top: 10px;
  }

  .about .about-content .buttons {
    display: block;
    margin: 0px;
  }
  .about .about-content .social-icons {
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-top: 40px;
    gap: 0;
  }

  .about-content .column.left a {
    margin: 0px;
    margin-top: 20px;
    margin-right: 10px;
    margin-left: 10px;
  }

  .about-content .column.right {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .about-content .column.right img {
    margin: 0px;
  }
}

@media (max-width: 1100px) {
  .main .main-items {
    margin-right: 12px;
  }

  .main .menu-icon-container {
    position: relative;
    margin-right: 5px;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    border: 2px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 113;
  }

  .header .main a {
    width: 132.6px;
  }

  #menu-icon {
    display: block;
  }

  .navbar {
    position: absolute;
    top: 100%;
    right: -100%;
    width: auto;
    height: auto;
    border: 2px solid var(--hover-color);
    box-shadow: -1px 1px 10px var(--hover-color);
    background: linear-gradient(to bottom, #060b13, #173052);
    color: var(--color-text);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    border-radius: 10px;
    transition: all 0.5s ease;
  }

  .navbar a {
    display: block;
    margin: 12px 0;
    padding: 0px 25px;
    transition: all 0.5s ease;
    color: var(--color-text);
    font-size: 15px;
    font-weight: 600;
  }

  .navbar a:before,
  .navbar a:after {
    display: none;
  }

  .navbar a:hover {
    color: var(--hover-color);
    transform: translateX(6px);
    border-bottom: 2px solid var(--hover-color);
    border-radius: 5px;
  }

  /* .navbar a.active 
		color: var(--text-color);
	} */

  .navbar.open {
    right: 2%;
    width: 50%;
  }
}

/* Contact Info And Buttons */
.info-box {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  width: 300px;
  margin: 1rem 0 2rem;
}
.info-box h5 {
  font-weight: 600;
  color: var(--text-color);
  font-size: 1rem;
}
.info-box span {
  font-size: 0.8rem;
  color: #bdbdbd;
  padding: 2px;
}
.btn-box {
  display: flex;
  justify-content: space-between;
  width: 320px;
  height: 45px;
}
.btn-box a.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 100%;
  background: var(--hover-color);
  color: var(--bg-color);
  font-size: 1rem;
  letter-spacing: 1px;
  font-weight: 600;
  transition: 0.6s;
  box-shadow: var(--neon-box-shadow);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 2px solid var(--hover-color);
}
a.btn:hover {
  color: var(--hover-color);
}
a.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: var(--bg-color);
  width: 0;
  height: 100%;
  z-index: -1;
  transition: 0.7s;
}
a.btn:hover::before {
  width: 100%;
}
a.btn:nth-child(2) {
  background: var(--bg-color);
  color: var(--hover-color);
}
a.btn:nth-child(2):hover {
  color: var(--bg-color);
}
a.btn:nth-child(2)::before {
  background: var(--hover-color);
}
.social-icons {
  margin-top: 8rem;
  display: flex;
  justify-content: space-between;
  width: 220px;
  height: 40px;
}

/* Social Icons Home */
.social-icons {
  margin-top: 4rem;
  margin-left: 3rem;
  display: flex;
  justify-content: space-between;
  width: 220px;
  height: 40px;
}
.social-icons a {
  display: inline-flex;
  width: 50px;
  height: 100%;
  justify-content: center;
  align-items: center;
  background: var(--bg-color);
  color: var(--hover-color);
  border: 2px solid var(--hover-color);
  transition: 0.6s;
  box-shadow: 0 0 0.3rem #12f7ff;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.social-icons a i {
  font-size: 1.5rem;
}
.social-icons a:hover {
  color: var(--bg-color);
  transform: translateY(-10px);
}
.social-icons a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--hover-color);
  transition: 0.6s;
  z-index: -1;
}
.social-icons a:hover::before {
  width: 100%;
}
/* End Social Icons Home */

.contact-main {
  width: 100%;
  /* height: 100vh; */
  padding-top: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-30px);
}

.contact-main .contact-full {
  min-width: 570px;
  padding: 20px;
  padding-top: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-main .mobile-show {
  position: absolute;
  visibility: hidden;
}

.contact-main .contact-section {
  width: 400px;
  min-width: 320px;
  color: var(--hover-color);
  height: 400px;
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  border-top: 2px solid var(--hover-color);
  border-bottom: 2px solid var(--hover-color);
  border-left: 2px solid var(--hover-color);
  border-radius: 30px 0px 0px 10px;
  box-shadow: -5px 3px 6px var(--hover-color);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
}

.contact-main .contact-section .cs-item {
  display: flex;
  align-items: center;
}

.contact-main .contact-section .text {
  width: 200px;
  display: flex;
  flex-direction: column;
}

.contact-main .contact-section .icon {
  width: 70px;
  height: 70px;
  border: 2.5px solid var(--main-color);
  border-radius: 100px;
  color: var(--hover-color);
  font-size: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-main .contact-section .placeHolder {
  width: fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  padding-left: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-color);
}

.contact-main .contact-section .info {
  width: fit-content;
  height: fit-content;
  padding-left: 10px;
  font-weight: 500;
}
.contact-main .contact-section .info a{
  text-decoration: none;
  color: var(--color-hover);
}

.contact-main .contact-form {
  width: 850px;
  min-width: 250px;
  position: relative;
  text-align: center;
  padding: 20px;
  border: 2px solid var(--hover-color);
  border-radius: 10px;
  color: var(--main-color);
  box-shadow: 3px 4px 6px var(--hover-color);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
}

.contact-main .contact-section.csa-cs {
  border-right: 2px solid #ccc;
  border-radius: 10px;
}

.contact-main .contact-form.csa-cf {
  border-left: none;
  border-radius: 0px 10px 10px 0px;
}

.contact-main .contact-section .cs-top {
  width: 100%;
  padding-right: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-main .contact-section h1,
.contact-main .contact-form h1 {
  font-size: 1.5em;
  color: var(--hover-color);
}

.contact-main .contact-section .border-line,
.contact-main .contact-form .border-line {
  width: 100%;
  height: 2px;
  background-color: var(--main-color);
}

.contact-main .contact-section .border-line {
  margin-bottom: 25px;
}

.contact-main .contact-form .contact-submit-after {
  padding: 30px 0px 10px 0px;
  display: none;
  justify-content: center;
  align-items: center;
}

.contact-main .contact-form .form-section.hide {
  display: none;
}

.contact-main .contact-form .contact-submit-after.show {
  display: flex;
}

.contact-main .contact-form .contact-submit-after .box {
  width: 335px;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 2px solid #ccc;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
}

.contact-main .contact-form .contact-submit-after .csa-icon {
  font-size: 5rem;
  color: var(--hover-color);
  margin-bottom: 20px;
}

.contact-main .contact-form .contact-submit-after .csa-text {
  font-size: 1.2rem;
  color: var(--text-color);
  font-weight: 500;
  margin-bottom: 10px;
}

.contact-main .contact-form .contact-submit-after .csa-ok {
  width: fit-content;
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 5px;
  cursor: pointer;
  background-color: var(--hover-color);
  color: var(--bg-color);
  transition: 0.3s;
}

.contact-main .contact-form .contact-submit-after .csa-ok:hover {
  background-color: var(--bg-color);
  color: var(--hover-color);
  box-shadow: 2px 3px 8px var(--hover-color);
}

.contact-main .contact-form .name-section {
  margin-top: 25px;
}

.contact-main label {
  display: block;
  margin-bottom: 10px;
  color: var(--text-color);
  font-weight: 600;
}

.contact-main input[type="text"],
.contact-main input[type="email"],
.contact-main textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  outline: none;
}
.contact-main input[type="text"]:focus {
  border: 2px solid var(--hover-color);
  background-color: var(--bg-color);
  color: var(--text-color);
  box-shadow: 2px 1px 6px var(--hover-color);
}
.contact-main input[type="email"]:focus {
  border: 2px solid var(--hover-color);
  background-color: var(--bg-color);
  color: var(--text-color);
  box-shadow: 2px 1px 6px var(--hover-color);
}
.contact-main textarea:focus {
  border: 2px solid var(--hover-color);
  background-color: var(--bg-color);
  color: var(--text-color);
  box-shadow: 2px 1px 6px var(--hover-color);
}

.contact-main textarea {
  resize: none;
  margin-bottom: 0px;
}

.contact-main .contact-form .email-error,
.contact-main .contact-form .error {
  width: fit-content;
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
  border: 2px solid var(--hover-color);
  border-radius: 5px;
  padding: 5px;
  margin: 10px auto 0px auto;
}

.contact-main .contact-form .error-show {
  display: flex;
}

.contact-main .contact-form .error-icon {
  font-size: 1.4rem;
  margin-right: 5px;
}

.contact-main button[type="submit"] {
  background-color: var(--hover-color);
  color: var(--bg-color);
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  margin-top: 20px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.contact-main button[type="submit"]:hover {
  background-color: var(--bg-color);
  color: var(--hover-color);
  box-shadow: 2px 3px 6px var(--hover-color);
}

.contact-main .contact-form .contact-button .line {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 15px;
  background-color: var(--main-color);
}

.contact-main .contact-form .contact-button.loading {
  height: 55px;
  width: 97.7px;
  background-color: gray;
}

.contact-main .contact-form .contact-load {
  display: none;
}

.contact-main .contact-form .contact-load.show {
  display: block;
}

.contact-main .contact-form .contact-button .submit-text.hide {
  display: none;
}

.contact-main .contact-form .contact-load .line:nth-last-child(1) {
  animation: loadingA 1.5s 1s infinite;
}

.contact-main .contact-form .contact-load .line:nth-last-child(2) {
  animation: loadingA 1.5s 0.5s infinite;
}

.contact-main .contact-form .contact-load .line:nth-last-child(3) {
  animation: loadingA 1.5s 0s infinite;
}

@keyframes loadingA {
  0% {
    height: 15px;
  }

  50% {
    height: 35px;
  }

  100% {
    height: 15px;
  }
}

@media (max-width: 610px) {
  .header .logo #logo{
    width: 100%;
    font-size: 24px;
  }
  
  .contact-main {
    display: block;
  }

  .contact-main .contact-full {
    min-width: fit-content;
    display: block;
    padding: 0px;
    margin-left: 50px;
  }

  .contact-main .mobile-show {
    position: relative;
    visibility: visible;
  }

  .contact-main .contact-full .contact-section {
    width: 100%;
    min-width: 300px;
    height: fit-content;
    padding: 20px 0px 25px 15px;
    margin-right: auto;
    margin-left: auto;
    border-right: 2px solid #ccc;
    border-radius: 10px;
  }

  .contact-main .contact-section .cs-item {
    margin-bottom: 35px;
  }

  .contact-main .contact-section .cs-item.address {
    margin-bottom: 0px;
  }

  .contact-main .contact-section .icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .contact-main .contact-full .contact-form {
    margin-top: 25px;
    width: 100%;
    min-width: 300px;
    border-left: 2px solid #ccc;
    margin-right: auto;
    margin-left: auto;
    border-radius: 10px;
  }

  .contact-main .contact-form .contact-submit-after .box {
    width: auto;
  }

  .contact-main .contact-form .border-line {
    height: 2px;
  }
}

/* Skills Page */
/* ===============================
   SKILLS SECTION
================================ */

.skills-main {
  width: 100%;
  padding: 80px 40px;
  background: var(--color-secondary-bg);
  display: flex;
  justify-content: center;
}

.skills-section {
  width: 100%;
  max-width: 1200px;
}

/* Header */
.skills-section .header {
  text-align: center;
  margin-bottom: 50px;
}

.skills-section .header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--hover-color);
  margin-bottom: 10px;
}

.skills-section .header span {
  font-size: 1rem;
  color: var(--text-color);
  opacity: 0.8;
}

/* Grid Layout */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.skills-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 18px;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  min-width: 0;
}

.skills-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px var(--hover-color);
}

/* Card Heading */
.skills-card h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--hover-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Tags */
.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.skill-tags span {
  padding: 8px 16px;
  border-radius: 25px;
  background: var(--main-color);
  color: #fff;
  font-size: 0.9rem;
  transition: 0.3s ease;
  cursor: default;
}

.skill-tags span:hover {
  background: var(--hover-color);
  transform: scale(1.05);
}

/* ===============================
   RESPONSIVE DESIGN
================================ */

/* Tablet */
@media (max-width: 992px) {
  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .skills-main {
    padding: 40px 20px;
  }

  .skills-grid {
    grid-template-columns: 1fr;
  }

  .skills-card {
    padding: 25px;
  }

  .skills-card:hover {
    transform: none;
    box-shadow: 0 0 15px var(--hover-color);
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .skills-section .header h2 {
    font-size: 1.8rem;
  }

  .skill-tags span {
    font-size: 0.8rem;
    padding: 6px 14px;
  }
}



























/* .skills-main {
  width: 100%;
  margin-top: 90px;
  display: flex;
  background: var(--color-secondary-bg);
  justify-content: center;
  align-items: center;
  padding: 40px;
  max-width: 100%;
}

.skills-main .skills-section {
  width: 100%;
  position: relative;
  z-index: 2;
}

.skills-main .skills-section .header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  margin-top: 50px;
  animation: fadeInScale 1s ease-in-out;
}
@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.skills-main .skills-section .header .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.skills-main .skills-section .header .text span {
  font-size: 1.5rem;
  font-weight: 600;
  padding: 5px 10px;
  margin-bottom: 5px;
  border: 2px solid var(--main-color);
  border-bottom: 0px;
  border-radius: 10px 10px 0 0;
  box-shadow: 4px 5px 6px var(--hover-color);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  animation: slideInFromLeft 1s ease-in-out;
}
@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.skills-main .skills-section .header .text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-hover);
  padding: 5px 10px;
  border: 2px solid var(--main-color);
  border-bottom: 0px;
  border-radius: 10px 10px 0 0;
  box-shadow: 0px 0px 6px var(--hover-color);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  animation: slideInFromLeft 1s ease-in-out;
  animation: fadeInScale 1s 0.5s ease-in-out both;
}

.skills-main .skills-section .skills {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
  row-gap: 50px;
  width: 100%;
}

@media (max-width: 700px) {
  .skills-main .skills-section .skills .skills-group-row {
    width: 85%;
    min-width: 250px;
  }
}

.skills-main .skills-section .skills .skills-group-row .skills-group-header {
  width: fit-content;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-color);
  margin: 0 auto;
}

.skills-main .skills-section .skills .skills-group-row .border-line {
  width: 100%;
  height: 4px;
  border-radius: 100px;
  background-color: var(--main-color);
  margin: 5px 0 25px;
}
.main-text {
  align-items: center;
  text-align: center;
}
.main-text h2 {
  color: var(--color-hover);
  border: 2px solid var(--color-hover);
  width: 70px;
} */
/* Skill Bars */





/* .skill-main {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-row-gap: 30px;
  grid-column-gap: 50px;
  box-sizing: border-box;
}
.main-text {
  align-items: center;
  text-align: center;
}
.main-text h2 {
  color: var(--hover-color); */
  /* align-items: center;
  text-align: center; */
  /* font-weight: 700;
  font-size: 30px;
}
.skill-bar {
  margin-bottom: 2.3rem;
}
.skill-main h3 {
  margin-bottom: 2rem;
  font-size: 1.8rem;
  text-align: center;
}
.skill-left .skill-bar .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
}
.skill-left .skill-bar .bar {
  width: 100%;
  height: 10px;
  background-color: var(--bg-color);
  border-radius: 25px;
  margin-top: 10px;
  position: relative;
}
.skill-bar .bar span {
  width: 50%;
  height: 100%;
  position: absolute;
  left: 0;
  background: var(--hover-color);
  border-radius: 25px;
  box-shadow: var(--neon-box-shadow);
}
.skill-bar .bar .html {
  width: 90%;
  animation: html 2s;
}
.skill-bar .bar .css {
  width: 85%;
  animation: css 3s;
}
.skill-bar .bar .Javascript {
  width: 50%;
  animation: Javascript 4s;
}
.skill-bar .bar .c {
  width: 70%;
  animation: c 5s;
}
.skill-bar .bar .cpp {
  width: 95%;
  animation: cpp 6s;
}

@keyframes html {
  0% {
    width: 0%;
  }
  100% {
    width: 90%;
  }
}
@keyframes css {
  0% {
    width: 0%;
  }
  100% {
    width: 85%;
  }
}
@keyframes Javascript {
  0% {
    width: 0%;
  }
  100% {
    width: 50%;
  }
}
@keyframes c {
  0% {
    width: 0%;
  }
  100% {
    width: 70%;
  }
}
@keyframes cpp {
  0% {
    width: 0%;
  }
  100% {
    width: 95%;
  }
} */

/* Professional */
/* .professional {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.box {
  position: relative;
  margin: 10px 0;
  flex: 1 1 15rem;
}
.box .text {
  text-align: center;
  color: #fff;
  font-size: 1rem;
}
.box .text big {
  font: 400;
  letter-spacing: 1px;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.box .text small {
  display: block;
  font-weight: 600;
}
.circle {
  width: 100%;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.circle .points {
  width: 2px;
  height: 10px;
  background-color: var(--bg-color);
  position: absolute;
  border-radius: 3px;
  transform: rotate(calc(var(--i) * var(--rot))) translateY(-45px);
}

.points.marked {
  animation: glow 0.04s linear forwards;
  animation-delay: calc(var(--i) * 0.05s);
}

@keyframes glow {
  0% {
    background: var(--bg-color);
    box-shadow: none;
  }
  100% {
    background: var(--hover-color);
    box-shadow: var(--neon-box-shadow);
  }
} */

/* Responsive styles */
/* 
@media screen and (max-width: 1200px) {
  .skill-main {
    gap: 30px;
    width: 100%;
  }

  .professional {
    justify-content: space-between;
  }

  .box {
    flex: 1 1 48%;
  }
}

@media screen and (max-width: 992px) {
  .skill-main {
    gap: 20px;
    margin: 10px;
    display: block;
    width: 100%;
  }

  .main-text h2 {
    font-size: 24px;
  }

  .box {
    flex: 1 1 48%;
  }

  .professional {
    justify-content: space-between;
  }

  .circle {
    height: 120px;
  }
}
@media (max-width: 850px) {
  .education-main .education-section {
    min-width: 250px;
    width: 85%;
  }

  .skills-main .skills-section {
    width: 100%; 
  }
}

@media screen and (max-width: 768px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }
  .skill-main {
    gap: 15px;
  }

  .main-text h2 {
    font-size: 20px;
  }

  .box {
    flex: 1 1 100%; 
  }

  .circle {
    height: 120px;
  }
}
@media screen and (max-width: 480px) {
  .skill-main {
    gap: 10px;
  }

  .main-text h2 {
    font-size: 18px;
  }

  .box {
    flex: 1 1 100%;
  }

  .circle {
    height: 120px;
  }
} */

/* Skill Bars End */
.education-main {
  background: url("/Assets/education/main\ pic.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 100px;
  padding-bottom: 30px;
  margin-top: -50px;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: row;
}

.education-main .education-section {
  width: fit-content;
  min-width: 770px;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 50px;
  box-sizing: content-box;
  padding-left: 20px;
  padding-right: 20px;
  animation: slideInFromLeft 1s ease-in-out;
}

.education-main .education-section .header-text {
  font-size: 1.8rem;
  font-weight: 600;
  padding: 5px 10px;
  margin-left: 10px;
  margin-right: 10px;
  border: 2px solid var(--main-color);
  border-bottom: 0px;
  border-radius: 10px 10px 0px 0px;
  box-shadow: 4px 5px 6px var(--hover-color);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  animation: fadeInScale 2s ease-in-out;
  /* animation: slideInFromLeft 1s ease-in-out; */
}

.education-main .education-section .study {
  /* height: 190px; */
  display: flex;
  flex-direction: row;
}

.education-main .education-section .study .image {
  display: flex;
  justify-content: center;
}

.education-main .education-section .study .image img {
  width: 300px;
  height: 180px;
  aspect-ratio: 300/180;
  /* min-width: 200px; */
  border-radius: 10px;
  border: 2px solid var(--main-color);
}
.education-main .education-section .study .image img:hover {
  transform: scale(1.1);
  transition: all 1s ease;
}

.education-main .education-section .study .line {
  min-width: 2.5px;
  height: 180px;
  margin-top: auto;
  margin-bottom: auto;
  border-radius: 10px;
  margin-left: 20px;
  margin-right: 20px;
  background-color: var(--main-color);
}

.education-main .education-section .study.second .image {
  order: 2;
}

.education-main .education-section .study.second .line {
  order: 1;
}

.education-main .education-section .study.second .texts {
  order: 0;
}

@media (max-width: 850px) {
  .education-main .education-section .study {
    flex-direction: column;
    border: 2px solid var(--color-hover);
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
  }

  .education-main .education-section {
    min-width: 250px;
    width: 85%;
  }

  .education-main .education-section .study .image img {
    width: 85%;
    min-width: 250px;
  }

  .education-main .education-section .study .line {
    width: 100%;
    height: 4px;
    margin: 0px;
    margin-top: 20px;
    margin-bottom: 5px;
  }

  .education-main .education-section .study .texts {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .education-main .education-section .study.second .image {
    order: 2;
  }

  .education-main .education-section .study.second .line {
    order: 3;
  }

  .education-main .education-section .study.second .texts {
    order: 4;
  }

  .education-main .education-section .study .texts .header {
    text-align: center;
  }

  .education-main .education-section .study .texts .name {
    text-align: center;
  }

  .education-main .education-section .study .texts .year {
    text-align: center;
  }

  .education-main .education-section .study .texts .text {
    text-align: center;
  }
}
@media screen and (max-width: 460px) {
  .header-text {
    text-align: center;
  }
}

.education-main .education-section .study .texts .header {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--main-color);
}

.education-main .education-section .study .texts .name {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-color);
  margin-top: 5px;
}

.education-main .education-section .study .texts .year {
  font-weight: 600;
  color: var(--text-color);
}

.education-main .education-section .study .texts .text {
  font-weight: 500;
  color: var(--text-color);
  /* text-align: justify; */
  margin-top: 10px;
}

.projects-main {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  max-width: 100%;
  background: linear-gradient(to bottom, #060b13, #173052);
  margin-top: -50px;
}

.projects-section .header {
  /* width: 100%; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  margin-top: 50px;
  animation: fadeInScale 1s ease-in-out;
}

.projects-main .projects-section .header .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.projects-main .projects-section .header .text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-hover);
  padding: 5px 10px;
  border: 2px solid var(--main-color);
  border-bottom: 0px;
  border-radius: 10px 10px 0 0;
  box-shadow: 0px 0px 6px var(--hover-color);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  animation: slideInFromLeft 1s ease-in-out;
  animation: fadeInScale 1s 0.5s ease-in-out both;
}
.projects-main .projects-section .header .text p {
  font-size: 1rem;
  font-weight: 600;
  padding: 5px 10px;
  margin-bottom: 5px;
  border: 2px solid var(--main-color);
  border-bottom: 0px;
  border-radius: 10px 10px 0 0;
  box-shadow: 4px 5px 6px var(--hover-color);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  animation: slideInFromLeft 1s ease-in-out;
}

.projects-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  transform: translateX(-30px);
  /* animation: fadeInScale 1s ease-in-out; */
  animation: slideInFromLeft 2s ease-in-out;
}

.project-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 4px 5px 6px var(--hover-color);
  width: 315px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.project-image img {
  width: 100%;
  height: 200px;
  object-fit: fill;
}
.project-image img:hover {
  transform: scale(1.1);
  transition: all 1s ease-in;
}

.project-content {
  padding: 20px;
  text-align: center;
}

.project-content h3 {
  font-size: 1.5rem;
  color: var(--color-background);
  margin-bottom: 10px;
}

.project-content p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 15px;
}

.project-links a {
  display: inline-block;
  text-decoration: none;
  background: var(--bg-color);
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  margin: 5px;
  font-size: 0.9rem;
  transition: background-color 0.3s;
}

.project-links a:hover {
  background: var(--color-hover);
  color: #250821;
  font-weight: 700;
  transform: translateY(6px);
  transition: all 0.5s ease;
}

@media (max-width: 850px) {
  .projects-container {
    width: 100%;
    margin-left: 30px;
    justify-content: center;
    align-items: center;
  }
  .project-card {
    width: 100%;
    margin: 10px 10px;
  }
  .projects-section .header {
    width: 100%;
    min-width: 250px;
  }

  .projects-section .header h2 {
    font-size: 1.4rem;
  }

  .projects-section .header p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 460px) {
  .projects-section .header h2 {
    text-align: center;
  }

  .projects-section .header p {
    text-align: center;
  }
}

/* Testimonials */

/* General Styles */
.carousel-container {
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial {
  flex: 0 0 100%;
  box-sizing: border-box;
  padding: 20px;
  text-align: center;
}

.image img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.content {
  padding: 10px;
}

.content-row .name {
  font-size: 18px;
  font-weight: bold;
  color: var(--color-hover);
  text-shadow: var(--font-neon-text-shadow);
}

.content-row .description {
  font-size: 18px;
  color: var(--color-text);
}

.content-row .stars {
  margin: 5px 0;
  color: #ffd700; /* Gold color */
  font-size: 16px;
}

.text {
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.6;
}

.controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.controls button {
  background-color: var(--color-hover);
  color: var(--bg-color);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 18px;
  cursor: pointer;
}

.controls button:hover {
  background-color: var(--bg-color);
  color: var(--hover-color);
  font-weight: 700;
  border-radius: 50%;
  border: 2px solid var(--color-hover);
}

@media (max-width: 768px) {
  .carousel-container {
    max-width: 100%;
    margin: 20px;
  }

  .testimonial {
    padding: 15px; /* Reduce padding for smaller screens */
  }

  .image img {
    width: 70px; /* Adjust image size */
    height: 70px;
  }

  .content-row .name {
    font-size: 16px; /* Adjust font size for the name */
  }

  .content-row .description {
    font-size: 16px; /* Adjust font size for description */
  }

  .controls button {
    width: 35px; /* Smaller control buttons */
    height: 35px;
    font-size: 16px;
  }
}

/* For very small screens (mobile phones) */
@media (max-width: 480px) {
  .carousel-container {
    max-width: 73%;
    padding: 10px;
  }

  .testimonial {
    padding: 10px;
  }

  .image img {
    width: 60px; /* Smaller image size */
    height: 60px;
  }

  .content-row .name {
    font-size: 14px; /* Adjust font size */
  }

  .content-row .description {
    font-size: 14px; /* Adjust font size */
  }

  .controls button {
    display: none;
  }
}

.certifications-section {
  width: 100%;
  max-width: 100%;
  padding: 60px 20px;
  justify-content: center;
  align-items: center;
  background-color: var(--color-secondary-bg);
}

.certifications-section .certifications-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  margin-top: 50px;
  animation: fadeInScale 1s ease-in-out;
}

.certifications-section .certifications-header .header-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.certifications-section .certifications-header .header-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-hover);
  padding: 5px 10px;
  border: 2px solid var(--main-color);
  border-bottom: 0px;
  border-radius: 10px 10px 0 0;
  box-shadow: 0px 0px 6px var(--hover-color);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  animation: slideInFromLeft 1s ease-in-out;
  animation: fadeInScale 1s 0.5s ease-in-out both;
}

/* .certifications-header .header-line {
  width: 60px;
  height: 4px;
  background-color: var(--main-color);
  margin: 20px auto;
} */

.certifications-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
}

.certification {
  background-color: var(--bg-color);
  border-radius: 10px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: calc(33.33% - 40px);
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.certification.animate {
  opacity: 1;
  transform: translateY(0);
}

.certification:hover {
  transform: translateY(-10px);
  box-shadow: var(--font-neon-text-shadow);
  transition: all 1s ease-in-out;
}

.certification-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-hover);
  margin-bottom: 15px;
}

.certification-info p {
  font-size: 1rem;
  color: var(--color-text);
  margin: 5px 0;
}

.certification-action .btn {
  padding: 10px 20px;
  background-color: var(--color-hover);
  color: var(--bg-color);
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.certification-action .btn:hover {
  background-color: var(--bg-color);
  color: var(--color-hover);
  border: 2px solid var(--color-hover);
  transform: scaleX(1);
  transition: all 1s ease-in;
}

@media (max-width: 768px) {
  .certification {
    width: calc(50% - 40px);
  }
}

@media (max-width: 480px) {
  .certification {
    width: 100%;
  }
}

.career-main {
  width: 100%;
  /* margin-top: 150px; */
  padding-top: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.career-main .career-section {
  /* width: 70%; */
  /* min-width: 650px; */
  max-width: 1000px;
  /* padding: 100px; */
  padding: 0px 20px;
}

.career-main .career-section .career-header {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.career-main .career-section .career-header .text {
  font-size: 1.4rem;
  font-weight: 600;
  padding: 5px 10px;
  margin-left: 10px;
  margin-right: 10px;
  border: 2px solid var(--main-color);
  border-bottom: 0px;
  border-radius: 10px 10px 0px 0px;
  box-shadow: 4px 5px 6px var(--hover-color);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  /* color: var(--main-color); */
}

.career-main .career-section .header-line {
  width: 100%;
  height: 4px;
  background-color: var(--main-color);
  border-radius: 20px;
  /* margin-top: 5px; */
}

.career-main .career-section .professional-summary .texts {
  margin-top: 20px;
  font-size: 1.05rem;
  font-weight: 500;
  text-align: justify;
}

.career-main .career-section .career-goals {
  margin-top: 50px;
}

.career-main .career-section .career-goals .goals {
  margin-top: 25px;
  display: flex;
  justify-content: space-evenly;
  flex-direction: row;
  flex-wrap: wrap;
  row-gap: 40px;
  column-gap: 20px;
}

.career-main .career-section .career-goals .goals-row {
  width: 100%;
  max-width: 380px;
  min-width: 250px;
  box-sizing: content-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.career-main .career-section .career-goals .goals-row .goals-header {
  width: fit-content;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.career-main .career-section .career-goals .goals-row .header-line {
  width: 100%;
  height: 4px;
  border-radius: 20px;
  background-color: var(--main-color);
}

.career-main .career-section .career-goals .goals-row .goals-header .text {
  font-size: 1.2rem;
  font-weight: 600;
  margin-left: 10px;
  margin-right: 10px;
  /* color: var(--main-color); */
}

.career-main .career-section .career-goals .goals-row .texts {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.career-main .career-section .career-goals .goals-row .text-row {
  min-height: 62.8px;
  font-size: 1.05rem;
  font-weight: 500;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 10px;
  padding-right: 10px;
  color: var(--text-color);
  border: 2px solid var(--hover-color);
  border-radius: 20px;
  box-shadow: -3px 4px 10px var(--hover-color);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
}

.career-main .career-section .career-goals .goals-row .text-row .tr-icon {
  margin-right: 10px;
  min-width: 16.8px;
  min-height: 16.8px;
  border-radius: 50%;
  background-color: var(--text-color);
}

/* Hobbies Section */

.hobbies-main {
  width: 100%;
  padding-top: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hobbies-main .hobbies-section {
  /* width: 100%; */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px 10px;
}

.hobbies-main .hobbies-section .hobbies-header {
  margin-bottom: 40px;
}

.hobbies-main .hobbies-section .hobbies-header .header-text {
  font-size: 1.5rem;
  font-weight: 600;
  border: 2px solid var(--hover-color);
  border-bottom: 0px;
  border-radius: 10px 10px 0px 0px;
  padding-top: 5px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 5px;
  margin-left: 10px;
  margin-right: 10px;
  box-shadow: 3px -4px 10px var(--hover-color);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
}

.hobbies-main .hobbies-section .hobbies-header .header-line {
  width: 100%;
  height: 4px;
  background-color: var(--main-color);
  border-radius: 20px;
}

.hobbies-main .hobbies-section .section {
  display: flex;
  justify-content: center;
  flex-direction: row;
  column-gap: 50px;
  row-gap: 50px;
}
.hobbies-main .hobbies-section .section .row {
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  row-gap: 50px;
  column-gap: 50px;
}
.hobbies-main .hobbies-section .section .row.first {
  justify-content: flex-end;
}
.hobbies-main .hobbies-section .section .row.second {
  justify-content: flex-start;
}
.hobbies-main .hobbies-section .section .hobbies {
  width: 250px;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* outline: 2px solid var(--hover-color); */
  border-radius: 10px;
  padding: 10px;
  box-shadow: 6px 5px 10px var(--hover-color);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
}
.hobbies-main .hobbies-section .section .hobbies:hover {
  /* box-shadow: 6px 5px 10px var(--hover-color); */
  transition: 0.4s;
  outline: 2px solid var(--hover-color);
}
@media (max-width: 650px) {
  .hobbies-main .hobbies-section .section {
    flex-direction: column;
  }
  .hobbies-main .hobbies-section .section .row.first {
    justify-content: center;
  }
  .hobbies-main .hobbies-section .section .row.second {
    justify-content: center;
  }
  .hobbies-main .hobbies-section .section .hobbies {
    width: 70%;
  }
}
@media (max-width: 400px) {
  .hobbies-main .hobbies-section .section .hobbies {
    width: 100%;
  }
  .hobbies-main .hobbies-section {
    padding: 0px 20px;
  }
}
.hobbies-main .hobbies-section .section .hobbies .header {
  width: fit-content;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 10px;
  margin-bottom: 10px;
}

.hobbies-main .hobbies-section .section .hobbies .header .header-text {
  font-size: 1.2rem;
  font-weight: 500;
  padding-left: 10px;
  padding-right: 10px;
}

.hobbies-main .hobbies-section .section .hobbies .header .header-line {
  height: 4px;
  border-radius: 10px;
  width: 100%;
  background-color: var(--main-color);
}

.hobbies-main .hobbies-section .section .hobbies .image img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

.hobbies-main .hobbies-section .section .hobbies .text {
  font-size: 0.95rem;
  font-weight: 500;
}

/* ***************************Testimonials Page*************************** */

.testimonials-main {
  width: 100%;
  padding-top: 58px;
  display: flex;
  justify-content: center;
}

.testimonials-main .testimonials-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonials-main .testimonials-section .testimonials-header {
  width: fit-content;
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
  margin-left: 20px;
  margin-right: 20px;
}

.testimonials-main .testimonials-section .testimonials-header .header-text {
  font-size: 1.5rem;
  font-weight: 600;
  margin-left: 10px;
  margin-right: 10px;
  color: var(--text-color);
  text-align: center;
  border: 2px solid var(--hover-color);
  padding: 12px;
  border-radius: 10px 10px 0px 0px;
  box-shadow: 4px 5px 6px var(--hover-color);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
}

.testimonials-main .testimonials-section .testimonials-header .header-line {
  width: 100%;
  height: 4px;
  background-color: var(--hover-color);
  border-radius: 20px;
}

.testimonials-main .testimonials-section .section {
  display: flex;
  flex-direction: column;
  row-gap: 50px;
}

.testimonials-main .testimonials-section .section .row {
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  row-gap: 50px;
  padding-left: 20px;
  padding-right: 20px;
  column-gap: 50px;
}

.testimonials-main .testimonials-section .section .block {
  width: 583.2px;
  display: flex;
  flex-direction: row;
  column-gap: 10px;
  padding: 10px;
  border: 2px solid var(--hover-color);
  border-radius: 110px 20px 20px 110px;
  box-shadow: -3px -2px 10px var(--hover-color);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
}

.testimonials-main .testimonials-section .section .block .image {
  display: flex;
  align-items: center;
}

.testimonials-main .testimonials-section .section .block .image img {
  width: 200px;
  display: block;
  border: 2px solid var(--main-color);
  border-radius: 50%;
}

.testimonials-main .testimonials-section .section .block .content {
  width: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.testimonials-main .testimonials-section .section .block .content .content-row {
  width: 100%;
}

.testimonials-main .testimonials-section .section .block .content .line {
  height: 2px;
  background-color: var(--main-color);
  border-radius: 20px;
  margin-top: 2.5px;
}

.testimonials-main .testimonials-section .section .block .content .name {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--main-color);
}

.testimonials-main .testimonials-section .section .block .content .description {
  font-size: 1.1rem;
  font-weight: 600;
}

.testimonials-main .testimonials-section .section .block .content .text {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-color);
}

@media (max-width: 1280px) {
  .testimonials-main .testimonials-section .section .row {
    column-gap: 25px;
  }
}

@media (max-width: 640px) {
  .testimonials-main .testimonials-section .section .row .block {
    width: 100%;
    min-width: 250px;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
  }

  .testimonials-main .testimonials-section .section .row .block .image img {
    width: 200px;
    border-radius: 50%;
  }

  .testimonials-main .testimonials-section .section .row .block .content {
    width: 100%;
    margin-top: 10px;
  }

  .testimonials-main
    .testimonials-section
    .section
    .row
    .block
    .content
    .content-row
    .name {
    text-align: center;
  }

  .testimonials-main
    .testimonials-section
    .section
    .row
    .block
    .content
    .content-row
    .description {
    text-align: center;
  }

  .testimonials-main
    .testimonials-section
    .section
    .row
    .block
    .content
    .content-row
    .line {
    margin-top: 5px;
    text-align: center;
  }

  .testimonials-main .testimonials-section .section .row .block .content .text {
    text-align: center;
    font-size: 1rem;
    margin-top: 10px;
  }
}

.page {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 50px;
}



/* About Me Section */
.about-me-section {
  width: 100%;
  max-width: 100%;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to bottom, #060b13, #173052);
  margin-top: -50px;
  margin-bottom: -50px;
}

.about-me-section .about-me-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  margin-top: 50px;
  animation: fadeInScale 1s ease-in-out;
}

.about-me-section .about-me-header .header-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-me-section .about-me-header .header-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-hover);
  padding: 5px 10px;
  border: 2px solid var(--main-color);
  border-bottom: 0px;
  border-radius: 10px 10px 0 0;
  box-shadow: 0px 0px 6px var(--hover-color);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  animation: fadeInScale 1s 0.5s ease-in-out both;
  margin-top: -50px;
}
.about-me-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 70px;
  padding: 40px 20px;
  animation: slideInFromLeft 2s ease-in-out;
}

.about-me-img {
  flex: 1;
  max-width: 300px;
}

.about-me-img img {
  width: 100%;    
  height: auto;
  /* border-radius: 80px 20px 40px 10px; */
  object-fit: cover;
  /* box-shadow: 0 0 15px rgba(18, 247, 255, 0.3); */
  filter: drop-shadow( 0 0 15px rgba(18, 247, 255, 0.3));
  /* border: 4px solid var(--hover-color); */
  transition: transform 0.3s ease-in-out;
}

.about-me-details {
  flex: 2;
  max-width: 600px;
  color: var(--color-text);
  font-size: 1.2rem;
  font-weight: 500;
  text-align: left;
  animation: fadeInRight 2s ease-in-out;
}

.about-me-details p {
  margin-bottom: 20px;
}

/* Animations */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .about-me-content {
    flex-direction: column;
    gap: 20px;
  }

  .about-me-img {
    max-width: 250px;
  }

  .about-me-details {
    max-width: 90%;
    text-align: center;
  }

  .about-me-section .about-me-header .header-text h2 {
    font-size: 1.8rem;
  }
    .fade-up-transition {
      opacity: 1; /* Make sure opacity is visible */
      transform: translateY(0); /* Ensure proper position on mobile */
    }

}
@media (max-width: 480px) {
  .about-me-section {
    padding: 40px 10px;
  }

  .about-me-img {
    max-width: 200px;
  }

  .about-me-details {
    font-size: 1rem;
  }

  .about-me-section .about-me-header .header-text h2 {
    font-size: 1.5rem;
  }
}
/* Footer */
/* Footer Styles */
.footer {
  background-color: #1a1a1a;
  color: var(--text-color);
  padding: 40px 20px;
  font-family: "Arial", sans-serif;
  position: relative;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-left: 10px;
}

.footer-bottom {
  background-color: #222;
  color: #bbb;
  padding: 10px 0;
  font-size: 14px;
  border-top: 1px solid #444;
  position: absolute;  /* Position it at the bottom */
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;  /* Center the text */
}
.footer-bottom p{
  margin: 0;
}
.footer-about,
.footer-links,
.footer-contact,
.footer-social {
  flex: 1;
  min-width: 220px;
}

.footer-about h3,
.footer-links h3,
.footer-contact h3 {
  color: var(--color-hover);
  margin-bottom: 15px;
}
.footer-social h3 {
  text-align: center;
  /* margin-left: 10px; */
  justify-content: center;
  color: var(--color-hover);
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-contact li {
  margin: 10px 0;
}

.footer-links a,
.footer-contact a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--color-hover);
  border-bottom: 2px solid var(--color-hover);
  transition: all 0.2s ease-in;
  border-radius: 2px;
}

.social-icons {
  display: flex;
  gap: 20px;
  margin-left: 12px;
}

.social-icon {
  color: #fff;
  font-size: 24px;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #f39c12;
}


/* Footer - Additional Sections */
.footer-services, .footer-blog {
  flex: 1;
  min-width: 220px;
  margin-bottom: 20px;
}

.footer-services h3, .footer-blog h3 {
  color: var(--color-hover);
  margin-bottom: 15px;
}

.footer-services ul, .footer-blog ul {
  list-style: none;
  padding: 0;
}

.footer-services li, .footer-blog li {
  margin: 10px 0;
}

.footer-services a, .footer-blog a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-services a:hover, .footer-blog a:hover {
  color: var(--color-hover);
  border-bottom: 2px solid var(--color-hover);
  transition: all .2s ease-in;
  border-radius: 2px;
}


/* Animations */
.footer-container > div {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards;
}

.footer-container > div:nth-child(1) {
  animation-delay: 0.2s;
}

.footer-container > div:nth-child(2) {
  animation-delay: 0.4s;
}

.footer-container > div:nth-child(3) {
  animation-delay: 0.6s;
}

.footer-container > div:nth-child(4) {
  animation-delay: 0.8s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.footer-links li:hover{
  transform:translateX(8px);
  transition: all 0.5s ease-in-out;
}



/* Mobile Responsiveness */
@media (max-width: 1357px) {
  .footer-container {
    display: grid; /* Use CSS Grid */
    grid-template-columns: 1fr 3fr; /* Two equal columns */
    grid-gap: 20px; /* Add space between items */
    align-items: start; /* Align the items at the start of each grid cell */
    justify-items: center; 
    margin: auto;
  }

  .footer-about,
  .footer-links,
  .footer-contact,
  .footer-social,
  .footer-services,
  .footer-blog {
    min-width: auto; /* Allow content to take up available space */
    margin-bottom: 20px;
  }
  .footer-social{
    margin-bottom: 57px;
  }
}

@media (max-width: 450px) {
  .footer-container {
    display: block;
    align-items: center;
    justify-content: center;
  }
  .footer-about,
  .footer-links,
  .footer-contact,
  .footer-social {
    text-align: center;
  }
  .footer-social{
    margin-bottom: 57px;
  }
  .main {
    padding-right: 0;
    gap: 1px;
  }

  .bx-menu {
    position: sticky;
    right: 450px;
  }
}
@media (max-width: 450px) and (min-width: 200px) {
 
  .navbar.open {
    width: 100%;
    right: 0;
    left: 0;
  }
  .footer-social{
    margin-bottom: 40px;
  }
}
/* chatbot starts here */
/* 
#chatbot-toggler{
  position: fixed;
  bottom: 30px;
  right: 35px;
  border: none;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: flex;
  align-items:center ;
  justify-content: center;
  border-radius: 50%;
  background: var(--hover-color);
  transition: all 0.2s ease;
  z-index: 999;
}
body.show-chatbot #chatbot-toggler{
  transform: rotate(90deg);
}

#chatbot-toggler span{
  color: var(--bg-color);
  position: absolute;
}
body.show-chatbot #chatbot-toggler span:first-child,
#chatbot-toggler span:last-child{
  opacity: 0;
}

body.show-chatbot #chatbot-toggler span:last-child{
  opacity: 1;
}

  /* Overlay when modal is open */
  /* Overlay Styles */
/* .overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  z-index: 998; 
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
} */

/* Chatbot Popup Styles */
/* .chatbot-popup {
  position: fixed;
  right: 35px;
  bottom: 90px;
  width: 420px;
  overflow: hidden;
  border-radius: 15px;
  transform: scale(0.2);
  transform-origin: bottom right;
  box-shadow: 3px 7px 128px 4px rgba(97, 144, 146, 0.1),
              0 32px 64px -48px rgba(21, 255, 224, 0.5);
  color: rgb(22, 184, 206);
  opacity: 0;
  pointer-events: none;
  background: rgba(79, 160, 160, 0.952);
  backdrop-filter: blur(7px);
  transition: all 0.3s ease;
  z-index: 999;
} */

/* When chatbot is active */
/* body.show-chatbot .chatbot-popup {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

body.show-chatbot .overlay {
  opacity: 1;
  pointer-events: auto;
}
.chat-header {
  display: flex;
  align-items: center;
  background: var(--bg-color);
  padding: 15px 22px;
  justify-content: space-between;
}
.chat-header .header-info {
  display: flex;
  gap: 10px;
  align-items: center;
}
.header-info .chatbot-logo {
  height: 35px;
  width: 35px;
  background: #12f7ff;
  padding: 6px;
  fill: #250821;
  box-shadow: 2px 2px 7px #12f7ff;
  flex-shrink: 0;
  border-radius: 50%;
}
.chat-header .logo-text {
  color: var(--text-color);
  text-shadow: 0 0 10px rgba(18, 247, 233, 0.3),
    0 0 10px rgba(18, 247, 255, 0.3), 0 0 20px rgba(18, 247, 255, 0.3),
    0 0 30px rgba(18, 247, 255, 0.3), 0 0 70px rgba(18, 247, 255, 0.3),
    0 0 80px rgba(18, 247, 255, 0.3), 0 0 100px rgba(18, 247, 255, 0.3),
    0 0 150px rgba(18, 247, 255, 0.3);
  font-size: 1.31rem;
  font-weight: 600;
}
.chat-header #close-chatbot {
  border: none;
  color: var(--hover-color);
  height: 40px;
  width: 40px;
  font-size: 1.9rem;
  margin-right: -10px;
  padding-top: 2px;
  cursor: pointer;
  border-radius: 50%;
  background: none;
  transition: 0.3s ease;
}
.chat-header #close-chatbot:hover {
  background: var(--hover-color);
  color: var(--bg-color);
}
.chat-body {
  padding: 25px 22px;
  display: flex;
  gap: 20px;
  height: 460px;
  margin-bottom: 82px;
  overflow-y: auto;
  flex-direction: column;
  scrollbar-width: thin;
  scrollbar-color: #ccccf5 transparent;
}
.chat-body .message {
  display: flex;
  align-items: center;
  gap: 11px;
}
.chat-body .bot-message .bot-avatar {
  height: 35px;
  width: 35px;
  padding: 6px;
  fill: var(--bg-color);
  flex-shrink: 0;
  margin-bottom: 2px;
  align-self: flex-end;
  background: var(--hover-color);
  padding: 6px;
  border-radius: 50%;
}
.chat-body .message .message-text {
  padding: 12px 16px;
  max-width: 75%;
  font-size: 0.95rem;
}

.chat-body .bot-message.thinking .message-text {
  padding: 2px 16px;
}
.chat-body .user-message {
  flex-direction: column;
  align-items: flex-end;
}

.chat-body .bot-message .message-text {
  background: var(--bg-color);
  border-radius: 13px 13px 13px 3px;
  box-shadow: var(--neon-box-shadow);
}
.chat-body .user-message .message-text {
  color: var(--bg-color);
  background: var(--hover-color);
  border-radius: 13px 13px 3px 13px;
  font-weight: 600;
}
.chat-body .user-message .attachment {
  width: 50%;
  margin-top: -7px;
  border-radius: 13px 3px 13px 13px;
}
.chat-body .bot-message .thinking-indicator {
  display: flex;
  gap: 4px;
  padding-block: 15px;
}
.chat-body .bot-message .thinking-indicator .dot {
  height: 7px;
  width: 7px;
  background: var(--hover-color);
  opacity: 0.7;
  border-radius: 50%;
  animation: dotPulse 1.8s ease-in-out infinite;
}
.chat-body .bot-message .thinking-indicator .dot:nth-child(1) {
  animation-delay: 0.2s;
}
.chat-body .bot-message .thinking-indicator .dot:nth-child(2) {
  animation-delay: 0.3s;
}
.chat-body .bot-message .thinking-indicator .dot:nth-child(3) {
  animation-delay: 0.4s;
}
@keyframes dotPulse {
  0%,
  44% {
    transform: translateY(0);
  }
  28% {
    opacity: 0.4;
    transform: translateY(-4px);
  }
  44% {
    opacity: 0.2;
  }
}

.chat-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0);
  padding: 15px 22px 20px;
}
.chat-footer .chat-form {
  display: flex;
  position:relative ;
  align-items: center;
  background: var(--bg-color);
  border-radius: 32px;
  outline: 1px solid var(--hover-color);
}
.chat-footer .chat-form:focus-within {
  background: var(--bg-color);
  box-shadow: var(--font-neon-text-shadow);
  transition: 0.5s ease;
}
.chat-form .message-input {
  border: none;
  outline: none;
  height: 47px;
  resize: none;
  max-height: 180px;
  white-space: pre-line;
  width: 100%;
  font-size: 0.99rem;
  padding: 14px 0px 13px 18px;
  border-radius: inherit;
  background: var(--bg-color);
  color: var(--hover-color);
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
  overflow: hidden;
}
.chat-form .message-input:hover{
scrollbar-color: var(--hover-color) transparent;
}

.chat-form .chat-controls {
  display: flex;
  height: 47px;
  align-items: center;
  align-self: flex-end;
  padding-right: 6px;
}
.chat-form .chat-controls button {
  height: 35px;
  width: 35px;
  border: none;
  font-size: 1.15rem;
  cursor: pointer;
  color: var(--hover-color);
  background: none;
  border-radius: 50%;
  transition: 0.2s ease;
}
.chat-form .chat-controls #send-message {
  color: var(--hover-color);
  display: none;
  background: var(--bg-color);
}
.chat-form .message-input:valid ~ .chat-controls #send-message {
  display: block;
}
.chat-form .chat-controls #send-message:hover {
  background: var(--hover-color);
  color: var(--bg-color);
}
.chat-form .chat-controls button:hover {
  background: var(--hover-color);
  color: var(--bg-color);
}

.chat-form .file-upload-wrapper {
  height: 35px;
  width: 35px;
  position: relative;
}

.chat-form .file-upload-wrapper :where(img,button){
  position: absolute;
}
.chat-form .file-upload-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.chat-form .file-upload-wrapper #file-cancel{
  color: #ff0000;
  background: #fff;
}
.chat-form .file-upload-wrapper :where(img,#file-cancel),
.chat-form .file-upload-wrapper.file-uploaded  #file-upload{
  display: none;
}
.chat-form .file-upload-wrapper.file-uploaded img,
.chat-form .file-upload-wrapper.file-uploaded:hover #file-cancel {
  display: block;
}

em-emoji-picker{
  position: absolute;
  left: 50%;
  top: -337px;
  width: 100%;
  max-width: 350px;
  max-height: 330px;
  visibility: hidden;
  transform: translateX(-50%);
}

body.show-emoji-picker em-emoji-picker{
  visibility: visible;
} */

/* Responsive media-query for chat-bot */
/* @media(max-width:520px){
  #chatbot-toggler{
    right: 20px;
    bottom: 20px;
  }
  .chatbot-popup{
    right: 0;
    bottom:0;
    height: 90%;
    border-radius: 0;
    width: 100%;
  }
  .chatbot-popup .chat-header{
    padding: 12px 15px;
  }
  .chat-body{
    height: calc(90% - 55px);
    padding: 25px 15px;
  }
  .chat-footer{
    padding: 10px 15px 15px;
  }
  .chat-form .file-upload-wrapper.file-uploaded #file-cancel{
    opacity: 0;
  }
}  */
/* chatbot End here */

/* for scrollbar*/
::-webkit-scrollbar {
  width: 8px; 
}

::-webkit-scrollbar-thumb {
  background-color: var(--color-hover); 
  border-radius: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-color);
  border-radius: 10px;
}

.to-top{
    background: var(--color-hover);
    position: fixed;
    bottom: 30px;
    left: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #250821;
    text-decoration: none;
    opacity:0;
    z-index: 999;
    pointer-events: none;
    transition: all .4s ease;
}
.to-top.active{
  bottom:32px;
  pointer-events: auto;
  opacity: 1;
}


