/* 

Tooplate 2115 Marvel

https://www.tooplate.com/view/2115-marvel

*/


@import url("https://fonts.googleapis.com/css?family=Maven+Pro:400,700");
body {
  font-family: "Maven Pro", sans-serif;
  padding-top: 70px;
}

.full-screen {
  padding: 8rem 0;
}
#coding-profile {
  text-align: center;
  margin-top: 50px; /* Adjust spacing as needed */
  margin-bottom: 5rem;
}

.coding-links {
  display: flex;
  justify-content: space-around;
  gap: 25px;
  flex-wrap: wrap;
}

.coding-links a {
  background: #f9f9f9;
  padding: 20px 25px;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  color: #212121;
  font-weight: 600;
  font-size: 16px;
  width: 160px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.coding-links a img {
  width: 50px;
  height: 50px;
  margin-bottom: 12px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Hover effect */
.coding-links a:hover {
  transform: translateY(-5px);
  color: #ffc200;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.coding-links a:hover img {
  transform: scale(1.1);
}

/* Dark mode */
.dark-mode .coding-links a {
  background: #1e1e1e;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.05);
}

.dark-mode .coding-links a img {
  filter: brightness(0) invert(1); /* icons become white */
}

#skills {
  padding: 40px 20px;
  text-align: center;
}

#skills h2 {
  margin-bottom: 30px;
}

.skill-bars {
  width: 80%;
  max-width: 800px;
  margin: 0 auto;
}

.skill {
  margin-bottom: 20px;
  text-align: left;
}

.skill-name {
  font-weight: bold;
  margin-bottom: 5px;
}

.skill-bar {
  background-color: #f0f0f0;
  height: 20px;
  border-radius: 10px;
  overflow: hidden;
}

.skill-level {
  background-color: #007bff; /* Change to your desired color */
  height: 100%;
  border-radius: 10px;
  transition: width 0.5s ease; /* Smooth animation */
}

/* JavaScript to set the width of skill-level based on data-level attribute */

.small-text {
  color: #5b5b5b;
  font-size: 14px;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 50px;
  letter-spacing: 0.2px;
}

ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style: none;
}

a {
  font-weight: normal;
  text-decoration: none !important;
  transition: all 0.4s ease;
}
a:hover {
  color: #ffc200 !important;
}

.navbar-brand .uil {
  font-size: 40px;
}

p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  color: #5b5b5b;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  letter-spacing: -1px;
}

h1 {
  color: #212121;
  font-size: 2.8em;
  margin: 24px 0;
}

h2 {
  color: #353535;
  font-size: 2.4em;
  font-weight: bold;
}

h3 {
  color: #484848;
}

h3,
b, strong {
  font-weight: bold;
}

.custom-btn {
  background: #eee;
  color: #5b5b5b;
  font-weight: bold;
  border-radius: 50px;
  padding: 13px 29px;
  font-size: 14px;
  line-height: normal;
  overflow: hidden;
  transition: all 0.4s ease;
}
.custom-btn:hover {
  color: #ffc200;
}
.custom-btn.custom-btn-bg {
  background: #474559;
  color: #ffffff;
}
.custom-btn.custom-btn-bg:hover {
  background: #ffc200;
  color: #ffffff !important;
}

.animated {
  position: relative;
}

.animated-info {
  display: inline-block;
  vertical-align: top;
  margin-top: 5px;
  min-width: 260px;
  position: relative;
}

.animated-item {
  color: #ffc200;
}

.animated-item {
  font-size: 38px;
  line-height: inherit;
  display: block;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  animation: BottomTotop 6s linear infinite 0s;
}
.animated-item:nth-child(2n+2) {
  animation-delay: 2s;
}
.animated-item:nth-child(3n+3) {
  animation-delay: 4s;
}

@keyframes BottomTotop {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 0;
    transform: translateY(5px);
  }
  10% {
    opacity: 1;
    transform: translateY(0px);
  }
  25% {
    opacity: 1;
    transform: translateY(0px);
  }
  30% {
    opacity: 0;
    transform: translateY(5px);
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999999;
  will-change: transform;
  transition: transform 200ms linear;
}
.navbar[class*="-unpinned"] {
  transform: translate(0, -150%);
}
.navbar[class*="-pinned"] {
  transform: translate(0, 0);
}
.navbar[class*="headroom--not-top"] {
  background: #ffffff;
  border-bottom: 1px solid #f0f0f0;
  padding-top: 0;
  padding-bottom: 0;
}

