* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body, html {
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
  }
  
  .container {
    display: flex;
  }
  
  /* Sidebar */
  .logo {
    /* font-size: 2rem; */
    /* font-weight: bold; */
    /* color: #00bcd4; */
    text-align: center;
    padding: 1rem 0;
    font-size: 20px;
  }
  .logo img{
    width: 200px;
    position: relative;
    bottom: 40px;
    right: 10px;
  }
  /* .logo-text{
    font-size: 20px;
    font-weight: bolder;
    font-family: 'Courier New', Courier, monospace;
    color: #00bcd4;
  } */
  .sidebar {
    position: fixed;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
  }
  
  .sidebar-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #00bcd4;
    color: black;
    left: 60px;
    bottom: 50px;
    border-radius: 10px;
    font-size: 1.2rem;
    transition: background 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    overflow: hidden;
  }
  
  .sidebar-item:hover {
    background-color: #0097a7;
    transform: scale(1.1);
  }
  
  .sidebar-item .label {
    position: absolute;
    left: 60px;
    white-space: nowrap;
    background-color: #0097a7;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, left 0.3s ease;
  }
  
  .sidebar-item:hover .label {
    opacity: 1;
    left: 70px;
  }
    
  /* Main content */
  .main-content {
    margin-left: 220px;
    width: calc(100% - 220px);
  }
  
  .section {
    min-height: 100vh;
    padding: 5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .home {
    background: url('/images/laptop3.jpg') center center/cover no-repeat;
    color: white;
    position: relative;
  }
  
  .home::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
  }
  
  .hero {
    font-family: 'Courier New', Courier, monospace;
    z-index: 1;
    position: relative;
  }
  
  .hero h1 {
    font-size: 3rem;
    font-weight: 700;
  }
  
  .hero p {
    font-size: 1.3rem;
    margin-top: 1rem;
  }
  
  /* About */
  .about, .projects, .contact {
    background: #f9f9f9;
    color: #222;
  }
  
  .about h2, .projects h2, .contact h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }
  
  .about p, .projects p, .contact p {
    font-size: 1.1rem;
    max-width: 600px;
  }
  
  /* Contact */
  .contact-links {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
  }
  
  .contact-links a {
    color: #00bcd4;
    font-weight: bold;
    text-decoration: none;
    font-size: 1rem;
  }
  
  .contact-links a:hover {
    text-decoration: underline;
  }
  
  /* Responsive */
  
  /* Section Fade-in on Scroll */
  .section.hidden {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  
  .section.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Slider Section */
  .slider {
    width: 80%;
    margin: 3rem auto;
    overflow: hidden;
    border-radius: 10px;
    justify-content: center;
  }
  
  .slider-images {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  .slide {
    min-width: 100%;
    transition: transform 0.5s ease-in-out;
  }
  
  .slide img {
    width: 100%;
    border-radius: 10px;
  }
  
  /* Add navigation dots for better UI */
  .slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
  }
  
  .slider-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #bbb;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  .slider-dots span.active {
    background-color: #00bcd4;
  }
  
  /* Typing Animation */
  #typed-text {
    font-size: 3rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    border-right: 3px solid #00bcd4;
    display: inline-block;
    padding-right: 5px;
    width: 0;
    animation: typing 4s steps(30) forwards, blink 0.75s step-end infinite;
  }
  
  @keyframes typing {
    to {
      width: 100%;
    }
  }
  
  @keyframes blink {
    50% {
      border-color: transparent;
    }
  }
  
  /* Glowing Sticky Resume Button */
  .resume-fab {
    position: fixed;
    bottom: 2rem;
    right: 1rem;
    background-color: #00bcd4;
    color: white;
    padding: 1rem;
    border-radius: 50%;
    text-align: center;
    font-size: 1.5rem;
    z-index: 999;
    box-shadow: 0 0 15px rgba(0, 188, 212, 0.5);
    transition: all 0.3s ease;
    text-decoration: none;
    overflow: hidden;
  }
  
  /* Hover shimmer effect */
  .resume-fab::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 255, 255, 0.8) 50%,
      rgba(255, 255, 255, 0.2) 100%
    );
    transform: skewX(-25deg);
    transition: 0.5s;
    pointer-events: none;
    opacity: 0;
  }
  
  .resume-fab:hover::after {
    left: 125%;
    opacity: 1;
  }
  
  /* Glow effect on hover */
  .resume-fab:hover {
    box-shadow: 0 0 25px rgba(0, 188, 212, 0.8);
    transform: scale(1.1);
  }
  
  /* Slide-in from right on load */
  .glow-animated {
    opacity: 0;
    transform: translateX(100px);
    animation: slideInRight 1.2s ease-out forwards;
  }
  
  @keyframes slideInRight {
    0% {
      transform: translateX(100px);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }  
  .about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  
  .about-photo {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #00bcd4;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  }
  .about-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    animation: slideInUp 1.2s ease-in-out forwards;
  }
  
  .about-photo {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #00bcd4;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    animation: fadeIn 1.2s ease forwards;
  }
  
  .about-text {
    text-align: center;
    max-width: 700px;
  }
  
  .courses {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
  }
  
  .course-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #00bcd4;
    color: white;
    padding: 1rem;
    border-radius: 10px;
    width: 140px;
    transition: transform 0.3s ease;
  }
  
  .course-icon i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .course-icon span {
    font-size: 0.95rem;
    font-weight: 600;
  }
  
  .course-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 188, 212, 0.3);
  }
  
  /* Animations */
  @keyframes slideInUp {
    0% {
      opacity: 0;
      transform: translateY(40px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  
  .fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
  }
  
  .fade-in.delay-1 {
    animation-delay: 0.5s;
  }
  .fade-in.delay-2 {
    animation-delay: 0.8s;
  }
  .fade-in.delay-3 {
    animation-delay: 1.1s;
  }
  .fade-in.delay-4 {
    animation-delay: 1.4s;
  }
@media(max-width: 960px){
  #typed-text{
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .sidebar {
    left: 0;
    top: 0;
    transform: translateY(0);
    flex-direction: row;
    gap: 0.5rem;
    padding: 2rem 2rem;
    background-color: #fff;
    width: 100%;
    height: 250px;
    align-items: center;
  }
  

  .sidebar-item {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    left: auto;
    bottom: auto;
  }

  .sidebar-item .label {
    display: none;
  }

  .main-content {
    margin-left: 0;
    width: 100%;
      
  }
  #typed-text {
    font-size: 1.5rem;
    padding: 0.5rem;
    font-weight: bold;
  }
  .about-content {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 480px) {
  /* #typed-text {
    font-size: 1.2rem;
    padding: 0.5rem;
  }

  .sidebar {
    width: 160px;
  }

  .slider-dots span {
    width: 8px;
    height: 8px;
  } */
}