/* ************************************
Author: Adam Charles Johnston
Author Email: mail@ajstudios.dev
website: ajstudios.dev
***************************************

CSS INDEX
===================================
01. GLOBAL CSS 
02. HOME PAGE 1
03. HOME PAGE 2
04. BLOG LIST
05. BLOG DETAILS
06. CONTACT

/*==============================
  GLOBAL CSS START
===============================*/
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap");

* {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 85%; 
}
ul,
ol,
li {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--colorWhite);
}

a {
  display: inline-block;
  text-decoration: none;
  color: var(--colorWhite);
}

a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  color: var(--colorWhite);
}

p,
span {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  margin: 0;
  color: var(--bodyColor);
}

body {
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-family: var(--PrimaryFont);
  background: var(--bodyBg);
  color: var(--colorWhite);
  
}

img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

input,
textarea {
  width: 100%;
  padding: 12px 20px;
  outline: none;
  resize: none;
  border: none;
  border-radius: 0;
  font-size: 16px;
  font-weight: 300;
}

input::placeholder,
textarea::placeholder {
  color: #a6a6ac;
}

button {
  border: none;
}

:root {
  --colorPrimary: #55e6a5;
  --bgColor: #09101a;
  --bodyBg: #02050a;
  --colorWhite: #ffffff;
  --colorBlack: #02050a;
  --ratingColor: #ffba08;
  --bodyColor: #a2a2a2;
  --PrimaryFont: "Space Grotesk", sans-serif;
  --secondaryFont: "IBM Plex Mono", monospace;
  --pc-bg: rgba(255,255,255,0.03);
  --pc-stroke: rgba(255,255,255,0.08);
  --pc-text: #e6f6f2;
  --pc-dim: #9fb7b0;
  --pc-grid: rgba(255,255,255,0.04);
  --pc-shadow: 0 6px 24px rgba(0,0,0,0.35);
  --pc-accent: #55e6a5;
  --pc-accent-rgb: 85,230,165;
  --c-web: #55e6a5;
  --c-tools: #47d7c5;
  --c-apps: #3cc2e0;
  --c-books: #37b0cc;
  --c-games: #2aa9b8;
}

.common_btn {
  display: inline-flex;
  padding: 20px 40px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: var(--colorPrimary);
  color: var(--colorBlack);
  font-weight: 500;
  transition: all 0.3s linear 0s;
}

.common_btn:hover {
  background: #141c27;
  color: var(--colorWhite);
}

/* Personal */

.code {
  background-color: #122; /* Gray background */
  color: #e65596; /* Code text color (usually darker or distinct) */
  font-family: 'Courier New', Courier, monospace; /* Monospaced font */
  padding: 2px 4px; /* Small padding around the code */
  border-radius: 3px; /* Rounded corners */
  font-size: 0.95em; /* Slightly smaller font size */
  background: rgba(160, 160, 160, 0.075);
  border: solid 1px rgba(160, 160, 160, 0.3);
}

.badge-container {
  display: flex; /* Flexbox layout */
  flex-wrap: wrap; /* Allow badges to wrap to the next line */
  justify-content: space-between; /* Spread badges evenly */
  gap: 10px; /* Add some space between the badges */
}

.badge-icon {
  width: 200px; /* Set fixed width for all badges */
  height: 50px; /* Set fixed height */
  padding: 5px; /* Adjust padding to keep logos and text aligned */
  display: inline-block; /* Ensure badges behave as inline blocks */
  text-align: center; /* Center the content (text, logo) */
  font-size: 14px; /* Ensure text size remains consistent */
  line-height: 40px; /* Vertically center the text */
  object-fit: contain; /* Ensure the logo scales within the badge */
}

.badge-text {
  font-weight: bold;
}
.page-breadcrumb li, .page-breadcrumb li a {
  color: #222;
}

.tf__section_heading {
  text-align: center;
  position: relative;
}

.tf__section_heading .has-animation {
  display: inline-block;
  position: relative;
}

.tf__section_heading .has-animation::before {
  left: 50%;
  transform: translateX(-50%);
}


.tf__section_heading h5 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 15px;
  color: var(--colorPrimary);
}

.tf__section_heading h2 {
  text-align: center;
  font-size: 50px;
  font-weight: 600;
  line-height: 1.3;
}

.tf__breadcrumb {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  padding: 240px 0px 157px 0px;
}

.tf__breadcrum_text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.tf__breadcrum_text h1 {
  font-size: 35px;
  font-weight: 650;
  margin-top: 10px;
}

.tf__breadcrum_text ul li a {
  font-size: 18px;
  transition: all linear 0.3s;
}

.page-breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.page-breadcrumb li {
  font-size: 20px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.page-breadcrumb li,
.page-breadcrumb li a {
  color: var(--colorWhite);
}

.page-breadcrumb li:not(:last-child) {
  margin-right: 45px;
}

.page-breadcrumb li:not(:last-child)::before,
.page-breadcrumb li:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  right: calc(-45px / 2);
  top: 50%;
  -webkit-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  border: 2px solid var(--colorPrimary);
  border-radius: 50%;
  z-index: -2;
}

.page-breadcrumb li:not(:last-child)::before {
  width: 5px;
  height: 5px;
  border: none;
  z-index: -1;
  background-color: var(--colorPrimary);
}

.tf__breadcrum_text ul li i {
  margin-top: 8px;
}

.tf__breadcrum_text ul li a:hover,
.tf__breadcrum_text ul li a.active {
  color: var(--colorPrimary);
}

.tf__breadcrum_text ul li:last-child a::after {
  display: none;
}

.tf__pagination nav ul {
  gap: 10px;
}

.tf__pagination nav ul li a {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 16px !important;
  padding: 0;
  background: #151c25;
  border-radius: 50% !important;
  border: none;
  color: var(--bodyColor);
  font-weight: 500;
  transition: all linear 0.3s;
}

.tf__pagination nav ul li a:hover,
.tf__pagination nav ul li a.active {
  background: var(--colorPrimary) !important;
  color: var(--colorBlack) !important;
}

.tf__pagination nav ul li .page-link:focus {
  box-shadow: none;
  background: var(--colorPrimary) !important;
  color: var(--colorBlack) !important;
}

::-webkit-scrollbar-track {
  border-radius: 10px;
  background: transparent !important;
}
::-webkit-scrollbar {
  width: 8px;
  /* background-color: #f1f1f1; */
}
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #2d2d2d;
  transition: opacity 0.2s ease-in-out;
}
*::-moz-selection {
  background: #2d2d2d;
  transition: opacity 0.2s ease-in-out;
  color: #f1f1f1;
  text-shadow: none;
}
::-moz-selection {
  background: #2d2d2d;
  transition: opacity 0.2s ease-in-out;
  color: #f1f1f1;
  text-shadow: none;
}
::selection {
  background: #2d2d2d;
  transition: opacity 0.2s ease-in-out;
  color: #f1f1f1;
  text-shadow: none;
}

:root {
  --opacity-10: 0.1;
  --opacity-20: 0.2;
  --opacity-30: 0.3;
  --opacity-40: 0.4;
  --opacity-50: 0.5;
  --opacity-60: 0.6;
  --opacity-70: 0.7;
  --opacity-80: 0.8;
  --opacity-90: 0.9;
  --opacity-100: 1;
}

.opacity-10 { opacity: var(--opacity-10); }
.opacity-20 { opacity: var(--opacity-20); }
.opacity-30 { opacity: var(--opacity-30); }
.opacity-40 { opacity: var(--opacity-40); }
.opacity-50 { opacity: var(--opacity-50); }
.opacity-60 { opacity: var(--opacity-60); }
.opacity-70 { opacity: var(--opacity-70); }
.opacity-80 { opacity: var(--opacity-80); }
.opacity-90 { opacity: var(--opacity-90); }
.opacity-100 { opacity: var(--opacity-100); }

/*==============================
  GLOBAL CSS END
===============================*/

/*==============================
  HOME PAGE 1 START
===============================*/
.main_menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 999;
}

.main_menu .main_menu_bg {
  position: relative;
  z-index: 1;
}

.main_menu .main_menu_bg::after {
  position: absolute;
  content: "";
  width: 97%;
  height: 100%;
  background: #141c27;
  top: 0;
  left: 20px;
  z-index: -1;
}

.main_menu .navbar-brand {
  width: 180px;
  height: 80px;
  margin: 0;
  padding: 0;
}

.main_menu .navbar-nav .nav-item {
  position: relative;
}

.main_menu .navbar-nav .nav-item .nav-link {
  color: var(--colorWhite);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0;
  line-height: 12px;
  transition: all linear 0.3s;
  font-family: var(--PrimaryFont);
  letter-spacing: 1px;
  padding: 32px 20px;
}

.main_menu .navbar-nav .nav-item .nav-link i {
  font-size: 14px;
  margin-left: 3px;
}

.main_menu .navbar-nav .nav-item .nav-link:hover,
.main_menu .navbar-nav .nav-item .nav-link.active {
  color: var(--colorPrimary);
}

