<<<<<<< HEAD
/* Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #141e30;
  color: #f0f0f0;
  line-height: 1.6;
}

/* Headings */
h1,
h2,
h3 {
  color: #00e6e6;
  font-weight: 700;
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #141e30, #1f2a44);
}

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

.hero-left img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 5px solid #00e6e6;
  object-fit: cover;
  box-shadow: 0 0 20px #00e6e6;
}

.hero-right h1 {
  font-size: 2.5rem;
}

.hero-right h2 {
  font-size: 1.8rem;
  color: #00fff0;
  margin-bottom: 15px;
}

.hero-right p {
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.hero-buttons a {
  display: inline-block;
  text-decoration: none;
  background: #00e6e6;
  color: #141e30;
  padding: 12px 25px;
  margin-right: 10px;
  border-radius: 25px;
  font-weight: 600;
  transition: 0.3s;
}

.hero-buttons a:hover {
  background: #00fff0;
  color: #000;
  transform: scale(1.05);
}

/* Sections */
section {
  padding: 70px 20px;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* Skills */
.skill-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 25px;
}

.skill {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0, 230, 230, 0.05);
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  transition: 0.3s;
}

.skill:hover {
  transform: translateY(-10px) scale(1.05);
  background: linear-gradient(135deg, #00e6e6, #00fff0);
  box-shadow: 0 10px 30px rgba(0, 230, 230, 0.7);
}

.skill img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 15px;
  background: #0f1115;
  padding: 10px;
}

.skill span {
  margin-top: 12px;
  font-weight: 600;
  color: #00e6e6;
  text-shadow: 0 0 5px #00e6e6;
}

/* Education Section */
.education-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.education-card {
  background: rgba(0, 230, 230, 0.05);
  padding: 25px;
  border-radius: 20px;
  text-align: left;
  box-shadow: 0 8px 25px rgba(0, 230, 230, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.education-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 230, 230, 0.7);
}

.education-card h3 {
  color: #00fff0;
  margin-bottom: 10px;
}

/* Projects */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}

.project-card {
  background: rgba(0, 230, 230, 0.05);
  padding: 25px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 230, 230, 0.7);
}

.tech-icons {
  display: flex;
  gap: 12px;
  margin: 15px 0;
}

.tech-icons img {
  width: 35px;
  transition: transform 0.3s ease;
}

.tech-icons img:hover {
  transform: scale(1.2) rotate(10deg);
}

/* Project Status */
.status {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}

.status.completed {
  background: #28a745;
}

.status.ongoing {
  background: #ffc107;
}

/* Project Button */
.project-card .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  margin-top: 15px;
  border-radius: 30px;
  background: linear-gradient(135deg, #00e6e6, #00fff0);
  color: #0f1115;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 230, 230, 0.45);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Hover Effect */
.project-card .btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 45px rgba(0, 230, 230, 0.8);
  color: #000;
}

/* Shine Animation */
.project-card .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent);
  transition: 0.6s;
}

.project-card .btn:hover::before {
  left: 120%;
}

/* =========================
   Contact Section
========================= */
#contact {
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px 20px;
  border-radius: 25px;
  text-decoration: none;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 12px 40px rgba(0, 247, 255, 0.25);
  color: #f2f2f2;
}

.contact-card i {
  font-size: 2.8rem;
  margin-bottom: 15px;
  color: #00f7ff;
  transition: transform 0.4s ease;
}

.contact-card h3 {
  margin-bottom: 10px;
  color: #7df9ff;
}

.contact-card p {
  font-size: 0.95rem;
  text-decoration: none;
  opacity: 0.9;

}

.contact-card:hover {
  transform: translateY(-12px) scale(1.05);
  text-decoration: none;
  background: linear-gradient(135deg, #00f7ff, #00c3ff);
  color: #000;
}

.contact-card:hover i {
  transform: scale(1.2) rotate(10deg);
  color: #000;
}


/* Footer */
footer {
  background: #0f1115;
  color: #aaa;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
}

/* Responsive */
@media(max-width:768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-left img {
    width: 180px;
    height: 180px;
  }
}
=======
/* Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #141e30;
  color: #f0f0f0;
  line-height: 1.6;
}

/* Headings */
h1,
h2,
h3 {
  color: #00e6e6;
  font-weight: 700;
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #141e30, #1f2a44);
}

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

.hero-left img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 5px solid #00e6e6;
  object-fit: cover;
  box-shadow: 0 0 20px #00e6e6;
}