.navbar-brand {
  font-weight: bold;
}

.navbar-expand-sm .navbar-nav .nav-link {
  padding: 0 20px;
}

.nav-link {
  font-weight: bold;
  font-size: 16px;
  overflow: hidden;
}
.nav-link span {
  position: relative;
  display: inline-block;
  transition: transform 0.3s;
}
.nav-link span:before {
  position: absolute;
  top: 100%;
  content: attr(data-hover);
  transform: translate3d(0, 0, 0);
}

.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover {
  color: #ffc200;
  font-weight: bold;
}
.navbar-light .navbar-nav .nav-link:focus span,
.navbar-light .navbar-nav .nav-link:hover span {
  transform: translateY(-100%);
}

.navbar-light .navbar-toggler-icon {
  background: none;
}

.navbar-toggler {
  border: 0;
  padding: 0;
  width: 32px;
  height: 32px;
  line-height: 32px;
  outline: none;
  cursor: pointer;
  margin-right: 10px;
}
.navbar-toggler:focus {
  outline: none;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:first-child {
  transform: rotate(45deg);
  top: 6px;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:nth-child(2) {
  display: none;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:last-child {
  transform: rotate(-45deg);
  bottom: 1px;
}
.navbar-toggler .navbar-toggler-icon {
  background: #212121;
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  transition: all 0.4s ease;
  position: relative;
}

.copyright-text {
  font-size: 16px;
  font-weight: normal;
  display: block;
}

.color-mode {
  font-weight: bold;
  cursor: pointer;
}

.color-mode-icon {
  position: relative;
  right: 6px;
}
.color-mode-icon:after {
  font-family: 'unicons';
  content: '\ea9f';
  font-size: 30px;
  font-weight: 300;
  font-style: normal;
}
.color-mode-icon.active:after {
  font-family: 'unicons';
  content: '\eb65';
  font-size: 30px;
  color: #ffffff;
}

.dark-mode {
  background: #0c0c0d;
}
.dark-mode .navbar-light .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.8);
}
.dark-mode .navbar-light .navbar-nav .nav-link:hover {
  color: #ffc200;
}
.dark-mode .navbar[class*="headroom--not-top"] {
  background: #0c0c0d;
  border-bottom: 1px solid #1f1f1f;
}
.dark-mode .small-text {
  background: #0d0c15;
  color: #ffffff;
}
.dark-mode .feature-card .uil,
.dark-mode .navbar-light .navbar-brand,
.dark-mode h1, .dark-mode h2, .dark-mode h3, .dark-mode h4, .dark-mode h5, .dark-mode h6,
.dark-mode .color-mode {
  color: #ffffff;
}
.dark-mode .owl-carousel .owl-nav button.owl-next,
.dark-mode .owl-carousel .owl-nav button.owl-prev,
.dark-mode .owl-carousel button.owl-dot {
  color: #ffffff;
}

.timeline-wrapper {
  position: relative;
  padding: 22px 0;
}
.timeline-wrapper:last-child:before {
  height: 0;
}
.timeline-wrapper:before {
  content: "";
  background: #474559;
  width: 3px;
  height: 100%;
  position: absolute;
  left: 38px;
}

.timeline-yr {
  background: #474559;
  border-radius: 100%;
  position: absolute;
  width: 75px;
  height: 75px;
  line-height: 75px;
  text-align: center;
}
.timeline-yr span {
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  display: block;
  line-height: 75px;
}

.timeline-info {
  display: inline-block;
  vertical-align: top;
  max-width: 432px;
  margin-left: 6em;
}
.timeline-info small {
  color: #474559;
  font-size: 16px;
  font-weight: bold;
  display: inline-block;
  vertical-align: middle;
  margin-left: 15px;
}

.owl-carousel .owl-nav span {
  display: none;
}
.owl-carousel .owl-nav .owl-prev:before,
.owl-carousel .owl-nav .owl-next:before {
  background: none;
  padding: 0;
  display: block;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  font-family: 'unicons';
  font-size: 100px;
  line-height: normal;
}
.owl-carousel .owl-nav .owl-prev:before {
  content: '\e833';
  left: -45px;
}
.owl-carousel .owl-nav .owl-next:before {
  content: '\e836';
  right: -45px;
}

.owl-theme .owl-nav [class*=owl-] {
  background: none;
  border-radius: 0;
  margin: 0;
  padding: 0;
  font-size: inherit;
}
.owl-theme .owl-nav [class*=owl-]:hover {
  color: #ffc200;
}
.owl-theme .owl-dots .owl-dot {
  outline: none;
}
.owl-theme .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #5b5b5b;
}