.main_menu .toggle_icon {
  display: block;
  cursor: pointer;
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 30px;
  text-align: center;
  background: var(--colorPrimary);
  color: var(--colorBlack);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.main_menu .toggle_icon i {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

.main_menu .droap_menu {
  position: absolute;
  width: 200px;
  top: 100%;
  left: 0;
  background: var(--colorWhite);
  max-height: 450px;
  overflow: hidden;
  overflow-y: auto;
  box-shadow: rgb(0 0 0 / 15%) 0px 4px 14px;
  padding-left: 0;
  opacity: 0;
  z-index: 99;
  visibility: hidden;
  transform: scaleY(0.3);
  transform-origin: top;
  transition: all linear 0.2s;
  -webkit-transition: all linear 0.2s;
  -moz-transition: all linear 0.2s;
  -ms-transition: all linear 0.2s;
  -o-transition: all linear 0.2s;
}

.main_menu .droap_menu li {
  margin-left: 0;
  line-height: 30px;
}

.main_menu .droap_menu li a {
  color: var(--colorBlack);
  font-size: 15px;
  font-weight: 400;
  display: block;
  border-bottom: 1px solid #2c73651a;
  padding: 7px 20px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.droap_menu li a:hover,
.droap_menu li a.active {
  background: var(--colorPrimary);
  border-color: #ffffff6e;
}

.main_menu .nav-item:hover .droap_menu {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.offcanvas {
  background: var(--bgColor);
  z-index: 99999;
}

.offcanvas .offcanvas-header {
  padding-bottom: 0;
  background: #141c27;
  padding: 25px;
}
.offcanvas .offcanvas-header .offcanvas-logo {
  width: 110px;
}

.offcanvas .btn-close {
  background: var(--colorPrimary);
  color: var(--colorBlack);
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 20px;
  text-align: center;
  padding: 0;
  border-radius: 50%;
  top: 18px;
  opacity: 1;
  transition: all linear 0.3s;
}
.offcanvas .offcanvas-body .offcanvas_title {
  font-size: 20px;
  margin: 20px 0;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.offcanvas .btn-close:hover {
  color: var(--colorWhite);
  background: #09101a;
}
.offcanvas-content-box {
  margin-top: 40px;
}
.offcanvas .offcanvas-body .offcanvas_form {
  padding: 0;
}
.offcanvas .offcanvas-body .offcanvas_contact_form {
  margin-top: 80px;
}
.offcanvas .offcanvas-body .offcanvas_contact_form .offcanvas_title {
  margin: 0;
}
.offcanvas .offcanvas-body {
  padding: 30px;
}
.offcanvas .offcanvas-body::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.offcanvas .offcanvas-body {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.tf__toggle_link {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  margin-top: 30px;
  padding: 30px;
}

.tf__toggle_link h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 30px;
}

.tf__toggle_link ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.tf__toggle_link ul li a {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background: #ffffff1a;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 400;
  color: var(--colorWhite);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.tf__toggle_link ul li a:hover {
  background: var(--colorPrimary);
  color: var(--colorBlack);
}

/* for small device start */
.navbar-toggler {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: var(--colorPrimary);
  padding: 0;
  font-size: 16px;
  margin-right: 12px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  border-radius: 0;
}

.navbar-toggler .close_icon {
  display: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler.show .bar_icon {
  display: none;
}

.navbar-toggler.show .close_icon {
  display: block;
}

.tf__main_menu .navbar-brand {
  margin-left: 12px;
}

/* for small device end */

/* menu end */

/* Wrapper for title */
.title-wrapper {
  display: inline-flex;
  align-items: left;
  text-align: left;
  margin-left: 0px;
  background-color: rgba(20, 28, 39, 0.75); /* #141c27 with opacity */
  padding: 2px; /* Padding for the whole title area */
  border-right: 4px solid #55e6a5;
  animation: flashing-border 1s infinite alternate;
}

@keyframes flashing-border {
  0% {
    border-right: 4px solid #55e6a5;
  }
  50% {
    border-right: 0;
  }
}

/* Angle brackets style */
.angle-bracket {
  /* color: #77777780;  Light grey color with 50% opacity */
  color: #55e6a5;
  font-size: 2em; /* Adjust the size of the angle brackets */
  font-weight: 700;
  padding: 3px;
  margin-left: 4px;
  margin-right: 4px;
  font-family: 'Courier New', Courier, monospace;
}

/* Title text */
.title-text {
  color: white; /* White text color */
  margin: 3 3 3 30px; /* Add some spacing between text and angle brackets */
  font-size: 1.3em; /* Adjust the font size as needed */
  line-height: 1.1; /* Line height adjustment to vertically align */
}

/* banner start */

.tf__banner {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  height: 100vh;
  padding-top: 80px;
}

.tf__banner div {
  height: 100%;
}

.tf__banner_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 35px;
}

.tf__banner_text h1 {
  font-size: 60px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.tf__banner_text h1,
.tf__banner_text h1 span {
  font-size: 60px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
}
.tf__banner_text h1 span {
  color: var(--colorPrimary);
}

/* .tf__banner_text h3 {
  
  font-size: 40px;
  font-weight: 700;
  text-transform: capitalize;
  margin-top: 25px;
  margin-bottom: 35px;
} */

.tf__banner_text p {
  font-weight: 500;
  margin-bottom: 65px;
}

.tf__banner_text ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 28px;
}

.tf__banner_text ul li a {
  margin-right: 30px;
}

.banner_video_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-transform: capitalize;
  transition: all linear 0.3s;
}

.banner_video_btn i {
  color: var(--colorPrimary);
  font-size: 20px;
  transition: all linear 0.3s;
  font-size: 50px;
}

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

.tf__banner_img .img {
  height: 585px;
  position: relative;
  padding: 35px;
  z-index: 1;
}

.tf__banner_img .img::after {
  position: absolute;
  content: "";
  background: url(../images/shapes/banner_shape.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  animation: bannerAnimi1 linear 1s infinite alternate;
  -webkit-animation: bannerAnimi1 linear 1s infinite alternate;
}

@keyframes bannerAnimi1 {
  from {
    top: 5px;
  }

  to {
    top: 0;
  }
}

/* banner end */

/* service start */
.tf__single_service {
  padding: 0px 40px 40px 40px;
  position: relative;
  border: 3px solid #191919;
  margin-top: 62px;
}

.tf__single_service span {
  display: block;
  text-align: center;
  margin: 0 auto;
  position: relative;
  top: -46px;
  width: 100px;
}

.tf__single_service h3 {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tf__single_service p {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
}

/* service end */

/* about start */
.tf__about .tf__section_heading h5,
.tf__about .tf__section_heading h2 {
  text-align: left;
}

.tf__about_text {
  padding-left: 130px;
  padding-right: 150px;
  position: relative;
}

.tf__about_text::after {
  position: absolute;
  content: "";
  width: 100px;
  height: 2px;
  background: var(--bodyColor);
  top: 10px;
  left: 0;
}

.tf__about_text p {
  margin-bottom: 95px;
}

.tf__about_img {
  width: 395px;
  height: 475px;
  position: relative;
  z-index: 1;
  margin-top: 20px;
  margin-right: 20px;
  margin-bottom: 50px;
}

.tf__about_img::after {
  position: absolute;
  content: "";
  background: var(--colorPrimary);
  width: 95%;
  height: 80%;
  top: -20px;
  right: -20px;
  z-index: -1;
  opacity: 50%;
}

.tf__about_img_text {
  background: #232323;
  padding: 15px 30px;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
}

.tf__about_img_text i {
  width: 65px;
  height: 65px;
  text-align: center;
  line-height: 65px;
  background: #fff1;
  border-radius: 50%;
  font-size: 40px;
  margin-right: 10px;
}

.tf__about_img_text h4 {
  font-size: 16px;
  font-weight: 600;
}

.tf__about_img_text h4 span {
  display: block;
  color: var(--colorWhite);
  font-weight: 500;
  margin-top: 5px;
}

/* about end */

/* design start */
.tf__design_text {
  margin-top: 85px;
}

.tf__design_text h2 {
  font-size: 128px;
  font-weight: 600;
  line-height: 60px;
}

.tf__design_text h2 span {
  font-size: 60px;
  font-weight: 600;
  color: var(--colorWhite);
  line-height: unset;
}

.tf__design_text p {
  margin-top: 40px;
  margin-bottom: 20px;
}

.tf__design_counter {
  background: var(--bgColor);
  margin-top: 25px;
  text-align: center;
  padding: 40px;
}

.tf__design_counter .icon {
  display: block;
  width: 100px;
  margin: 0 auto;
  margin-bottom: 15px;
}

.tf__design_counter h3 {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
}

.tf__design_counter h3 span {
  /*  */
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  color: var(--colorWhite);
}

.tf__design_counter p {
  font-size: 18px;
  color: var(--colorWhite);
}

.tf__design_form {
  background: var(--bgColor);
  padding: 60px;
}

.tf__design_form h2 {
  font-size: 40px;
  margin-bottom: 25px;
}

.tf__design_form form input,
.tf__design_form form textarea {
  margin-top: 30px;
  background: none;
  border: 1px solid var(--colorPrimary);
  padding: 22px 20px;
  color: var(--colorWhite);
  font-size: 16px;
  font-weight: 500;
}

.tf__design_form form button {
  margin-top: 25px;
}

/* design end */

/* skills start */
.tf__skills {
  background: var(--bgColor);
}

.tf__single_skills {
  margin-bottom: 80px;
}

.tf__single_skills span {
  font-size: 18px;
  display: inline-block;
  border: 1px solid var(--colorPrimary);
  padding: 11px 24px;
  color: var(--colorPrimary);
}

.tf__single_skills h3 {
  font-size: 30px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 10px;
}

.tf__single_skills p {
  font-size: 16px;
  font-weight: 500;
}

.tf__team_skills_bar_single {
  background: #151c25;
  margin-bottom: 50px;
}

.tf__team_skills_bar_single p {
  padding-left: 40px;
  padding-top: 15px;
  padding-bottom: 15px;
  color: var(--colorWhite);
}

/* skills end */

/* portfolio start */
.tf__portfolio h5,
.tf__portfolio h2 {
  text-align: left;
}

.tf__portfolio_item {
  height: 550px;
  margin-top: 25px;
  overflow: hidden;
  position: relative;
  display: block;
  width: 100%;
}

.tf__portfolio_item .text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: rgb(2, 5, 10);
  background: linear-gradient(
    0deg,
    rgba(2, 5, 10, 1) 0%,
    rgba(2, 5, 10, 0.5802696078431373) 61%,
    rgba(2, 5, 10, 0) 100%
  );
  transform: scaleY(0);
  transform-origin: bottom;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  -webkit-transform: scaleY(0);
  -moz-transform: scaleY(0);
  -ms-transform: scaleY(0);
  -o-transform: scaleY(0);
}

.tf__portfolio_item .text h4 {
  text-transform: capitalize;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.tf__portfolio_item .text p {
  position: relative;
  text-transform: capitalize;
  padding-left: 60px;
}

.tf__portfolio_item .text p::after {
  position: absolute;
  content: "";
  background: var(--colorPrimary);
  width: 50px;
  height: 1px;
  top: 12px;
  left: 0;
}

.tf__portfolio_item:hover .text {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

/* portfolio end */

/* testimonial start */
.tf__single_testimonial {
  padding: 30px 90px 30px 30px;
  border: 2px solid #333f4d;
  position: relative;
  margin: 65px 12px 0px 12px;
}

.tf__single_testimonial .img {
  width: 100px;
  height: 100px;
  position: absolute;
  top: -50px;
  right: 50px;
}
.tf__single_testimonial .img img {
  border-radius: 50%;
}

.tf__single_testimonial .rating {
  color: var(--ratingColor);
}

.tf__single_testimonial .rating i {
  margin-right: 5px;
}

.tf__single_testimonial h3 {
  font-size: 22px;
  font-weight: 500;
  margin-top: 17px;
  margin-bottom: 10px;
}

.tf__single_testimonial h5 {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--bodyColor);
}

.tf__single_testimonial .description {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  position: relative;
  margin-top: 20px;
}

.tf__single_testimonial .description::after {
  position: absolute;
  content: "";
  background: url(../images/icon/quot.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 50px;
  height: 35px;
  top: 5px;
  right: -65px;
}

/* testimonial end */

/* brand start */
.tf__brand {
  background: var(--colorPrimary);
}

.tf__brand ul {
  display: flex;
  padding: 25px 0px 30px 0px;
}

.tf__brand ul li {
  -webkit-text-stroke: 1px var(--colorBlack);
  -webkit-text-fill-color: transparent;
  font-size: 110px;
  font-weight: 700;
  text-transform: uppercase;
  padding-left: 20px;
}

/* brand end */

/* blog start */
.tf__blog .row {
  position: relative;
}

.tf__blog .tf__section_heading h5,
.tf__blog .tf__section_heading h2 {
  text-align: left;
}

.tf__slingle_blog {
  margin-top: 25px;
}

.tf__blog_img {
  height: 380px;
  overflow: hidden;
  width: 100%;
}

.tf__blog_img img {
  transition: all linear 0.3s;
}

.tf__blog_text {
  width: 90%;
  padding: 30px;
  background: var(--bgColor);
  text-align: center;
  position: relative;
  left: 50%;
  top: -76px;
  transform: translateX(-50%);
}

.tf__blog_text span {
  background: var(--colorPrimary);
  color: var(--colorBlack);
  font-size: 16px;
  padding: 13px 17px;
  width: 200px;
  font-weight: 500;
  display: inline-block;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
}

.tf__blog_text ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
  margin-bottom: 10px;
}

.tf__blog_text ul li i {
  color: var(--colorPrimary);
  margin-right: 5px;
}

.tf__blog_text a {
  display: block;
  font-size: 20px;
  font-weight: 600;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

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

.tf__slingle_blog:hover img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}

.tf__blog .common_btn {
  position: absolute;
  top: -100px;
  right: 12px;
  width: auto;
}

.img-container {
  position: relative;
  background-color: #09101a;
  border: 4px solid #09101a;
  text-align: center;
  padding: 3px;
  margin-top: 15px;
  display: flex;
  justify-content: center;
}

.bottom-right-text {
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: white; /* Adjust color as needed */
  font-size: 10px; /* Adjust font size as needed */
  z-index: 2;
  margin-bottom: -15px;
}

.margin-0{
  margin-bottom: -25px;
  padding: 0px;
}

.margin-h{
  padding-top: 20px;
  margin-bottom: -10px;
}

hr {
  width: 70%;
  height: 0.5px;
  border: 0.5px inset #09101a;
  opacity: 0.4; /* Adjust opacity as needed */
  text-align: center;
  margin: 40px auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  color: white;
  margin-top: 20px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1); 
}

tr:nth-child(even) {
  background-color: #09101a;
}

th, td {
  padding: 8px;
  text-align: center;
  border: 5px solid #02050a;
}

th {
  color: whitesmoke;
  font-weight: bold;
  background-color: #09101a;
  border: 5px solid #000;
  border-bottom: 6px inset #55e6a530; /* Add a separate bottom border */
}

.checkmark{
  width: 24px;
  text-align: center;
  margin: auto;
}

/* Make table wider horizontally */
td:first-child {
  text-align: left;
}

/* Adjust cell widths */
th, td {
  width: 33%;
}

/* Add hover effect */
tbody {
  tr {
      &:hover {
          background-color: rgba(90, 90, 90, 0.2);
      }
  }
  td {
      position: relative;
      &:hover {
          &:before {
              content: "";
              position: absolute;
              left: 0;
              right: 0;
              top: -9999px;
              bottom: -9999px;
              background-color: rgba(90, 90, 90, 0.1);
              z-index: -1;
          }
      }
  }
}

/* blog end */

/* subscribe start */
.tf__subscribe {
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.tf__subscribe_overlay {
  background: #000000e3;
}

.tf__subscribe_text h3 {
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 35px;
  text-transform: uppercase;
}

.tf__subscribe_text form {
  position: relative;
}

.tf__subscribe_text form input {
  border: 1px solid var(--colorPrimary);
  padding: 27px 25px;
  color: var(--colorWhite);
  font-size: 16px;
  font-weight: 500;
  background: #131313;
}

.tf__subscribe_text form button {
  position: absolute;
  top: 8px;
  right: 8px;
}

/* subscribe end */

/* footer start */
main {
  position: relative;
  z-index: 5;
}
.footer {
  background: var(--bodyBg);
  position: relative;
}
.tf__footer_content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.tf__footer_content .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: var(--colorPrimary);
  border-radius: 50%;
  padding: 20px;
  margin-right: 35px;
}

.tf__footer_content .text {
  width: 67%;
}

.tf__footer_content .text h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.tf__footer_content .text p,
.tf__footer_content .text a {
  color: var(--bodyColor);
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.tf__footer_content .text a:hover {
  color: var(--colorPrimary);
}

.tf__footer_copyright {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #fff1;
  margin-top: 75px;
  padding: 35px 0px;
}

.tf__footer_copyright ul {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}

.tf__footer_copyright ul li a,
.tf__footer_copyright p {
  opacity: 0.5;
}

.tf__footer_copyright ul li a:hover {
  color: var(--colorPrimary);
  opacity: 1;
}

/* footer end */

/*==============================
  HOME PAGE 1 START
===============================*/

/*==============================
  HOME PAGE 2 START
===============================*/
.main_menu_2 {
  width: 250px;
  height: 100vh;
  position: fixed;
  border-right: 2px solid #151c25;
  top: 0;
  left: 0;
  background: var(--bgColor);
  z-index: 999;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.main_menu_2::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.main_menu_2 {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.main_menu_2 .logo_2 {
  background: #151c25;
  padding: 50px;
}

.main_menu_2 ul {
  padding: 30px;
  max-height: 730px;
  overflow: hidden;
  overflow-y: auto;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.main_menu_2 ul::-webkit-scrollbar {
  width: 5px;
}

.main_menu_2 ul::-webkit-scrollbar-thumb {
  background: var(--colorPrimary);
}

.main_menu_2 ul li a {
  border-radius: 5px !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  display: block;
  margin-top: 30px;
  font-weight: 500;
  font-size: 14px;
  line-height: 12px;
  text-transform: uppercase;
  color: var(--bodyColor);
  letter-spacing: 1px;
  padding: 0;
  background: none !important;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.main_menu_2 ul li a span {
  display: inline-block;
  width: 60px;
  height: 60px;
  padding: 15px;
  line-height: 25px;
  text-align: center;
  border-radius: 5px;
  margin-right: 17px;
  font-size: 24px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
.main_menu_2 ul li a span {
  background: #222831;
  /* filter: brightness(10); */
}
.main_menu_2 ul li a span {
  background: #222831;
  /* filter: brightness(10); */
}
.main_menu_2 ul li a span svg {
  filter: brightness(10);
}

.main_menu_2 ul li a:hover,
.main_menu_2 ul li a.active {
  color: var(--colorPrimary);
}
.main_menu_2 ul li a:hover svg,
.main_menu_2 ul li a.active svg {
  filter: unset;
}

.main_menu_2 ul li a:hover span,
.main_menu_2 ul li a.active span {
  background: var(--colorPrimary);
}

.tf__banner_2 {
  height: 100vh;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  position: relative;
}

.tf__banner_2 div {
  height: 100%;
}

.tf__banner_text_2 {
  justify-content: end;
  padding-bottom: 100px;
}

.tf__banner_text_2 ul {
  margin-bottom: 0;
}

.tf__banner_text_2 p {
  font-weight: 500;
  margin-bottom: 40px;
}

.tf__about_2 .tf__section_heading h5,
.tf__about_2 .tf__section_heading h2 {
  text-align: left;
}

.tf__about_text_2 ul li {
  margin-top: 80px;
}

.tf__about_text_2 ul li .top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.tf__about_text_2 ul li .top .img {
  width: 120px;
  height: 120px;
  margin-right: 30px;
}

.tf__about_text_2 ul li .top h3 {
  font-size: 30px;
  font-weight: 600;
  margin-top: 20px;
}

.tf__about_text_2 ul li p {
  font-weight: 500;
  line-height: 28px;
  margin-top: 15px;
}

.tf__about_img_2 {
  width: 570px;
  height: 640px;
  margin-left: auto;
  margin-right: 0;
  margin-top: 90px;
}

.tf__about_img_2 img {
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.tf__about_img_2 .tf__about_img_text {
  background: var(--colorPrimary);
  left: auto;
  right: auto;
  transform: translate(0);
  margin-left: auto;
  float: right;
  border-radius: 4px;
  padding: 30px;
  top: -90px;
}

.tf__about_img_2 .tf__about_img_text i {
  background: var(--colorWhite);
  border-radius: 4px;
  color: var(--colorPrimary);
}

.tf__about_img_2 .tf__about_img_text h4 {
  color: var(--colorBlack);
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
}

.tf__about_img_2 .tf__about_img_text h4 span {
  color: var(--colorBlack);
  font-size: 20px;
  font-weight: 600;
}

.tf__about_img_2::after {
  display: none;
}

.tf__about_img_2::before {
  position: absolute;
  content: "";
  background: url(../images/shapes/about_shapes.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 250px;
  height: 250px;
  top: -40px;
  right: -50px;
  z-index: -1;
  animation: aboutAmini linear 2s infinite alternate;
  -webkit-animation: aboutAmini linear 2s infinite alternate;
}

@keyframes aboutAmini {
  from {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }

  to {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
  }
}

.tf__service_2 .tf__section_heading h5 {
  color: var(--colorPrimary);
}

.tf__single_service_2 {
  position: relative;
}

.tf__single_service_2 .text {
  margin-top: 165px;
  background: var(--bgColor);
  padding: 40px;
  border-radius: 5px;
  position: relative;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.tf__single_service_2 .text span {
  display: block;
  width: 100px;
  height: 100px;
  background: var(--colorPrimary);
  padding: 12px;
  border-radius: 5px;
  position: absolute;
  top: -50px;
  left: 40px;
}
.tf__single_service_2 .text span path {
  stroke: var(--bodyBg);
}

.tf__single_service_2 .text h3 {
  font-size: 20px;
  font-weight: 500;
  margin-top: 40px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tf__single_service_2 a {
  border: 1px solid var(--colorPrimary);
  padding: 15px 30px;
  border-radius: 5px;
  transition: all linear 0.3s;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: -1;
}

.tf__single_service_2 a:hover {
  color: var(--colorBlack);
  background-color: var(--colorPrimary);
}

.tf__single_service_2.active .text {
  margin-top: 65px;
}

.tf__single_service_2.active a {
  bottom: -100px;
  z-index: 1;
}

.tf__skills_2 {
  background: var(--bgColor);
}

.tf__skills_2 .nav {
  justify-content: center;
}

.tf__skills_2 .nav .nav-item button {
  text-transform: capitalize;
  color: var(--colorWhite);
  margin: 5px 10px;
  font-weight: 500;
  border-radius: 5px;
  background: #141c27;
  font-size: 16px;
  padding: 18px 40px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.tf__skills_2 .nav .nav-item button i {
  margin-left: 10px;
}

.tf__skills_2 .nav .nav-item button:hover,
.tf__skills_2 .nav .nav-item button.active {
  background: var(--colorPrimary);
  color: var(--colorBlack);
}

.tf__single_skill_2 {
  border: 1px solid #e3e3e310;
  border-radius: 5px;
  padding: 40px 40px 40px 70px;
  margin-top: 25px;
}

.tf__single_skill_2 h3 {
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid var(--colorPrimary);
  display: inline-block;
  padding-right: 30px;
  padding-bottom: 12px;
  position: relative;
  margin-bottom: 20px;
}

.tf__single_skill_2 h3::after {
  position: absolute;
  content: "\f101";
  font-family: "Font Awesome 6 Pro";
  font-weight: 600;
  font-size: 14px;
  color: var(--colorPrimary);
  top: 2px;
  left: -30px;
}

.tf__single_skill_2 h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.tf__single_skill_2 h4 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 25px;
}

.tf__single_skill_2 p {
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 25px;
}

.tf__single_skill_2 .tf__team_skills_bar_single {
  margin: 0;
  background: none;
}

.tf__single_skill_2 .tf__team_skills_bar_single p {
  padding: 0;
  margin-bottom: 20px;
}

.tf__single_skill_2 .tf__team_skills_bar_single .barfiller {
  background: #141c27;
}
.barfiller .fill {
  background: var(--colorPrimary);
}

.tf__single_skill_2 .tf__team_skills_bar_single .tip::after {
  position: absolute;
  content: "";
  background: url(../images/skills_shape.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 40px;
  height: 40px;
  top: -7px;
  right: -4px;
}

.tf__single_skill_2 .barfiller .tip {
  margin-top: -43px;
  font-size: 13px;
}

.tf__skills_2 .education .tf__single_skill_2 p {
  margin-bottom: 0;
}

.tf__portfolio_2 .tf__portfolio_item {
  height: auto;
}

.tf__portfolio_2 .tf__portfolio_item img {
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.tf__portfolio_2 .tf__section_heading h5 {
  color: var(--colorPrimary);
}

.tf__blog_2 {
  background: var(--bgColor);
}

.tf__slingle_blog_2 {
  margin-top: 25px;
}

.tf__blog_img_2 {
  height: 350px;
  position: relative;
  width: 100%;
}

.tf__blog_img_2 img {
  border-radius: 5px;
}

.tf__blog_img_2 span {
  border-radius: 5px;
  background: var(--colorPrimary);
  display: inline-block;
  padding: 10px 20px;
  color: var(--bgColor);
  font-weight: 500;
  position: absolute;
  top: 20px;
  right: 20px;
  text-transform: uppercase;
  font-size: 14px;
  box-shadow: 0 16px 32px 0 rgba(0, 0, 0, 0.04);
  letter-spacing: 0.3px;
}

.tf__blog_text_2 .title {
  display: block;
  font-size: 20px;
  font-weight: 500;
  margin: 15px 0;
  line-height: 26px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.tf__blog_text_2 .title:hover {
  color: var(--colorPrimary);
}

.tf__blog_text_2 ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin: 15px 0;
}

.tf__blog_text_2 ul li {
  font-size: 14px;
  font-weight: 400;
}

.tf__blog_text_2 ul li i {
  color: var(--colorPrimary);
  margin-right: 5px;
}

.tf__blog_text_2 .read_btn {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  text-transform: capitalize;
  border: 1px solid var(--colorPrimary);
  border-radius: 5px;
  padding: 17px 20px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.tf__blog_text_2 .read_btn i {
  margin-left: 15px;
}

.tf__blog_text_2 .read_btn:hover {
  background: var(--colorPrimary);
  color: var(--colorBlack);
}

.tf__contact_2_text {
  padding: 60px;
  background: var(--bgColor);
  margin-top: 25px;
  text-align: center;
}

.tf__contact_2_text span {
  display: block;
  width: 70px;
  height: 70px;
  margin: 0 auto;
}

.tf__contact_2_text h3 {
  font-size: 20px;
  margin: 30px 0 15px;
}

.tf__contact_2_text p {
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 23px;
}

.tf__contact_2_text a {
  font-size: 16px;
  font-weight: 500;
  display: block;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

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

.contact_form_2 {
  text-align: center;
  margin-top: 40px;
}

.contact_form_2 form input::placeholder,
.contact_form_2 form textarea::placeholder {
  color: var(--colorWhite);
}

.contact_form_2 form input,
.contact_form_2 form textarea {
  background: none;
  border: 1px solid #fff1;
  border-radius: 5px;
  margin-top: 20px;
  padding: 17px 20px;
  color: var(--colorWhite);
}

.contact_form_2 form button {
  border-radius: 5px;
  background: var(--colorPrimary);
  color: var(--colorBlack);
  padding: 18px 67px;
  margin-top: 15px;
  font-size: 16px;
  font-weight: 500;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.contact_form_2 form button:hover {
  background: var(--colorWhite);
}

.footer_2_copyright_area .tf__footer_copyright {
  margin-top: 0;
}

.main {
  padding-left: 250px;
}

/* for mobile menu start */
.menu_2_icon {
  position: absolute;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  background: var(--colorPrimary);
  top: 10px;
  right: -60px;
  cursor: pointer;
  color: var(--colorBlack);
  font-size: 24px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  display: none;
}

.menu_2_icon.show_icon {
  background: #151c25;
  color: var(--colorWhite);
}

.menu_2_icon .close_icon {
  display: none;
}

.menu_2_icon.show_icon .bar_icon {
  display: none;
}

.menu_2_icon.show_icon .close_icon {
  display: inline-block;
}

/* for mobile menu end */
/*==============================
  HOME PAGE 2 END
===============================*/

/*==============================
  BLOG LIST START
===============================*/
.tf__blog_list_item {
  margin-bottom: 80px;
}

.tf__blog_list_img {
  position: relative;
  height: 440px;
  width: 100%;
}

.tf__blog_list_img span {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--bgColor);
  text-transform: capitalize;
  padding: 15px 20px;
  border-radius: 20px 20px 0px 0px;
  border-bottom: 2px solid var(--colorPrimary);
  line-height: 1.6;
  position: absolute;
  left: 40px;
  bottom: -20px;
}

.tf__blog_list_img span b {
  font-size: 20px;
  font-weight: 500;
}

.tf__blog_list_text {
  border-bottom: 1px solid #e3e3e320;
}

.tf__blog_list_text a {
  font-size: 30px;
  font-weight: 500;
  margin-top: 50px;
  line-height: 1.5;
  transition: all linear 0.3s;
}

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

.tf__blog_list_text p {
  margin: 20px 0px 35px;
}

.tf__sidebar_category, .tf__sidebar_comments, .tf__sidebar_gallery{
  opacity: 0.5;
}

.tf__sidebar_item {
  padding: 40px;
  background: var(--bgColor);
}

.tf__sidebar_item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
}

.tf__sidebar_search form {
  position: relative;
}

.tf__sidebar_search form input {
  background: #151c25;
  padding: 18px 20px;
  color: var(--colorWhite);
}

.tf__sidebar_search form button {
  position: absolute;
  top: 18px;
  right: 25px;
  background: none;
  color: var(--colorWhite);
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.tf__sidebar_search form button:hover {
  color: var(--colorPrimary);
}

/* Style for the dropdown container */
#dropdown {
  background-color: #09101a; /* Dark background */
  border: 1px solid #555; /* Border to define the dropdown */
  position: absolute; /* Positioning it below the search box */
  width: 100%; /* Matches the width of the search input */
  max-height: 200px; /* Limits the height */
  overflow-y: auto; /* Allows scrolling if too many items */
  z-index: 1000; /* Ensures it stays above other content */
  display: none; /* Initially hidden */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4); /* Soft shadow for depth */
}

/* Style for individual dropdown items */
.dropdown-item {
  padding: 10px;
  color: white; /* White text */
  font-size: 12px; /* Font size */
  cursor: pointer; /* Hand cursor like hyperlinks */
}

/* Style on hover */
.dropdown-item:hover {
  background-color: #55e6a5; /* Hover color */
  color: black; /* Change text color on hover */
}

.tf__sidebar_category ul li a {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  transition: all linear 0.3s;
}

.tf__sidebar_category ul li a span {
  font-weight: 500;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.tf__sidebar_category ul li a:hover {
  color: var(--colorPrimary);
}

.tf__sidebar_category ul li a:hover span {
  color: var(--colorPrimary);
}

.tf__sidebar_comments ul li {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}

.tf__sidebar_comments ul li .img {
  width: 80px;
  height: 80px;
  margin-right: 20px;
}

.tf__sidebar_comments ul li .text {
  width: 70%;
}

.tf__sidebar_comments ul li .text a {
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
  transition: all linear 0.3s;
}

.tf__sidebar_comments ul li .text a:hover {
  color: var(--colorPrimary);
}

.tf__sidebar_comments ul li .text p {
  font-weight: 500;
}

.tf__sidebar_gallery ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tf__sidebar_gallery ul li {
  width: 105px;
  height: 105px;
  overflow: hidden;
}

.tf__sidebar_gallery ul li a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.tf__sidebar_gallery ul li a .gal_img_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  font-size: 20px;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #55e6a594;
  transform: scale(0.8);
  opacity: 0;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
}

.tf__sidebar_gallery ul li:hover .gal_img_overlay {
  opacity: 1;
  color: var(--bodyBg);
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

.tf__sidebar_tags ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tf__sidebar_tags ul li a {
  font-size: 14px;
  font-weight: 400;
  border-radius: 5px;
  background: #151c25;
  padding: 9px 14px;
  text-transform: capitalize;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.tf__sidebar_tags ul li a:hover {
  background: var(--colorPrimary);
  color: var(--colorBlack);
}

/*==============================
  BLOG LIST END
===============================*/

/*==============================
  BLOG DETAILS START
===============================*/
.tf__blog_details_img {
  height: 460px;
}

.blog_details_header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-top: 10px;
}

.blog_details_header li {
  font-size: 16px;
  font-weight: 600;
}

.blog_details_header li span {
  text-transform: capitalize;
  background: var(--colorPrimary);
  padding: 10px 20px;
  display: inline-block;
  color: var(--colorBlack);
}

.tf__blog_details_text{
  margin-bottom: 45px;
}

.tf__blog_details_text h2 {
  font-size: 40px;
  margin-top: 60px;
}

.tf__blog_details_text p {
  margin-top: 32px;
}

.details_quot_text {
  background: var(--bgColor);
  padding: 45px;
  margin-top: 30px;
  margin-bottom: 30px;
  position: relative;
}

.details_quot_text p {
  margin: 0;
}

.details_quot_text h4 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 25px;
}

.details_quot_text::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 60%;
  background: var(--colorPrimary);
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.details_center_img {
  height: 290px;
  overflow: hidden;
  margin-top: 25px;
}

.details_blog_share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.details_blog_share h4 {
  font-size: 18px;
  text-align: right;
}

.details_blog_share .share_icon {
  display: flex;
  flex-wrap: wrap;
  align-items: left;
}

.details_blog_share .social_share {
  gap: 10px;
  text-align: left;
  margin-right: 80px;
}

.details_blog_share .social_share li a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 5px;
  background: #151c25;
  font-size: 14px;
  transition: all linear 0.3s;
}

.details_blog_share .social_share li a:hover {
  background: var(--colorPrimary);
  color: var(--colorBlack);
}

.details_blog_share .tags {
  gap: 20px;
}

.details_blog_share .tags li a {
  font-size: 14px;
  font-weight: 400;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

.details_blog_share .tags li a:hover {
  color: var(--colorPrimary);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.next_prev_button {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e3e3e329;
  border-bottom: 1px solid #e3e3e329;
  margin-top: 30px;
  padding: 45px 0px;
}

.next_prev_button li:last-child a p,
.next_prev_button li:last-child a p span {
  text-align: right;
}

.next_prev_button li {
  flex-basis: 50%;
  max-width: 50%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  min-height: 35px;
}
.next_prev_button li a {
  display: flex;
  flex-direction: column;
}
.next_prev_button li a i {
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}
.previous_post {
  padding-right: 10px;
}
.next_post {
  padding-left: 10px;
  text-align: right;
}

.next_prev_button li a p {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--colorPrimary);
  letter-spacing: 0.9px;
  margin-bottom: 10px;
}
.next_prev_button li a h5 {
  font-size: 18px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.next_prev_button li a p span {
  margin-top: 5px;
  display: block;
  text-transform: unset;
}

.next_prev_button li a:hover i {
  color: var(--colorPrimary);
}

.formErrors{
  color: #992b1a;
  font-weight: 650;
}

.responseMessage{
  color: #55E65c;
}


.tf__details_bloger {
  background: var(--bgColor);
  padding: 50px;
  margin-top: 100px;
  position: relative;
}

.tf__details_bloger h3 {
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
}

.tf__details_bloger span {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  display: block;
  text-transform: uppercase;
  margin: 5px 0 15px;
  letter-spacing: 0.6px;
  color: var(--colorPrimary);
}

.tf__details_bloger a {
  display: inline-block;
  margin-top: 20px;
  transition: all linear 0.3s;
  -webkit-transition: all linear 0.3s;
  -moz-transition: all linear 0.3s;
  -ms-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
}

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

.tf__details_bloger .img {
  width: 100px;
  height: 100px;
  position: absolute;
  top: -40px;
  right: 50px;
}
.tf__details_bloger .img img {
  border-radius: 50%;
  background-color: #09101a;
  border: 16px #09101a;
  border: 6px solid #09101a; 
}

.tf__input_comment h2 {
  font-size: 40px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.tf__input_comment form input,
.tf__input_comment form textarea {
  margin-top: 30px;
  background: none;
  border: 1px solid var(--colorPrimary);
  padding: 22px 20px;
  color: var(--colorWhite);
  font-size: 16px;
  font-weight: 500;
}

.tf__input_comment form button {
  margin-top: 25px;
  width: 100%;
}

/* Style for the Cusdis Comment Form Wrapper */
#cusdis_thread {
  border: 1px solid var(--colorPrimary); /* Match border color */
  padding: 20px;
  background-color: var(--bgColor); /* Match background color */
  color: var(--colorWhite); /* Match text color */
  font-family: var(--PrimaryFont); /* Match primary font */
  width: 100%;
  max-width: 800px; /* Adjust max width as needed */
  margin: 20px auto;
}

/* Style for the Cusdis Input Fields */
#cusdis_thread input,
#cusdis_thread textarea {
  background: none;
  border: 1px solid var(--colorPrimary); /* Primary color border */
  padding: 12px 20px;
  color: var(--colorWhite); /* Match text color */
  font-size: 16px;
  font-weight: 300;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 10px;
}

#cusdis_thread input::placeholder,
#cusdis_thread textarea::placeholder {
  color: #a6a6ac; /* Placeholder color */
}

:root {
  --cusdis-font-size: 16px;
  --cusdis-font-family: var(--PrimaryFont); /* Use your font */
  --cusdis-color: var(--colorWhite);
  --cusdis-bg: var(--bgColor); /* Background color */
  --cusdis-border: 1px solid var(--colorPrimary);
  --cusdis-input-bg: none;
  --cusdis-input-color: var(--colorWhite);
  --cusdis-link-color: var(--colorPrimary);
  --cusdis-input-border: 1px solid var(--colorPrimary);
}

/* Style for the Submit Button */
#cusdis_thread button {
  padding: 15px 30px;
  background: var(--colorPrimary);
  color: var(--colorBlack); /* Text color for the button */
  font-weight: 500;
  transition: all 0.3s linear;
  border: none;
  cursor: pointer;
}

div#root div.px1{
  background-color: #02050a;
}

#cusdis_thread button:hover {
  background: #141c27; /* Dark background on hover */
  color: var(--colorWhite); /* White text color on hover */
}

/* Additional Styling for Cusdis Elements */
.cusdis-comment {
  margin-top: 20px;
  padding: 10px;
  border-top: 1px solid var(--colorPrimary); /* Match primary color for separation */
}

.cusdis-comment .cusdis-comment-content {
  color: var(--colorWhite); /* Match text color */
}

.cusdis-comment .cusdis-comment-author {
  font-weight: bold;
  color: var(--colorPrimary); /* Highlight author in primary color */
}


.tf__subscribe_2 .tf__subscribe_overlay {
  background: #0000;
}

.tf__subscribe_2 .tf__subscribe_text form input {
  background: var(--bgColor);
}

/*==============================
  BLOG DETAILS END
===============================*/

/*==============================
  CONTACT START
===============================*/
.tf__section_heading.left h2,
.tf__section_heading.left h5 {
  text-align: left;
}
.tf__contact_form_area h2 {
  font-size: 40px;
  margin-bottom: 30px;
}

.tf__contact_form_area form {
  background: var(--bgColor);
  padding: 0px 40px 40px 40px;
}

.tf__contact_form_area form input,
.tf__contact_form_area form textarea {
  border-bottom: 1px solid #333f4d;
  background: none;
  padding: 20px 0px;
  margin-top: 45px;
  color: var(--colorWhite);
}

.tf__contact_form_area form button {
  width: 100%;
  margin-top: 35px;
}

.tf__contact_map {
  width: 100%;
  height: 100%;
}

.tf__contact_map iframe {
  width: 100%;
  height: 100%;
}

/*==============================
  CONTACT END
===============================*/
/*==============================
 TEXT ANIMATION START
===============================*/
.text_hover_animaiton {
  line-height: 15px;
}
.text_hover_animaiton:hover {
  --y: -8px;
}

.text_hover_animaiton:hover .menu-text div {
  --m: calc(16px * -1);
}

.hover_black .menu-text {
  text-shadow: 0 16px 0 var(--colorBlack);
}

.menu-text {
  display: -webkit-box;
  display: -ms-flexbox;
  overflow: hidden;
  text-shadow: 0 16px 0 var(--colorPrimary);
  display: flex;
}

.menu-text div {
  display: block;
  backface-visibility: hidden;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  transform: translateY(var(--m)) translateZ(0);
}

.text_hover_animaiton:hover .menu-text div:nth-child(1) {
  -webkit-transition-delay: 0.05s;
  transition-delay: 0.05s;
}
.text_hover_animaiton:hover .menu-text div:nth-child(2) {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.text_hover_animaiton:hover .menu-text div:nth-child(3) {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}
.text_hover_animaiton:hover .menu-text div:nth-child(4) {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.text_hover_animaiton:hover .menu-text div:nth-child(5) {
  -webkit-transition-delay: 0.25s;
  transition-delay: 0.25s;
}
.text_hover_animaiton:hover .menu-text div:nth-child(6) {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.text_hover_animaiton:hover .menu-text div:nth-child(7) {
  -webkit-transition-delay: 0.35s;
  transition-delay: 0.35s;
}
.text_hover_animaiton:hover .menu-text div:nth-child(8) {
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.text_hover_animaiton:hover .menu-text div:nth-child(9) {
  -webkit-transition-delay: 0.45s;
  transition-delay: 0.45s;
}
.text_hover_animaiton:hover .menu-text div:nth-child(10) {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.text_hover_animaiton:hover .menu-text div:nth-child(11) {
  -webkit-transition-delay: 0.55s;
  transition-delay: 0.55s;
}
.text_hover_animaiton:hover .menu-text div:nth-child(12) {
  -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.text_hover_animaiton:hover .menu-text div:nth-child(13) {
  -webkit-transition-delay: 0.7s;
  transition-delay: 0.7s;
}
.text_hover_animaiton:hover .menu-text div:nth-child(14) {
  -webkit-transition-delay: 75s;
  transition-delay: 0.75s;
}
.text_hover_animaiton:hover .menu-text div:nth-child(15) {
  -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}
.text_hover_animaiton:hover .menu-text div:nth-child(16) {
  -webkit-transition-delay: 0.85s;
  transition-delay: 0.85s;
}

.zyan_animation[data-animation-type="fadeIn"] {
  opacity: 0.7;
}
/*==============================
 TEXT ANIMATION END
===============================*/
/*==============================
  PRELOADER START
===============================*/

body.loaded {
  overflow: hidden !important;
  height: 100% !important;
}

.preloader {
  position: fixed;
  z-index: 10;
  height: 100vh;
  width: 100%;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: transparent;
  z-index: 99999999999999;
}

.preloader svg {
  position: absolute;
  top: 0;
  width: 100vw;
  height: 110vh;
  fill: #1a1a1a;
}

h5.preloader-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  color: #333;
}

@media (max-width: 1040px) {
  h5.preloader-text {
    font-size: 40px;
  }
}
h5.preloader-text::after {
  content: "one sec...";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--colorPrimary);
  animation: move 2s infinite alternate;
}
@keyframes move {
  from {
    clip-path: circle(50px at 0% 50%);
  }
  to {
    clip-path: circle(50px at 100% 50%);
  }
}
/*==============================
  PRELOADER END
===============================*/

/*==============================
  MEGIC CURSOR START
===============================*/
.anim_line {
  display: block;
  overflow: hidden;
}

#magic-cursor {
  position: relative;
  z-index: 9999;
}
@media (max-width: 1040px) {
  #magic-cursor {
    display: none;
  }
}

#ball {
  position: fixed;
  display: block;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  border: 2px solid #fff;
  border-radius: 50%;
  pointer-events: none;
  opacity: 1;
}

.ball-drag,
.ball-view,
.ball-gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 20px;
  color: #000;
  height: 100%;
}

.ball-view {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 0 5px;
  color: #222;
  height: 100%;
  text-align: center;
  font-weight: 500;
  text-transform: capitalize;
}
/*==============================
  MEGIC CURSOR END
===============================*/
/*==============================
  POPUP END
===============================*/

.zyan-popup .mfp-content {
  width: 500px;
  margin: 0 auto;
  background: var(--bodyBg);
}
@media (max-width: 575px) {
  .zyan-popup .mfp-content {
    width: 90%;
  }
}
.des {
  padding: 30px 40px;
}
.des .popup_title {
  margin-bottom: 20px;
}

.des .details_quot_text {
  margin: 20px 0 !important;
  padding: 20px 30px;
}
.des .category {
  text-transform: uppercase;
  color: var(--colorPrimary);
  letter-spacing: 1px;
  margin: 5px 0;
  display: block;
  font-size: 14px;
}
/*==============================
  POPUP END
===============================*/
.interactive-card {
  background: #141c27;
  border: 1px solid var(--colorPrimary);
  padding: 25px;
  margin: 3px;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: default;
  min-height: 150px; /* adjust based on your content */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.interactive-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--colorPrimary);
  margin-bottom: 10px;
}

.interactive-card .short {
  font-weight: 400;
  color: var(--bodyColor);
  margin-bottom: auto;
}

.interactive-card .details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: var(--colorWhite);
  margin-top: 10px;
  padding-bottom: 5px;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  z-index: 2;
  position: relative;
}

.card-header h3 {
  margin: 0;
}

.arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
  color: var(--colorPrimary);
}

.interactive-card.active .arrow {
  transform: rotate(180deg); /* points up when active */
}

.details {
  position: relative;
  z-index: 1;
}

.details a {
  pointer-events: auto;
  z-index: 3;
  position: relative;
}

/* timeline */

.timeline {
  position: relative;
  margin: 60px auto;
  width: 100%;
  max-width: 900px;
  padding-left: 40px;
  padding-right: 40px;
}

.timeline-container {
  position: relative;
  max-width: 1000px;
  margin: auto;
  padding: 40px 0;
}
/* Central vertical line */
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  background: var(--colorPrimary);
  z-index: 0;
}

/* Timeline items */
.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 30px;
  box-sizing: border-box;
}

/* LEFT side dot */
.timeline-item.left::after {
  content: "";
  position: absolute;
  top: 30px;
  right: -10px;
  width: 17px;
  height: 17px;
  background: var(--colorPrimary);
  border: 4px solid #09101a;
  border-radius: 50%;
  z-index: 2;
}

/* RIGHT side dot */
.timeline-item.right::before {
  content: "";
  position: absolute;
  top: 30px;
  left: -10px;
  width: 17px;
  height: 17px;
  background: var(--colorPrimary);
  border: 4px solid #09101a;
  border-radius: 50%;
  z-index: 2;
}

.timeline-container::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  background: var(--colorPrimary);
  z-index: 0;
}


.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.right {
  left: 50%;
  text-align: left;
}

.timeline-content {
  background: #151c25;
  padding: 20px;
  position: relative;
  border-radius: 6px;
  border: 1px solid var(--colorPrimary);
}

.timeline-content .year {
  font-size: 14px;
  color: var(--colorPrimary);
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .timeline-item {
    width: 100%;
    left: 0 !important;
    text-align: left;
    padding-left: 30px;
    padding-right: 20px;
    margin-bottom: 40px;
  }

  .timeline-item.left::after,
  .timeline-item.right::before {
    display: none;    
  }

  .timeline-box {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 auto;
  }

}


/* skills new design */

.skill-card {
  padding: 1rem;
  background: #1e1e1e;
  border-radius: 10px;
  border-left: 4px solid #00ffa2;
}
.skill-header {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  margin-top: 10px;
}
.skill-desc {
  font-size: 0.9rem;
  color: #bbb;
  margin-top: 5px;
}

/* studies */

.online-studies {
  text-align: center;
  padding-top: 30px;
}

.study-links {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.study-pill {
  border: 1px solid var(--colorPrimary);
  background-color: transparent;
  color: var(--colorPrimary);
  padding: 10px 20px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.study-pill i {
  color: var(--colorPrimary);
  margin-right: 8px;
  transition: color 0.3s ease;
  transition: transform 0.3s ease;
}

.study-pill:hover {
  background-color: var(--colorPrimary);
  color: #141c27;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(85, 230, 165, 0.2);
  font-weight: 600;
  transform: scale(1.1);
}

.study-pill:hover i {
  color: #141c27; /* icon turns black on hover */
}


.center{
  text-align: center;
}

/* counter */
.tf__counter_section {
  background-color: rgba(255, 255, 255, 0.015);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.counter-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(85, 230, 165, 0.2);
  border-radius: 16px;
  padding: 40px 20px;
  text-align: center;
  color: var(--colorWhite);
  font-family: var(--PrimaryFont);
  transition: transform 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.counter-box:hover {
  transform: translateY(-5px);
  border-color: var(--colorPrimary);
}
.counter-box h3 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--colorPrimary);
}
.counter-box p {
  margin: 0;
  color: var(--bodyColor);
  font-size: 16px;
}

.counter {
  transition: opacity 0.8 ease;
}

.counter.ready {
  opacity: 1;
}

/* available for work */

.availability-status {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  gap: 8px;
  color: var(--bodyColor);
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #55e6a5;
  box-shadow: 0 0 6px #55e6a5;
  animation: pulse 2s infinite ease-in-out;
  position: relative;
  top: 1px;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.5); opacity: 0.4; }
  100% { transform: scale(1); opacity: 0.9; }
}

/* terminal */
.terminal-status {
  font-family: "IBM Plex Mono", monospace;
  background-color: #0a0f1a;
  color: #55e6a5;
  padding: 15px 20px;
  border: 1px solid rgba(85, 230, 165, 0.2);
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.8;
  margin-top: 20px;
}

.terminal-line {
  margin-bottom: 6px;
}

.afk-toggle {
  margin-top: 10px;
  font-family: inherit;
  background: #141c27;
  border: 1px solid #55e6a5;
  color: #55e6a5;
  padding: 4px 12px;
  cursor: pointer;
  transition: background 0.3s;
}

.afk-toggle:hover {
  background: #55e6a5;
  color: #02050a;
}

/* fluff section*/

  .console-output {
    background-color: rgba(20, 28, 39, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 5px 8px;
    font-family: var(--secondaryFont);
    font-size: 0.95rem;
    color: #55e6a5;
    line-height: 1.6;
    white-space: pre-line;
  }

  .fluff{
    max-width: 75ch; font-size: 1.1rem;
  }

  .console-output .code-block {
    margin: 0;
    line-height: 1.3;
  }

  .glitchbox img {
    filter: brightness(1.05) saturate(1.05);
    border-radius: 8px;
    transition: transform 0.3s ease;
  }

  .glitchbox img:hover {
    transform: scale(1.03) rotate(-1deg);
  }

  /* game */
  #xp-bar-container {
    position: fixed;
    bottom: 10px;
    left: 20px;
    width: 250px;
    height: 20px;
    background: #333;
    border: 1px solid var(--colorPrimary);
    border-radius: 5px;
    overflow: hidden;
    z-index: 9999;
  }
  #xp-bar-fill {
    height: 100%;
    width: 0%;
    background: var(--colorPrimary);
    transition: width 0.3s ease;
  }
  #xp-label {
    position: absolute;
    font-size: 12px;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #09101a;
    font-family: var(--secondaryFont);
  }
  .level-up-toast {
    position: fixed;
    bottom: 40px;
    left: 20px;
    background: var(--colorPrimary);
    color: #02050a;
    padding: 8px 12px;
    border-radius: 5px;
    font-weight: bold;
    animation: fadeOut 3s forwards;
  }
  @keyframes fadeOut {
    0% { opacity: 1; }
    80% { opacity: 1; }
    100% { opacity: 0; transform: translateY(-10px); }
  }

  /* services */

  .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }

  .service-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: #0c1017;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    transition: border-color 0.3s ease;
  }

  .service-item:hover {
    border-color: var(--colorPrimary);
  }

  .icon-circle {
    background: rgba(85, 230, 165, 0.1);
    color: var(--colorPrimary);
    font-size: 1.6rem;
    padding: 0.9rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    height: 52px;
  }

  .service-text h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }

  .service-text p {
    font-size: 0.95rem;
    color: var(--bodyColor);
  }

 /* project tabs */

.project-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  justify-content: center;
}

.tab-btn {
  position: relative;
  padding: 10px 20px;
  border: 1px solid var(--colorPrimary);
  background: transparent;
  color: var(--colorPrimary);
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}

.tab-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 0;
  height: 2px;
  background: var(--colorPrimary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.tab-btn:hover::after,
.tab-btn.active::after {
  width: 60%;
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--colorPrimary);
  color: var(--colorBlack);
}

.name-heading {
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: var(--colorWhite);
}

.subtitle-muted {
  font-size: 0.95rem;
  color: var(--bodyColor);
  opacity: 0.75;
  font-style: italic;
}

/*projects tags */

.tag {
  display: inline-block;
  padding: 3px 8px;
  margin: 10px 5px 0px 0px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  white-space: nowrap;
  border: 1px solid;
  transition: background-color 0.25s, color 0.25s, transform 0.2s;
  transform: translateZ(0); /* triggers GPU acceleration */
  will-change: transform;
}

.tag:hover {
  background-color: var(--colorPrimary);
  color: #141c27;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.2);
  z-index: 1;
}

.tag[data-tag="AI"] {
  color: #ff6f61;
  border-color: #ff6f61;
  background-color: rgba(255, 111, 97, 0.1);
}

.tag[data-tag="Web"] {
  color: #00bfff;
  border-color: #00bfff;
  background-color: rgba(0, 191, 255, 0.1);
}

.tag[data-tag="Game"] {
  color: #32cd32;
  border-color: #32cd32;
  background-color: rgba(50, 205, 50, 0.1);
}

.tag[data-tag="SEO"] {
  color: #ffc107;
  border-color: #ffc107;
  background-color: rgba(255, 193, 7, 0.1);
}

.tag[data-tag="Tool"] {
  color: #9c27b0;
  border-color: #9c27b0;
  background-color: rgba(156, 39, 176, 0.1);
}

.tag[data-tag="Experimental"] {
  color: #ff9800;
  border-color: #ff9800;
  background-color: rgba(255, 152, 0, 0.1);
}

.tag[data-tag="Design"] {
  color: #00e676;
  border-color: #00e676;
  background-color: rgba(0, 230, 118, 0.08);
}

.tag[data-tag="Automation"] {
  color: #cddc39;
  border-color: #cddc39;
  background-color: rgba(205, 220, 57, 0.1);
}

.tag[data-tag="Utility"] {
  color: #9e9e9e;
  border-color: #9e9e9e;
  background-color: rgba(158, 158, 158, 0.1);
}

.tag[data-tag="Languages"] {
  color: #009688;
  border-color: #009688;
  background-color: rgba(0, 150, 136, 0.1);
}

.tag[data-tag="Book"] {
  color: #3f51b5;
  border-color: #3f51b5;
  background-color: rgba(63, 81, 181, 0.1);
}

.tag[data-tag="Infrastructure"] {
  color: #f57c00;
  border-color: #f57c00;
  background-color: rgba(245, 124, 0, 0.1);
}

.tag[data-tag="link"] {
  color: var(--colorPrimary);
  border-color: var(--colorPrimary);
  background-color: rgba(255, 255, 255, 0.05);
  font-weight: 500;
  padding-left: 10px;
  padding-right: 10px;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-decoration: none;
}

.tag[data-tag="link"]:hover {
  background-color: var(--colorPrimary);
  color: #141c27;
}
.tag[data-tag="image"] {
  color: var(--colorPrimary);
  border-color: var(--colorPrimary);
  background-color: rgba(255, 255, 255, 0.05);
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
}

.tag[data-tag="image"]:hover {
  background-color: var(--colorPrimary);
  color: #141c27;
}

.thumb-preview {
  display: none;
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.tag[data-tag="image"]:hover .thumb-preview {
  display: block;
}

.project-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--colorPrimary);
  text-decoration: none;
  padding: 6px 10px;
  border: 1px solid var(--colorPrimary);
  border-radius: 4px;
  transition: all 0.2s ease;
}

