/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #000000;
    color: #333;
  }
  
  /* Header */
  header {
    background: #333;
    color: white;
    padding: 25px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
  }
  
  nav ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px; /* Space between menu items */
    margin: 0;
    padding: 0;
    flex-wrap: nowrap; /* Ensures all items stay in one line */
  }
  
  nav ul li {
    margin: 0;
  }
  
  nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    display: block;
    position: relative;
    transition: all 0.3s ease;
  }
  
  /* Hover effects */
  nav ul li a:hover {
    color: #00ffff;
    transform: scale(1.1);
  }
  
  /* Underline animation */
  nav ul li a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background: #00ffff;
    left: 0;
    bottom: -5px;
    transition: width 0.3s ease;
  }
  
  nav ul li a:hover::after {
    width: 100%;
  }
  
  
  
  /* Adjust the body content to avoid it being hidden under the fixed header */
  body {
    padding-top: 60px; /* Adjust according to the height of your header */
  }
  
  
  /* Hero Section */
  #hero {
    background: url('CyberSecurity.webp') no-repeat center center/cover;
    height: 92vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    overflow: hidden;
  }
  
  /* Overlay */
  #hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
  }
  
  /* Text Box with Background */
  .text-box {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 40px 60px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    color: white;
    z-index: 1;
    position: relative;
  }
  
  /* Hero Text Styles */
  .text-box h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
    text-shadow: 0 0 10px #000000;
  }
  
  .text-box p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.85;
    animation: fadeInUp 1.2s ease-out;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  }
  
  /* Call to Action Button */
  .cta-btn-container {
    display: inline-block;
    border: 2px solid #fff; 
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 20px; 
  }
  
  .cta-btn {
    background-color: transparent; 
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    display: inline-block;
    transition: background-color 0.3s ease;
  }
  
  .cta-btn:hover {
    background-color: #ff6347;
    color: white;
  }
  
  
  /* Animation effects */
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  @keyframes fadeInUp {
    from {
      transform: translateY(30px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  /* Section spacing */
  section {
    padding: 20px;
    margin: 20px 0;
  }
  
  /* About Section */
 /* Section container */
/* Dark Themed About Section */
#about {
    background-color: #171616; 
    padding: 80px 40px;
    color: #fff; 
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Title styling */
.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    color: #fff;
}

.section-title::after {
    content: "";
    width: 60px;
    height: 4px;
    background-color: #00bfff; 
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Flex layout */
.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 40px;
    justify-content: center;
    animation: fadeIn 1s ease forwards;
    opacity: 0;
    animation-delay: 0.2s;
    animation-fill-mode: forwards;
}

.profile-img {
    width: 330px;
    height: 330px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
    animation: slideInLeft 1s ease forwards;
    opacity: 0;
    animation-delay: 0.4s;
    animation-fill-mode: forwards;
}

.about-text {
    flex: 1;
    max-width: 600px;
    font-size: 18px;
    line-height: 1.8;
    color: #eee;
    animation: slideInRight 1s ease forwards;
    opacity: 0;
    animation-delay: 0.6s;
    animation-fill-mode: forwards;
}


/* Quick facts list */
.about-facts {
    list-style: none;
    padding: 20px 0 0;
    margin: 0;
}

.about-facts li {
    margin-bottom: 10px;
    font-size: 17px;
    color: #ccc;
}

/* Quote */
blockquote {
    margin-top: 20px;
    font-style: italic;
    padding-left: 20px;
    border-left: 4px solid #00bfff;
    color: #bbb;
}

/* Resume button */
.resume-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 36px;
    font-size: 18px;
    font-weight: 600;
    background-color: #1e1e1e;
    color: #fff;
    border: 2px solid #ff4c60;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
    animation-delay: 1s;
    animation-fill-mode: forwards;
}

.resume-btn:hover {
    background-color: #ff4c60;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 76, 96, 0.3);
}



  
  
  /* Projects Section */
  #projects {
    background-color: #111;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.section-title {
    font-size: 38px;
    margin-bottom: 50px;
    position: relative;
    animation: fadeIn 1s ease-in-out;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #ff4c60;
    margin: 15px auto 0;
    border-radius: 2px;
    animation: scaleFadeIn 1s ease;
}

.projects-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.project-card {
    background-color: #1c1c1c;
    border-radius: 14px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    width: 320px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
    position: relative;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(255, 76, 96, 0.3);
}

.project-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    filter: brightness(0.95);
}

.project-info {
    padding: 20px;
}

.project-info h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 10px;
}

.project-info p {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 15px;
    line-height: 1.5;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.project-tag {
    background-color: #292929;
    color: #ff4c60;
    padding: 4px 10px;
    font-size: 13px;
    border-radius: 20px;
    border: 1px solid #ff4c60;
    font-weight: 500;
}

.project-link {
    display: inline-block;
    padding: 10px 22px;
    background-color: #ff4c60;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-weight: 600;
}

.project-link:hover {
    background-color: #e03b50;
    transform: scale(1.05);
}
/* Skills Section */
#skills {
  background-color: #111;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.skills-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.skill-card {
  background: #1c1c1c;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
  text-align: center;
  width: 120px;
  animation: fadeInUp 1s ease;
}

.skill-card:hover {
  transform: translateY(-10px);
}

.skill-card i {
  font-size: 40px;
  margin-bottom: 10px;
  color: #ff4c60;
}

.skill-card p {
  margin: 0;
  font-size: 16px;
}

  /* Certificates Section */
  #certificates {
    background-color: #111;
    color: white;
    padding: 60px 20px;
    text-align: center;
  }
  
  .certificates-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    animation: fadeIn 1.5s ease-in-out;
  }
  
  .certificate-card {
    background: linear-gradient(145deg, #1a1a1a, #0e0e0e);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 8px 8px 16px #0a0a0a,
                -8px -8px 16px #1f1f1f;
    width: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1.5s ease forwards;
    opacity: 0;
  }
  
  .certificate-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(255, 76, 96, 0.5);
  }
  
  .certificate-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
  }
  
  .certificate-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .view-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #ff4c60;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  
  .view-btn:hover {
    background: #e03b50;
    transform: scale(1.05);
  }

  

  
 /* Contact Section */
#contact {
  background-color: #111;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

#contact .social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

#contact .social-links a {
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  background-color: #333;
  padding: 10px 20px;
  border-radius: 6px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

#contact .social-links a:hover {
  background-color: #ff6347;
  transform: translateY(-5px);
}

#contact .social-links a i {
  margin-right: 8px; /* Adds space between icon and text */
}

#contact p {
  font-size: 16px;
  margin-top: 20px;
  color: #ccc;
}


  
  
  
  /* Footer */
  footer {
    background: #333;
    color: white;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
  }
  @keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

  