.google-map iframe {
  width: 100%;
}

.contact-form {
  position: relative;
}
.contact-form .form-control {
  background: transparent;
  border-radius: 2px;
  outline: none;
  box-shadow: none;
  font-weight: bold;
  margin: 16px 0;
}
.contact-form .form-control:not(textarea) {
  height: 48px;
}
.contact-form .form-control:hover, .contact-form .form-control:focus {
  border-color: #ffc200;
}
.contact-form .submit-btn {
  background: #ffc200;
  border-radius: 50px;
  color: #ffffff;
  font-weight: bold;
  border: 0;
  cursor: pointer;
  transition: all 0.4s ease;
}
.contact-form .submit-btn:hover {
  background: #474559;
}

.contact-info {
  background: #474559;
  border-radius: 0 0 3px 3px;
  position: relative;
  bottom: 8px;
}
.contact-info p, .contact-info a {
  color: #f7f3f3;
}

.social-links .uil {
  color: #f7f3f3;
  font-size: 20px;
  display: block;
  margin: 5px 0;
}
.social-links .uil:hover {
  color: #ffc200;
}

@media (min-width: 1270px) {
  .owl-theme .owl-dots {
    position: relative;
    bottom: 50px;
  }
}
@media (max-width: 991px) {
  .full-screen {
    padding-bottom: 4rem;
  }

  .color-mode {
    display: none;
  }

  .about-image {
    margin-top: 4em;
  }

  .mobile-mt-2,
  .contact-form {
    margin-top: 2em;
  }

  .contact-info {
    padding: 0 2rem;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 2.4em;
  }

  h2 {
    font-size: 2em;
  }

  .animated-item {
    font-size: 28px;
  }

  .navbar-collapse {
    background: #ffffff;
    text-align: center;
    padding-bottom: 20px;
  }

  .navbar-expand-sm .navbar-nav .nav-link {
    padding: 3px 20px;
  }
}
@media (max-width: 580px) {
	.animated-info {
		min-width: 200px;
	}
  .animated-item {
    font-size: 30px;
  }

  .custom-btn-group {
    text-align: center;
  }

  .custom-btn {
    display: block;
    margin: 10px 0;
  }

  .owl-theme .owl-nav {
    display: none;
  }

  .timeline-info small {
    display: block;
    margin: 10px 0 0 0;
  }
}
@media (max-width: 320px) {
  .animated-text {
    margin-top: 0;
  }

  .about-text {
    text-align: center;
  }

  .full-screen {
    padding: 4rem 0;
  }

  .mobile-block {
    display: block;
  }

  .contact-info {
    flex-direction: column;
  }

  .social-links li {
    display: inline-block;
    vertical-align: top;
  }
}
.about-image img {
  border: 5px solid #fff;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s ease-in-out;
}
.about-image img:hover {
  transform: scale(1.05);
}
.about h1 {
  font-size: 2.8rem;
  font-weight: 700;
}
.about .btn-cta {
  background: #fff;
  color: #1d2671;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 30px;
  transition: 0.3s;
}
.about .btn-cta:hover {
  background: #ff6b6b;
  color: #fff;
}




/* Navbar Styling */
.custom-navbar {
  background: rgba(255, 255, 255, 0.1); /* Transparent */
  backdrop-filter: blur(10px);
  transition: all 0.3s ease-in-out;
  padding: 15px 0;
  box-shadow: none;
}

.custom-navbar.scrolled {
  background: rgba(0, 0, 0, 0.8); /* Solid on scroll */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

/* Brand */
.navbar-brand {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: inherit !important; /* Inherit color from mode */
}

.brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
  border: 2px solid currentColor;
}

/* Links */
.nav-link {
  color: inherit !important; /* Adapt to mode */
  font-weight: 500;
  margin: 0 10px;
  position: relative;
  transition: color 0.3s ease-in-out;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: #ff9800;
  transition: width 0.3s ease-in-out;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: #ff9800 !important;
}

/* Toggler */
.navbar-toggler {
  border: none;
  outline: none;
}

/* Dark Mode */
.dark-mode .custom-navbar,
.dark-mode .color-mode {
  color: #fff;
}

.dark-mode .brand-logo {
  border-color: #fff;
}