.project-link:hover {
  background-color: var(--colorPrimary);
  color: #141c27;
}

/* navbar update */

/* Sticky Navbar Fix */
.main_menu.menu_fix {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background-color: #0f141d;
  transition: all 0.3s ease-in-out;
}

/* Toggle Icon Swap for Mobile */
.navbar-toggler.show .bar_icon {
  display: none;
}
.navbar-toggler.show .close_icon {
  display: inline;
}

/* Dropdown Animation */
.main_menu .droap_menu {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-item:hover .droap_menu {
  opacity: 1;
  transform: translateY(0);
}

/* Nav Link Styling with Underline Animation */
.nav-link {
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
  line-height: 1.5;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px; /* moves underline below the text */
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background-color: var(--colorPrimary);
  opacity: 0;
  transition: width 0.3s ease, opacity 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 65%;
  opacity: 1;
}

.nasa-image {
  max-width: 400px;
  margin: 0 auto;
}
.nasa-image img {
  width: 100%;
  height: auto;
}

.qual-badge {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 400;
  color: #aaa;
  margin-right: 10px;
  opacity: 0.75;
  border-left: 2px solid var(--colorPrimary);
  padding-left: 8px;
  gap: 6px;
}

.qual-badge i {
  font-size: 13px;
  color: var(--colorPrimary);
}


.name-heading {
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--colorPrimary);
}