.hero-right h1 {
  font-size: 2.5rem;
}

.hero-right h2 {
  font-size: 1.8rem;
  color: #00fff0;
  margin-bottom: 15px;
}

.hero-right p {
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.hero-buttons a {
  display: inline-block;
  background: #00e6e6;
  color: #141e30;
  padding: 12px 25px;
  margin-right: 10px;
  border-radius: 25px;
  font-weight: 600;
  transition: 0.3s;
}

.hero-buttons a:hover {
  background: #00fff0;
  color: #000;
  transform: scale(1.05);
}

/* Sections */
section {
  padding: 70px 20px;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* Skills */
.skill-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 25px;
}

.skill {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0, 230, 230, 0.05);
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  transition: 0.3s;
}

.skill:hover {
  transform: translateY(-10px) scale(1.05);
  background: linear-gradient(135deg, #00e6e6, #00fff0);
  box-shadow: 0 10px 30px rgba(0, 230, 230, 0.7);
}

.skill img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 15px;
  background: #0f1115;
  padding: 10px;
}

.skill span {
  margin-top: 12px;
  font-weight: 600;
  color: #00e6e6;
  text-shadow: 0 0 5px #00e6e6;
}

/* Education Section */
.education-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.education-card {
  background: rgba(0, 230, 230, 0.05);
  padding: 25px;
  border-radius: 20px;
  text-align: left;
  box-shadow: 0 8px 25px rgba(0, 230, 230, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.education-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 230, 230, 0.7);
}

.education-card h3 {
  color: #00fff0;
  margin-bottom: 10px;
}

/* Projects */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}

.project-card {
  background: rgba(0, 230, 230, 0.05);
  padding: 25px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 230, 230, 0.7);
}

.tech-icons {
  display: flex;
  gap: 12px;
  margin: 15px 0;
}

.tech-icons img {
  width: 35px;
  transition: transform 0.3s ease;
}

.tech-icons img:hover {
  transform: scale(1.2) rotate(10deg);
}

/* Project Status */
.status {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}

.status.completed {
  background: #28a745;
}

.status.ongoing {
  background: #ffc107;
}

/* Project Button */
.project-card .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  margin-top: 15px;
  border-radius: 30px;
  background: linear-gradient(135deg, #00e6e6, #00fff0);
  color: #0f1115;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 230, 230, 0.45);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Hover Effect */
.project-card .btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 45px rgba(0, 230, 230, 0.8);
  color: #000;
}

/* Shine Animation */
.project-card .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent);
  transition: 0.6s;
}

.project-card .btn:hover::before {
  left: 120%;
}

/* =========================
   Contact Section
========================= */
#contact {
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px 20px;
  border-radius: 25px;
  text-decoration: none;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 12px 40px rgba(0, 247, 255, 0.25);
  color: #f2f2f2;
}

.contact-card i {
  font-size: 2.8rem;
  margin-bottom: 15px;
  color: #00f7ff;
  transition: transform 0.4s ease;
}

.contact-card h3 {
  margin-bottom: 10px;
  color: #7df9ff;
}

.contact-card p {
  font-size: 0.95rem;
  text-decoration: none;
  opacity: 0.9;

}

.contact-card:hover {
  transform: translateY(-12px) scale(1.05);
  text-decoration: none;
  background: linear-gradient(135deg, #00f7ff, #00c3ff);
  color: #000;
}

.contact-card:hover i {
  transform: scale(1.2) rotate(10deg);
  color: #000;
}


/* Footer */
footer {
  background: #0f1115;
  color: #aaa;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
}

/* Responsive */
@media(max-width:768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-left img {
    width: 180px;
    height: 180px;
  }
}
>>>>>>> fef96dcdc2fefdcacfaaef9a24de0dba447bd9b2