/* Light Mode */
.light-mode .custom-navbar,
.light-mode .color-mode {
  color: #000; /* Black text for visibility */
}

.light-mode .brand-logo {
  border-color: #000;
}

.light-mode .nav-link {
  color: #333 !important;
}

body.dark-mode p {
    
  color: #dcdcdc; /* dark white shade */
}

/* Projects - Tabs + Cards */
.project-tabs .nav-link {
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
  border: 1px solid rgba(71, 69, 89, 0.25);
  color: #353535 !important;
  background: transparent;
  transition: all 0.25s ease-in-out;
}

.project-tabs .nav-link:hover {
  border-color: rgba(255, 194, 0, 0.8);
  color: #ff9800 !important;
}

.project-tabs .nav-link.active {
  background: #474559;
  border-color: #474559;
  color: #ffffff !important;
}

.project-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #f2f2f1;
  border-radius: 16px;
  padding: 26px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.project-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
}

.project-header small {
  color: #474559;
  font-weight: 700;
  font-size: 16px;
}

.project-bullets {
  margin: 18px 0 0;
  padding-left: 1.2rem;
}

.project-bullets li {
  margin-bottom: 10px;
  color: #5b5b5b;
  line-height: 1.6;
}

.project-bullets li::before {
  content: "✓";
  color: #ffc200;
  font-weight: 900;
  margin-right: 10px;
}

.project-links a.btn-primary {
  background: #474559;
  border-color: #474559;
}

.project-links a.btn-primary:hover {
  background: #ffc200;
  border-color: #ffc200;
}

.project-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.project-tags .tag {
  background: #f7f7f7;
  border: 1px solid #f2f2f1;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 700;
  color: #353535;
}

/* Dark mode */
.dark-mode .project-card {
  background: rgba(12, 12, 13, 0.78);
  border-color: #1f1f1f;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

.dark-mode .project-header small {
  color: #ffc200;
}

.dark-mode .project-bullets li {
  color: rgba(255, 255, 255, 0.82);
}

.dark-mode .project-tags .tag {
  background: rgba(255, 255, 255, 0.05);
  border-color: #1f1f1f;
  color: #ffffff;
}

/* About - identity strip */
.about-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.about-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(71, 69, 89, 0.15);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.about-meta-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 194, 0, 0.55);
  background: rgba(255, 255, 255, 0.92);
}

.about-meta-item i {
  color: #474559;
  font-size: 18px;
}

.about-meta-item a {
  color: #212121;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none !important;
}

.dark-mode .about-meta-item {
  background: rgba(12, 12, 13, 0.35);
  border-color: rgba(255, 255, 255, 0.15);
}

.dark-mode .about-meta-item:hover {
  background: rgba(12, 12, 13, 0.6);
  border-color: rgba(255, 194, 0, 0.35);
}

.dark-mode .about-meta-item i {
  color: #ffc200;
}

.dark-mode .about-meta-item a {
  color: #ffffff;
}

/* Experience + Skills (professional card/chips UI) */
.experience-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #f2f2f1;
  border-radius: 16px;
  padding: 26px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.experience-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.experience-head small {
  color: #474559;
  font-weight: 800;
}

.experience-bullets {
  margin: 16px 0 0;
  padding-left: 0;
  list-style: none;
}

.experience-bullets li {
  margin-bottom: 10px;
  color: #5b5b5b;
  line-height: 1.6;
  position: relative;
  padding-left: 26px;
}

.experience-bullets li::before {
  content: "✓";
  color: #ffc200;
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 10px;
}

.skill-category {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #f2f2f1;
  border-radius: 16px;
  padding: 18px 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.skill-category h3 {
  font-size: 18px;
  color: #353535;
  margin: 0 0 12px;
}

.skill-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  background: #f7f7f7;
  border: 1px solid #f2f2f1;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 800;
  color: #353535;
}

@media (max-width: 991px) {
  .skills-grid {
    grid-template-columns: 1fr;
  }
}

/* Dark mode */
.dark-mode .experience-card {
  background: rgba(12, 12, 13, 0.78);
  border-color: #1f1f1f;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

.dark-mode .experience-bullets li {
  color: rgba(255, 255, 255, 0.82);
}

.dark-mode .skill-category {
  background: rgba(12, 12, 13, 0.62);
  border-color: #1f1f1f;
}

.dark-mode .chip {
  background: rgba(255, 255, 255, 0.05);
  border-color: #1f1f1f;
  color: #ffffff;
}