.about-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 840px;
  padding: 0 1rem;
}

.about-wrapper .fluff {
  line-height: 1.7;
}

.code-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(85, 230, 165, 0.25);
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 0 0 8px rgba(85, 230, 165, 0.1);
  overflow: hidden;
  max-width: 170px;
  font-size: 0.55rem;
}

.code-card-header {
  background: rgba(85, 230, 165, 0.08);
  color: var(--colorPrimary);
  font-weight: 600;
  font-size: 0.55rem;
  padding: 6px 10px;
  font-family: var(--secondaryFont);
}

.code-card-body {
  padding: 12px;
  text-align: left;
}

.avatar-img {
  width: 80px;
  border-radius: 6px;
  display: block;
  margin: 0 0 10px;
}


.code-card .console-output {
  background: transparent;
  border: none;
  padding: 0;
  font-size: 0.45rem;
}

.code-block {
  background: #010308;
  border-radius: 6px;
  display: block;
  padding: 12px;
  margin-top: 15px;
  overflow-x: auto;
  max-width: 100%;
  color: #ccc;
  font-family: var(--secondaryFont);
  white-space: pre-wrap;
  font-size: 0.55rem;
  line-height: 1.4;
}

.code-block span {
  font-size: inherit;
}

.code-key {
  color: var(--colorPrimary);
}

