 body {
      margin: 0;
     
      color: #000000;
      font-family: 'SORA', sans-serif;
      text-align: center;
    }


/* Navigation */
/* ==== BASE STYLES ==== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
}

.Navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: relative;
}

.logo img {
  max-width: 100%;
  height: auto;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav ul li a {
  text-decoration: none;
  color: black;
  font-weight: 500;
}
/**BACKARROW**/
.top-bar {
    
    padding: 10px 20px;
    display: flex;
    align-items: center;
  }

  .back-arrow {
    font-size: 35px;
    font-weight: 800px;
    margin-left: 40px;
    cursor: pointer;
    color: #000000;
  }
.back-arrow a {
  text-decoration: none;  
  color: inherit;       
  display: inline-block;  
}

/* ==== HAMBURGER BUTTON ==== */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* ==== MEDIA QUERIES ==== */

/* MEDIUM SCREENS (TABLET) */
@media screen and (max-width: 1024px) {
  body {
    font-size: 16px;
  }

  .Navbar {
    padding: 1rem;
  }
}

@media screen and (min-width: 769px) {
  nav ul {
    display: flex !important;
    position: static;
    flex-direction: row;
    padding: 0;
    box-shadow: none;
    width: auto;
    background: none;
  }
}

/* SMALL SCREENS (MOBILE) */
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
  
.hero fade-in{
 width: 85%;
}
  .hamburger {
    display: block;
    position: absolute;
    right: 1.5rem;
  }

  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    width: 100%;
    padding: 1rem 2rem;
    gap: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  nav ul.active {
    display: flex;
  }

  #typing-text {
    font-size: 2.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-top: 20px;
    margin-bottom: 10px;
    display: inline-block;
  }
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 80px 20px;
}

.hero .intro {
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: 4.5rem;
  font-weight: 750;
  margin-top: 30px;
  margin-bottom: 20px;
  display: inline-block;
}

.highlight {
  
 margin-top: -20px;
  display: inline-block;
  font-weight: 100;
  font-size: 24px;
  border-radius: 6px;
  margin-bottom: 30px;
}

.hero-buttons {
  margin-top: 10px;
}

.btn {
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  margin: 0 10px;
  display:inline-block
}

.btn.primary {
  background-color: #000000;
        color: rgb(255, 255, 255);
        padding: 18px 36px;
        border: none;
        margin: 40px 0;
        cursor: pointer;
        border-radius: 10px;
}

.btn.primary:hover {
  background-color: #fbc400;  
  color: #000000;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);}

.btn.secondary {
  border: 2px solid #000;
  color: #000;
}

#startBtn:hover {
  background: #fbc400;
  color: black;
}

/* What I Do */
.what-i-do {
 
  padding: 60px 20px;
  text-align: center;
}

.what-i-do h2 {
  font-size: 50px;
  font-weight: 800;
  margin-bottom: 40px;
}

.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.service {
  max-width: 300px;
  text-align: center;
}

.icon {
  background-color: #fbc400;
  width: 50px;
  height: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  border-radius: 50%;
  margin-bottom: 15px;
}

footer {
    
      padding: 30px;
      font-size: 15px;
      text-align: center;
      color: #888;
    }
.footerlinks {
  display: flex;
  justify-content: center;
  gap: 25px;
}


.icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.icon-circle:hover {
  background-color: #fbc400; /* LinkedIn Blue or change as needed */
  transform: scale(1.1);
}

.icon-circle:hover img {
  filter: brightness(0) invert(1); /* Makes icons white */
}

/**NAVBAR**/
/* Default link styles */
nav ul li a {
  text-decoration: none;
  color: #000000;
  padding: 10px;
  transition: background-color 0.3s, color 0.3s;
}

/* Hover effect */
nav ul li a:hover {
  background-color: #fbc400;  /* Or any hover color */
  color: #000000;
  border-radius: 5px;
}

/* Active link (clicked/current page) */
nav ul li a.active {
  background-color: ##fbc400;  /* Active link color */
  color: #000000;
  border-radius: 5px;
}


/**PROJECT BANNER**/
/* Hero Section */
.hero {
  text-align: center;
  padding: 80px 20px;
}

.hero .intro {
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 10px;
}

.projects-section h1 {
  font-size: 5rem; /* larger and bolder */
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: 1.5px;
  color: #000000;
  line-height: 1.2;
  font-family: 'Sora', sans-serif;
}

.projects-section .subheading {
  font-size: 1.5rem; /* 28px */
  color: #000000;
  margin-top: 20px; /* spacing below h1 */
  font-weight: 300;
  letter-spacing: 1px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  font-family: 'sora', sans-serif;
}

.project-banner {
  width: 100%;
  overflow: hidden;
}

.project-overlay {
  height: 50vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); 
  z-index: 1;
}
.project-content {
  text-align: center;
  color: #ffffff;
  z-index: 2;
}

.project-content h2 {
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
}

.project-content .btn {
  background: white;
  color: black;
  width: 180px;
  text-align: center;
  padding: 12px 24px;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.project-content .btn:hover {
  background: #fbc400;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .project-content h2 {
    font-size: 2rem;
  }

  .project-overlay {
    height: 60vh;
  }

 .projects-section {
    padding: 50px 10px;
  }

  .project-banner {
    grid-template-columns: 1fr;
  }

  .project-content h2 {
    font-size: 1.2rem;
  }

  .project-content .btn.primary {
    width: 80%;
    padding: 10px 0;
  }

 .projects-section h1 {
  font-size: 3rem; /* larger and bolder */
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: 1.5px;
  color: #000000;
  line-height: 1.2;
  font-family: 'Sora', sans-serif;
}

.projects-section .subheading {
  font-size: 1.0rem; /* 28px */
  color: #000000;
  margin-top: 20px; /* spacing below h1 */
  font-weight: 300;
  letter-spacing: 1px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  font-family: 'sora', sans-serif;
}
}

/* FADE-IN EFFECT WHEN VISIBLE */
.project-overlay.visible {
  opacity: 1;
  transform: translateY(0);
}

/* HOVER ENLARGE EFFECT */
.project-overlay:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}





/*aboutmepage*/
.bio-section {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      max-width: 1200px;
      margin: 0 auto;
      gap: 2rem;
      margin-top: 0;
    }

    .bio-text {
      flex: 1;
      min-width: 300px;
    }

    .bio-text p {
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: 1.5rem;
    }

    .bio-text a {
      color: #000;
      text-decoration: underline;
      margin-right: 10px;
    }

    .bio-image {
      flex: 1;
      margin-top: 40PX;
      min-width: 300px;
      max-width: 500px;
    }

    .bio-image img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 5px;
    }

    @media (max-width: 768px) {
      .bio-section {
        flex-direction: column;
        text-align: center;
      }

      .bio-text a {
        display: inline-block;
        margin-bottom: 0.5rem;
      }
    }

/*Animation */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/**VIDEO**/
.video-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.video-container video {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: block;
}
@media (max-width: 768px) {
  .video-container {
    padding: 10px;
  }

  .video-container video {
    border-radius: 8px;
  }
}
