@font-face {
  font-family: "robot roc";
  src: url("assets/fonts/Robot Roc.otf") format("opentype");
}
.hero-section {
  position: relative;
  height: 100vh;
  color: #fff;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("https://res.cloudinary.com/dbxsbnvja/image/upload/v1743787794/upscalemedia-transformed_lj7kgl.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(5px);
  z-index: -1;
  transform: scale(1.1);
}

.hero-text-1 {
  text-align: left;
  font-size: 2rem;
  font-weight: 100;
  word-spacing: 10px;
  font-family: "robot roc";
  margin-right: 40%;
}
.hero-text-2 {
  text-align: center;
  font-size: 9em;
  font-family: "robot roc";
}
.hero-text-3 {
  text-align: right;
  font-size: 2rem;
  font-weight: 100;
  word-spacing: 10px;
  font-family: "robot roc";
  margin-left: 40%;
}

.white-line {
  width: 100vw;
  border: none;
  height: 2px;
  background-color: #ffffff;

  opacity: 1;
}
.grey-line {
  width: 100vw;
  border: none;
  height: 2px;
  background-color: #ffffff;
}

.navbar {
  background-color: #0a0701 !important;
  border: solid 1px #28180c;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  position: fixed !important;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar-nav {
  margin: 0 auto;
  display: flex;
  gap: 60px;
  justify-content: center;
}

.nav-link {
  color: white !important;
  font-size: 18px;
  font-weight: 400;
  transition: color 0.3s;
  text-decoration: none;
  font-family: sans-serif;
}

.nav-link:hover,
.nav-link.active {
  color: #e6e6e6 !important;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5) !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.button-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.resume-btn {
  position: absolute;
  bottom: 50px;
  left: 50px;
  font-family: "robot roc" !important;
}

.send-hi-btn {
  position: absolute;
  top: 100px;
  right: 50px;
  font-family: "robot roc" !important;
}