.code-value {
  color: #7dd3fc;
}

.code-keyword {
  color: #ccc;
}

.code-variable {
  color: var(--colorPrimary);
}

.about-text {
  flex: 1;
}

@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .code-card {
    margin-bottom: 1.5rem;
  }
  .avatar-img {
    width: 60px;
  }
}


.about-heading .about-title {
  color: var(--colorPrimary);
}

.about-heading .about-subtitle {
  margin-top: 13px;
}

.tf__section_heading .accent-line {
  width: 60px;
  height: 2px;
  background: rgba(var(--pc-accent-rgb), 0.4);
  margin: 5px auto 0;
  opacity: 0;
  transform: translateX(-20px);
  animation: lineFadeSlide 0.5s ease-out forwards;
}

@keyframes lineFadeSlide {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
#about-sub {
  position: relative;
  overflow: hidden;
  z-index: 0;
}

#about-sub::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(85, 230, 165, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(85, 230, 165, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: -1;
  mask-image: linear-gradient(to bottom, transparent, #000 15%, #000 85%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 15%, #000 85%, transparent);
}

#about-sub .container {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.fade-in {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card-section-wrapper {
  position: relative;
}

.project-grid {
  max-height: 660px; /* Adjust for ~3 rows */
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.project-grid.expanded {
  max-height: 5000px;
}

.project-toggle {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, var(--bodyBg) 80%, transparent 100%);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  pointer-events: none;
  transition: opacity 0.3s ease;
  font-size: 1.4rem;
  padding: 20px;
  cursor: pointer;
}

