/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #0d0d0d;
  color: #f5f5f5;
  line-height: 1.6;
}

/* Navbar */
header {
  background: #111;
  padding: 15px 50px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}

.logo span {
  color: #ff4c8b;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #f5f5f5;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #ff4c8b;
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 50px;
  min-height: 90vh;
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 20px;
}

.glitter-text {
  background: linear-gradient(90deg, #ff4c8b, #ffcc70, #6dd5ed);
  -webkit-background-clip: text;
  color: transparent;
  animation: glitter 3s infinite linear;
}

@keyframes glitter {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 12px 25px;
  background: #ff4c8b;
  border: none;
  border-radius: 30px;
  color: white;
  cursor: pointer;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #ffcc70;
  color: #111;
}

.cv-btn {
  background: #6dd5ed;
  color: #111;
}

.cv-btn:hover {
  background: #ff4c8b;
  color: #fff;
}

/* Hero Photo */
.hero-photo img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #ff4c8b;
  box-shadow: 0 0 25px rgba(255, 76, 139, 0.7);
}

/* About Section */
.about {
  padding: 80px 50px;
  background: #1a1a1a;
  text-align: center;
}

.about h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #ffcc70;
}

.about-card {
  background: #111;
  padding: 30px;
  border-radius: 15px;
  max-width: 900px;
  margin: auto;
  box-shadow: 0 0 15px rgba(255, 76, 139, 0.3);
}

.about-text p {
  margin-bottom: 20px;
  color: #ddd;
}

.about-name {
  font-size: 18px;
  font-weight: bold;
  color: #ff4c8b;
}

.insights {
  text-align: left;
  margin-top: 15px;
  color: #aaa;
}

.insights li {
  margin-bottom: 8px;
}

/* Skills Section */
.skills {
  padding: 80px 50px;
  background: #0d0d0d;
  text-align: center;
}

.skills h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #6dd5ed;
}

.skill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 900px;
  margin: auto;
}

.skill-card {
  background: #111;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(255, 76, 139, 0.2);
  transition: transform 0.3s ease;
}

.skill-card:hover {
  transform: translateY(-5px);
}

.skill-card span {
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}

.progress {
  background: #333;
  border-radius: 10px;
  overflow: hidden;
  height: 20px;
}

.progress div {
  background: linear-gradient(90deg, #ff4c8b, #ffcc70);
  height: 100%;
  text-align: right;
  padding-right: 8px;
  font-size: 14px;
  font-weight: bold;
  color: #111;
  border-radius: 10px;
  transition: width 1s ease-in-out;
}

/* Projects */
.projects {
  padding: 80px 50px;
  background: #1a1a1a;
  text-align: center;
}

.projects h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #ff4c8b;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 900px;
  margin: auto;
}

.project-card {
  background: #111;
  padding: 25px;
  border-radius: 12px;
  transition: transform 1.5s;
  box-shadow: 0 0 10px rgba(109, 213, 237, 0.2);
}

.project-card:hover {
  transform: translateY(-5px);
}

/* Contact */
.contact {
  padding: 80px 50px;
  background: #0d0d0d;
  text-align: center;
}

.contact h2 {
  font-size: 32px;
  margin-bottom: 30px;
  color: #6dd5ed;
}

form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form input, form textarea {
  padding: 12px;
  border: none;
  border-radius: 8px;
  outline: none;
}

form button {
  align-self: center;
}

/* Footer */
footer {
  padding: 20px;
  text-align: center;
  background: #111;
  color: #aaa;
}
.fixedButton{
      position: fixed;
      bottom: 10px;
      right: 10px;
      height: 70px;
      width: 70px;
      border: none;
      border-radius: 50%;
      cursor:pointer;
      color: black;
      background: linear-gradient(90deg, #ff4c8b, #ffcc70, #6dd5ed);
      animation: glitter 3s infinite linear;
      box-shadow: 0 0 15px rgba(255, 76, 139, 0.7);
}
 /* ===== Certificates Section ===== */
.certificates {
  background: #000000;
  padding: 80px 20px;
  text-align: center;
}

.certificates h2 {
  font-size: 2em;
  margin-bottom: 40px;
  color: #ff4c8b ;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.certificate-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.certificate-card {
 background: #070000;
  border-radius: 16px;
  box-shadow: 0 6px 15px rgba(208, 202, 202, 0.1);
  width: 80%;
  max-width: 700px;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
 
.certificate-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(255, 76, 139, 0.3);
}

.certificate-info h3 {
  color: #ff4c8b;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.certificate-info p {
  color:#f6efef;
  line-height: 1.6;
  margin-bottom: 10px;
  font-size: 1em;
}

.view-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: linear-gradient(90deg, #007bff, #ff4c8b);
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
}

.view-btn:hover {
  background: linear-gradient(90deg, #0056b3, #ff4c8b);
  transform: scale(1.05);
}