.about-me-section {
  background-color: #000000;
  background-image: radial-gradient(ellipse, #f6be6e50 0%, #000000 70%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  color: white;
  height: 100vh;
  padding: 5em;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.about-me-text-1 {
  font-size: 3rem;
  font-weight: 100;
  word-spacing: 10px;
  font-family: "tilt neon";
}
.about-me-text-2 {
  font-size: 3rem;
  font-weight: 100;
  word-spacing: 10px;
  font-family: "robot roc";
}
.about-me-text-3 {
  font-size: 2rem;
  font-weight: 100;
  word-spacing: 2px;
  font-family: "tilt neon";
}

.project-section {
  background-color: #000000;
  color: white;
  padding: 5em 2em;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.project-text-1 {
  font-size: 3rem;
  font-weight: 100;
  word-spacing: 10px;
  font-family: "tilt neon";
  margin-bottom: 0;
}

.project-text-2 {
  font-size: 3rem;
  font-weight: 100;
  word-spacing: 10px;
  font-family: "robot roc";
  margin-bottom: 2rem;
}

.project-container {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.project-main-card {
  position: relative;
  border: 1px solid #333;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.project-main-img {
  width: 100%;
  height: auto;
  display: block;
}

.project-main-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.8);
}

.project-card-title {
  font-family: "robot roc";
  font-size: 2rem;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.project-content .project-card-title {
  font-size: 1.5rem;
}

.project-card-desc {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
  line-height: 1.5;
}

.project-tag-container {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.project-tag {
  background-color: transparent;
  border: 1px solid white;
  border-radius: 5px;
  padding: 0.3rem 0.8rem;
  font-size: 0.8rem;
  color: white;
}

.view-project-btn {
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "tilt neon";
}

.view-project-btn:hover {
  color: #f6be6e;
}

.view-all-btn {
  background-color: transparent;
  border: 1px solid white;
  color: white;
  padding: 12px 35px;
  font-size: 1.1rem;
  font-family: "Roboto", sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 2rem;
  transition: all 0.3s ease;
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.view-all-btn:hover {
  background-color: #f6be6e;
  color: black;
  border-color: #f6be6e;
}

.view-all-btn::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #f6be6e;
  transition: width 0.3s ease;
}

.view-all-btn:hover::after {
  width: 100%;
}

.project-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
  max-width: 1200px;
  margin-bottom: 2rem;
}

.project-card {
  border: 1px solid #333;
  border-radius: 0;
  overflow: hidden;
  background-color: #0c0c0c;
}

.project-img {
  width: 100%;
  height: auto;
  display: block;
}

.project-content {
  padding: 1.5rem;
}

.achievements-section {
  background-color: #000000;
  color: white;
  padding: 5em 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
}

.achievements-title {
  font-family: "robot roc";
  font-size: 3.5rem;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  align-self: center;
  text-align: center;
  width: 100%;
}

.achievements-carousel {
  width: 100%;
  max-width: 1400px;
  position: relative;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.certificate-container {
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin-bottom: 2rem;
  justify-content: center;
  gap: 30px;
}

.main-certificate {
  width: 70%;
  max-width: 750px;
  padding: 0;
  margin: 0;
}

.main-certificate img {
  width: 100%;
  height: auto;
  border: 2px solid #f6be6e;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.certificate-details {
  width: 80%;
  max-width: 850px;
  margin: 0 auto 2rem;
  background-color: rgba(10, 10, 10, 0.6);
  border: 1px solid #333;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.certificate-details h3 {
  font-family: "Roboto", sans-serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #f6be6e;
}

.certificate-details p {
  font-family: "Roboto", sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #fff;
}

.certificate-details .certificate-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

.certificate-meta-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.certificate-meta-item span:first-child {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 0.3rem;
}

.certificate-meta-item span:last-child {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 500;
}

.thumbnails-container {
  width: 20%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.thumbnails {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.thumbnail {
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  width: 100%;
}

.thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}

.thumbnail:hover {
  border-color: #f6be6e;
  transform: scale(1.02);
}

.thumbnail.active {
  border-color: #f6be6e;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .main-certificate {
    width: 70%;
  }

  .thumbnails {
    width: 20%;
  }
}

@media (max-width: 768px) {
  .achievements-carousel {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .main-certificate {
    width: 90%;
    margin-bottom: 30px;
  }

  .thumbnails {
    position: static;
    transform: none;
    flex-direction: row;
    width: 90%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .thumbnail {
    width: 30%;
  }
}

.skills-section {
  background-color: #000000;
  color: white;
  padding: 5em 2em;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("https://res.cloudinary.com/dbxsbnvja/image/upload/v1744051694/fr_amaz99.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.skills-title {
  font-family: "robot roc";
  font-size: 3.5rem;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  align-self: center;
  text-align: center;
  width: 100%;
}

.skills-container {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.skill-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.skill-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.skill-percentage {
  font-family: "robot roc";
  font-size: 1.5rem;
  color: white;
}

.skill-name {
  font-family: "robot roc";
  font-size: 1.5rem;
  color: white;
  text-align: right;
}

.skill-bar {
  width: 100%;
  height: 30px;
  background-color: #0c0c0c;
  border: 1px solid #333;
  position: relative;
  overflow: hidden;
}

.skill-progress {
  height: 100%;
  background-color: #f6be6e;
  position: absolute;
  top: 0;
  left: 0;
  transition: width 1.5s ease-in-out;
}

/* Specific skill percentages */
.html-skill {
  width: 95%;
}
.css-skill {
  width: 90%;
}
.js-skill {
  width: 82%;
}
.python-skill {
  width: 92%;
}
.sql-skill {
  width: 87%;
}
.java-skill {
  width: 78%;
}
.networking-skill {
  width: 81%;
}

.contact-section {
  background-color: #000000;
  color: white;
  padding: 5em 2em 2em;
  position: relative;
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("https://res.cloudinary.com/dbxsbnvja/image/upload/v1744051694/fr_amaz99.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.contact-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 50px;
}

.contact-info {
  flex: 1;
  padding-right: 30px;
}

.contact-title {
  font-family: "robot roc";
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.contact-subtitle {
  font-family: "Roboto", sans-serif;
  font-size: 1rem;
  margin-bottom: 2.5rem;
  opacity: 0.8;
  max-width: 80%;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: "Roboto", sans-serif;
}

.contact-item i {
  width: 20px;
  color: white;
}

.social-icons {
  display: flex;
  gap: 20px;
  margin-top: 2.5rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: white;
  color: black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #f6be6e;
  transform: translateY(-3px);
}

.contact-form {
  flex: 1;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  background-color: transparent;
  border: 1px solid #555;
  color: white;
  font-family: "Roboto", sans-serif;
}

.form-control:focus {
  outline: none;
  border-color: #f6be6e;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.form-checkbox input {
  width: 18px;
  height: 18px;
}

.form-checkbox label {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
}

.submit-btn {
  background-color: transparent;
  border: 1px solid white;
  color: white;
  padding: 12px 30px;
  font-family: "Roboto", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background-color: #f6be6e;
  border-color: #f6be6e;
  color: black;
}

.terms-link {
  color: white;
  text-decoration: underline;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background-color: #333;
  margin: 2rem 0 1rem;
}

@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-info,
  .contact-form {
    width: 100%;
  }
}

/* Mobile Container Styles */
.mobile-container {
  display: none;
}

@media (max-width: 991px) {
  .mobile-container {
    display: block;
    background-color: #000;
    color: white;
  }

  .hero-section {
    height: 100vh;
    padding: 2rem;
    text-align: center;
    background-image: url("https://res.cloudinary.com/dbxsbnvja/image/upload/v1744116806/freep_tvo4b4.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .hero-text-1 {
    font-size: 1.5rem;
    margin: 0;
  }

  .hero-text-2 {
    font-size: 4rem;
    margin: 1rem 0;
  }

  .hero-text-3 {
    font-size: 1rem;
    margin: 0;
  }

  .mobile-button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    margin-top: 2rem;
    width: 100%;
  }

  .mobile-container .send-hi-btn,
  .mobile-container .resume-btn {
    position: static;
    width: 100%;
    max-width: 200px;
  }

  .button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
  }

  .send-hi-btn,
  .resume-btn {
    width: 100%;
    max-width: 200px;
  }

  .about-me-section {
    padding: 2rem;
  }

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

  .about-me-text-2 {
    font-size: 2rem;
  }

  .about-me-text-3 {
    font-size: 1rem;
    line-height: 1.5;
  }

  .project-section {
    padding: 2rem;
  }

  .project-text-1 {
    font-size: 2rem;
  }

  .project-cards-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .project-main-card {
    margin-bottom: 2rem;
  }

  .project-card {
    margin-bottom: 2rem;
  }

  .achievements-section {
    padding: 2rem;
  }

  .achievements-title {
    font-size: 2rem;
  }

  .certificate-container {
    flex-direction: column;
  }

  .main-certificate {
    width: 100%;
    margin-bottom: 1rem;
  }

  .thumbnails-container {
    width: 100%;
  }

  .thumbnails {
    flex-direction: row;
    overflow-x: auto;
    gap: 1rem;
    padding: 1rem 0;
  }

  .thumbnail {
    min-width: 100px;
  }

  .skills-section {
    padding: 2rem;
  }

  .skills-title {
    font-size: 2rem;
  }

  .contact-section {
    padding: 2rem;
  }

  .contact-title {
    font-size: 2rem;
  }

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

  .contact-info,
  .contact-form {
    width: 100%;
  }

  .social-icons {
    justify-content: center;
  }

  .form-group {
    margin-bottom: 1rem;
  }

  .submit-btn {
    width: 100%;
  }
}

/* Additional Mobile Optimizations */
@media (max-width: 576px) {
  .hero-text-2 {
    font-size: 3rem;
  }

  .project-card-title {
    font-size: 1.2rem;
  }

  .project-card-desc {
    font-size: 0.9rem;
  }

  .certificate-meta {
    flex-direction: column;
    gap: 1rem;
  }

  .certificate-meta-item {
    text-align: center;
  }

  .skill-info {
    font-size: 0.9rem;
  }
}

.about-me-text-1,
.project-text-1 {
  font-family: "robot roc";
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}

@media (max-width: 991px) {
  .about-me-text-1,
  .project-text-1 {
    font-family: "robot roc";
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
  }
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:active {
  text-decoration: none;
}