.project-grid.expanded + .project-toggle {
  opacity: 0;
  pointer-events: none;
}

.project-toggle i {
  pointer-events: auto;
  cursor: pointer;
  color: var(--colorPrimary);
  font-size: 1.4rem;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.project-toggle i:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

/*typing words */
.cd-words-wrapper {
  display: inline-block;
  position: relative;
  height: 1.2em; /* adjust based on font-size */
  min-width: 200px; /* ensure space for longest word */
  overflow: hidden;
  vertical-align: top;
}

.cd-words-wrapper b {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  white-space: nowrap;
}

.cd-words-wrapper b.is-visible {
  opacity: 1;
  position: relative;
}

/* Accessible helper */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.proj-card {
  display: grid;
  grid-template-rows: auto auto auto 0fr;
  gap: 14px;
  padding: 18px 18px 16px;
  border: 1px solid var(--pc-stroke);
  border-radius: 14px;
  background: var(--pc-bg);
  box-shadow: var(--pc-shadow);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.proj-card[aria-expanded="true"] {
  grid-template-rows: auto auto auto 1fr;
}

.proj-card[data-category="web"] {
  --pc-accent: #55e6a5;
  --pc-accent-rgb: 85,230,165;
}
.proj-card[data-category="tools"] {
  --pc-accent: #45d6c9;
  --pc-accent-rgb: 69,214,201;
}
.proj-card[data-category="apps"] {
  --pc-accent: #55c0e6;
  --pc-accent-rgb: 85,192,230;
}
.proj-card[data-category="books"] {
  --pc-accent: #55a5e6;
  --pc-accent-rgb: 85,165,230;
}
.proj-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(transparent 39px, var(--pc-grid) 40px) repeat-y,
    linear-gradient(90deg, transparent 39px, var(--pc-grid) 40px) repeat-x;
  background-size: 40px 40px;
  opacity: .08;
  pointer-events: none;
}
.proj-card::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8px;
  width: 24px;
  height: 24px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' stroke='%239adfc6' stroke-width='1.8' fill='none'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center/16px 16px no-repeat;
  opacity: .25;
  transform: translateX(-50%);
  pointer-events: none;
  transition: opacity .2s ease;
  z-index: 0;
}
.proj-card[aria-expanded="true"]::after {
  opacity: 0;
}
.proj-card > * {
  position: relative;
  z-index: 1;
}
.proj-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,.45);
}
.proj-card:hover,
.proj-card:focus-within {
  border-color: rgba(var(--pc-accent-rgb), .35);
}

.pc-top {
  display: grid;
  grid-template-columns: 48px 1fr 36px;
  align-items: center;
  column-gap: 14px;
  padding-inline: 6px;
}
.pc-thumb {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  border: 1px solid var(--pc-stroke);
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(var(--pc-accent-rgb), .18), transparent 60%),
    linear-gradient(135deg, rgba(var(--pc-accent-rgb), .06), rgba(30,230,230,.06));
  display: grid;
  place-items: center;
  color: var(--pc-accent);
  transition: transform .3s ease, opacity .3s ease;
}

.proj-card:hover .pc-thumb {
  transform: scale(1.05);
  opacity: .9;
}
.pc-title .pc-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--pc-text);
  letter-spacing: .2px;
  line-height: 1.2;
}
.pc-title .pc-sub {
  font-size: .95rem;
  color: var(--pc-dim);
  margin-top: 2px;
}
.pc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.pc-tags .tag {
  font-family: var(--secondaryFont, "IBM Plex Mono", monospace);
  font-size: .72rem;
  padding: 3px 8px;
  border: 1px solid var(--pc-stroke);
  border-radius: 8px;
  color: #9adfc6;
  background: rgba(85,230,165,.06);
}
.pc-tags .tag::before {
  content: "[";
  margin-right: 2px;
  opacity: .8;
}
.pc-tags .tag::after {
  content: "]";
  margin-left: 2px;
  opacity: .8;
}

.pc-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
}
.pc-btn {
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 600;
  font-size: .9rem;
  border: 1px solid var(--pc-stroke);
  background: #0b121b;
  color: #e7fff6;
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
}
.pc-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(var(--pc-accent-rgb), .4);
  box-shadow: 0 0 14px rgba(var(--pc-accent-rgb), .22);
}
.pc-demo {
  background: linear-gradient(135deg, rgba(var(--pc-accent-rgb), .16), rgba(30,230,230,.12));
}
.pc-repo {
  background: rgba(255,255,255,.04);
}

.pc-details {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .28s ease, opacity .2s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.proj-card[aria-expanded="true"] .pc-details,
.pc-details.open {
  max-height: 360px;
  opacity: 1;
  padding-top: 10px;
}
.pc-link {
  grid-column: 3;
  inline-size: 36px;
  block-size: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  border: 1px solid var(--pc-stroke);
  transition: all .18s ease;
  justify-self: end;
}
.pc-link:hover {
  border-color: rgba(var(--pc-accent-rgb), .35);
  box-shadow: 0 0 0 6px rgba(var(--pc-accent-rgb), .07);
}
.pc-link:empty {
  visibility: hidden;
  pointer-events: none;
}
.icon-chain {
  stroke: #9adfc6;
  stroke-width: 1.8;
  fill: none;
}

.pc-hr {
  border: none;
  border-top: 1px dashed rgba(255,255,255,.12);
  margin: 4px 0 12px;
}

.pc-desc {
  color: #cfe9e2;
  line-height: 1.6;
  margin: 0;
}
.pc-feats {
  display: grid;
  gap: 6px;
  padding-left: 1rem;
  list-style: disc;
  color: #a6cfc4;
}

.project-card {
  display: block;
}
.project-card .proj-card {
  width: 100%;
}

.proj-card.is-featured {
  border-color: rgba(var(--pc-accent-rgb), .45);
  box-shadow: 0 16px 40px rgba(var(--pc-accent-rgb), .08);
}
.proj-card.is-featured .pc-thumb {
  color: #1ee6e6;
}

:where(.pc-link,.pc-btn,.pc-filter):focus-visible {
  outline: 2px solid #55e6a5;
  outline-offset: 2px;
}

.proj-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.pc-filter {
  padding: 10px 14px;
  border: 1px solid var(--pc-stroke);
  border-radius: 12px;
  background: rgba(255,255,255,.03);
  color: #e6f6f2;
  font-weight: 600;
  letter-spacing: .2px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform .15s, border-color .2s, box-shadow .2s;
}
.pc-filter .dot {
  inline-size: 10px;
  block-size: 10px;
  border-radius: 999px;
}
.pc-filter.is-active {
  border-color: rgba(85,230,165,.45);
  box-shadow: 0 6px 20px rgba(85,230,165,.08);
}
.dot.all { background: linear-gradient(90deg,var(--c-web), var(--c-apps)); }
.dot.web { background: var(--c-web); }
.dot.tools { background: var(--c-tools); }
.dot.apps { background: var(--c-apps); }
.dot.books { background: var(--c-books); }
.dot.games { background: var(--c-games); }

#projectGrid.filter-glow {
  box-shadow: inset 0 2px 0 rgba(85,230,165,.25);
}

@media (max-width: 900px) {
  .pc-title .pc-sub {
    display: none;
  }
}
@media (max-width: 640px) {
  .proj-card {
    gap: 12px;
    padding: 16px;
  }
  .pc-top {
    grid-template-columns: 40px 1fr 36px;
  }
  .pc-thumb {
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }
  .pc-btn {
    flex: 1;
    text-align: center;
  }
}

/*==============================
  Hackathons
===============================*/
.tf__hackathons .hackathon-card {
  background: var(--pc-bg);
  border: 1px solid var(--pc-stroke);
  border-radius: 20px;
  padding: 32px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 20px 48px rgba(2, 5, 10, 0.45);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.tf__hackathons .hackathon-card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--pc-accent-rgb), 0.55);
  box-shadow: 0 28px 64px rgba(2, 5, 10, 0.55);
}

.tf__hackathons .hackathon-logo {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.tf__hackathons .hackathon-logo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}

.tf__hackathons .hackathon-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-family: var(--secondaryFont);
}

.tf__hackathons .hackathon-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(var(--pc-accent-rgb), 0.45);
  background: rgba(var(--pc-accent-rgb), 0.12);
  color: var(--colorPrimary);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tf__hackathons .hackathon-date {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bodyColor);
}

.tf__hackathons .hackathon-title {
  font-size: 1.6rem;
}

.tf__hackathons .hackathon-description {
  color: var(--bodyColor);
}

.tf__hackathons .hackathon-info {
  display: grid;
  gap: 0.75rem;
}

.tf__hackathons .hackathon-info li {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.75rem;
  row-gap: 0.25rem;
  align-items: start;
}

.tf__hackathons .hackathon-info-label {
  font-family: var(--secondaryFont);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--bodyColor);
  white-space: nowrap;
}

.tf__hackathons .hackathon-info-value {
  color: var(--pc-text);
  font-weight: 500;
}

.tf__hackathons .common_btn {
  margin-top: auto;
  width: 100%;
}

.tf__hackathons .common_btn i {
  transition: transform 0.35s ease;
}

.tf__hackathons .common_btn:hover i {
  transform: translateX(4px);
}

@media (max-width: 575px) {
  .tf__hackathons .hackathon-card {
    padding: 28px 24px;
  }

  .tf__hackathons .hackathon-info li {
    grid-template-columns: 1fr;
  }

  .tf__hackathons .hackathon-info-label {
    white-space: normal;
  }
}
