/* Fonts loaded via preload in HTML */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  outline: none;
  border: none;
  text-transform: capitalize;
  transition: all 0.2s linear;
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  background: #0a0a0a;
  font-family: "Poppins", sans-serif;
  color: #e0e0e0;
}

*::selection {
  background: #2b3dda;
  color: #fff;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}
html::-webkit-scrollbar {
  width: 0.8rem;
}
html::-webkit-scrollbar-track {
  background: rgb(235, 202, 245);
}
html::-webkit-scrollbar-thumb {
  background: #420177;
}

/* pre loader start */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  background: #e6eff1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}
.loader-container.fade-out {
  top: -120%;
}
/* pre loader end */

/* navbar starts */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.7rem 10%;
  height: 6.5rem;
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
section {
  min-height: 100vh;
  padding: 2rem 9%;
}
.heading {
  font-size: 3.5rem;
  color: #ffffff;
  font-weight: 800;
  text-align: center;
}
.heading span {
  color: #00d4ff;
}
header .logo {
  font-size: 1.9rem;
  font-weight: 800;
  text-decoration: none;
  color: #00d4ff;
}
header .logo i {
  font-size: 2.2rem;
}
header .logo:hover {
  color: #fc8c05;
}
header .navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .navbar li {
  margin-left: 2.5rem;
}
header .navbar ul li a {
  font-size: 1.57rem;
  color: #e0e0e0;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04rem;
  transition: 0.2s;
}
header .navbar ul li a.active,
header .navbar ul li a:hover {
  color: #00d4ff;
  border-bottom: 0.2rem solid #00d4ff;
  padding: 0.5rem 0;
}
/* navbar ends */

/* hamburger icon starts*/
#menu {
  font-size: 3rem;
  cursor: pointer;
  color: rgb(24, 2, 63);
  display: none;
}
@media (max-width: 768px) {
  #menu {
    display: block;
  }
  header .navbar {
    position: fixed;
    top: 6.5rem;
    right: -120%;
    width: 75%;
    height: 100%;
    text-align: left;
    align-items: flex-start;
    background-color: #0e0f31;
  }
  header .navbar ul {
    flex-flow: column;
    padding: 1rem;
  }
  header .navbar ul li {
    text-align: center;
    width: 100%;
    margin: 1rem 0;
    border-radius: 0.5rem;
    width: 26rem;
  }
  header .navbar ul li a {
    display: block;
    padding: 1rem;
    text-align: left;
    color: #fff;
    font-size: 2rem;
  }
  header .navbar ul li a.active,
  header .navbar ul li a:hover {
    padding: 1rem;
    color: #fff;
    border-radius: 0.5rem;
    border-bottom: 0.5rem solid #011aff;
  }
  .fa-times {
    transform: rotate(180deg);
  }
  header .navbar.nav-toggle {
    right: 0;
  }
}
/* hamburger icon ends */

/* hero section starts*/
.home {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  min-height: 100vh;
  align-items: center;
}
.home #particles-js {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.home .content {
  flex: 1 1 40rem;
  padding-top: 1rem;
  z-index: 1;
}
.home .image {
  flex: 1 1 40rem;
  z-index: 1;
}
.home .image img {
  width: 70%;
  margin-left: 6rem;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  content-visibility: auto;
  contain: layout style paint;
}
.home .image img:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}
.home .content h1 {
  font-size: 5rem;
  font-weight: 800;
  color: #ffffff;
}
.home .content h1 span {
  font-size: 5rem;
  font-weight: 800;
  color: #00d4ff;
}
.home .content p {
  font-size: 2.5rem;
  color: #e0e0e0;
  font-weight: 600;
  padding: 1rem 0;
}
.home .content p span {
  font-size: 2.5rem;
  color: #00d4ff;
  font-weight: 600;
  padding: 1rem 0;
}
.home .btn {
  margin-top: 1rem;
  position: absolute;
  line-height: 0;
  padding: 1.6rem 3rem;
  border-radius: 4em;
  transition: 0.5s;
  color: #0a0a0a;
  background: #00d4ff;
  box-shadow: 0px 5px 18px rgba(0, 212, 255, 0.4);
  font-family: "Nunito", sans-serif;
}
.home .btn span {
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: 0.1rem;
}
.home .btn i {
  margin-left: 0.3rem;
  font-size: 1.5rem;
  transition: 0.3s;
}
.home .btn:hover {
  background: #0099cc;
}
.home .btn:hover i {
  transform: translateX(5px);
}
/* social icons start */
.socials {
  position: relative;
  margin-top: 9rem;
}
.socials .social-icons {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.socials .social-icons li {
  display: inline-block;
  margin-bottom: 14px;
}
.social-icons a {
  font-size: 2rem;
  display: inline-block;
  line-height: 44px;
  color: #00d9ff;
  background-color: #09011b;
  width: 44px;
  height: 44px;
  text-align: center;
  margin-right: 8px;
  border-radius: 100%;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.social-icons a:active,
.social-icons a:focus,
.social-icons a:hover {
  color: #fff;
  background-color: #0685da;
}
.social-icons a.github:hover {
  background-color: #0e0e0e;
}
.social-icons a.twitter:hover {
  background-color: #00aced;
}
.social-icons a.linkedin:hover {
  background-color: #007bb6;
}
.social-icons a.dev:hover {
  background-color: #070707;
}
.social-icons a.instagram:hover {
  background-color: #ee00da;
}
/* social icons end */

/* hero media queries starts*/
@media (max-width: 450px) {
  .home .btn {
    margin: 4rem 0;
  }
  .socials {
    margin-top: 12rem;
  }
  .home .image img {
    margin-top: -12rem;
  }
  .home .content p {
    font-size: 2.2rem;
  }
  .home .content p span {
    font-size: 2.2rem;
  }
}
/* hero media queries ends*/
/* hero section end */

/* Modern About Section Styles */
.about {
  background: #0a0a0a;
  padding: 5rem 2rem;
}

.about .about-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

/* Profile Section */
.about .profile-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.about .profile-card {
  background: #1a1a1a;
  border-radius: 2rem;
  padding: 2.5rem;
  border: 1px solid rgba(0, 212, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  text-align: center;
}

.about .profile-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.about .profile-image {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 2rem auto;
}

.about .profile-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(0, 212, 255, 0.3);
  transition: all 0.3s ease;
}

.about .profile-image:hover img {
  border-color: #00d4ff;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.about .status-indicator {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #1a1a1a;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  border: 1px solid rgba(0, 212, 255, 0.3);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.about .status-dot {
  width: 8px;
  height: 8px;
  background: #00ff88;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}

.about .status-text {
  font-size: 1.2rem;
  color: #00ff88;
  font-weight: 600;
}

.about .profile-info h3 {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.about .profile-info .role {
  color: #00d4ff;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.about .location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #e0e0e0;
  font-size: 1.4rem;
}

.about .location i {
  color: #00d4ff;
}

/* Contact Cards */
.about .contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about .contact-card {
  background: #1a1a1a;
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(0, 212, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.about .contact-card:hover {
  background: rgba(0, 212, 255, 0.05);
  border-color: rgba(0, 212, 255, 0.4);
  transform: translateX(5px);
}

.about .contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about .contact-icon i {
  font-size: 2rem;
  color: #00d4ff;
}

.about .contact-details {
  flex: 1;
}

.about .contact-label {
  display: block;
  color: #888;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.about .contact-details a {
  color: #e0e0e0;
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.about .contact-details a:hover {
  color: #00d4ff;
}

/* About Content */
.about .about-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.about .intro-section h3 {
  color: #ffffff;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about .subtitle {
  color: #00d4ff;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.about .description p {
  color: #e0e0e0;
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  text-transform: none;
  font-family: "Nunito", sans-serif;
}

/* Expertise Grid */
.about .expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.about .expertise-item {
  background: #1a1a1a;
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid rgba(0, 212, 255, 0.2);
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.about .expertise-item:hover {
  background: rgba(0, 212, 255, 0.05);
  border-color: rgba(0, 212, 255, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 212, 255, 0.1);
}

.about .expertise-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  transition: all 0.3s ease;
}

.about .expertise-icon i {
  font-size: 2.5rem;
  color: #00d4ff;
}

.about .expertise-item:hover .expertise-icon {
  background: rgba(0, 212, 255, 0.2);
  transform: scale(1.1);
}

.about .expertise-item h4 {
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.about .expertise-item p {
  color: #e0e0e0;
  font-size: 1.4rem;
  margin: 0;
  text-transform: none;
}

/* Mobile Responsive */
@media screen and (max-width: 1024px) {
  .about .about-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about .profile-section {
    order: 1;
  }
  
  .about .about-content {
    order: 2;
  }
}

@media screen and (max-width: 768px) {
  .about {
    padding: 3rem 1rem;
  }
  
  .about .profile-image {
    width: 150px;
    height: 150px;
  }
  
  .about .profile-card {
    padding: 2rem;
  }
  
  .about .contact-card {
    padding: 1.5rem;
  }
  
  .about .expertise-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .about .intro-section h3 {
    font-size: 2.5rem;
  }
  
  .about .description p {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 480px) {
  .about .profile-image {
    width: 120px;
    height: 120px;
  }
  
  .about .profile-info h3 {
    font-size: 2rem;
  }
  
  .about .profile-info .role {
    font-size: 1.4rem;
  }
  
  .about .contact-card {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .about .intro-section h3 {
    font-size: 2rem;
  }
  
  .about .subtitle {
    font-size: 1.6rem;
  }
  
  .about .description p {
    font-size: 1.4rem;
  }
}
/* about section ends */

/* skills section starts */
.skills {
  min-height: 90vh;
  background: linear-gradient(to bottom, #1a1a1a, #0a0a0a);
  padding: 5rem 2rem;
}
.skills h2 {
  color: #ffffff;
  margin-bottom: 3rem;
}
.skills .heading span {
  color: #00d4ff;
}
.skills .container {
  max-width: 1200px;
  margin: 0 auto;
}
.skills .skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}
.skills .skill-category {
  background: rgba(26, 26, 26, 0.8);
  border-radius: 1.5rem;
  padding: 2.5rem;
  border: 1px solid rgba(0, 212, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.skills .skill-category:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}
.skills .skill-category h3 {
  color: #00d4ff;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.skills .skill-category h3 i {
  font-size: 2.5rem;
  color: #00d4ff;
}
.skills .skills-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
}
.skills .skill-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(10, 10, 10, 0.6);
  border-radius: 1rem;
  border: 1px solid rgba(0, 212, 255, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}
.skills .skill-item:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 212, 255, 0.2);
}
.skills .skill-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.8rem;
  background: rgba(0, 212, 255, 0.1);
  transition: all 0.3s ease;
}
.skills .skill-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.skills .skill-icon i {
  font-size: 2.5rem;
  color: #00d4ff;
}
.skills .skill-item:hover .skill-icon {
  background: rgba(0, 212, 255, 0.2);
  transform: scale(1.1);
}
.skills .skill-item span {
  color: #e0e0e0;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  font-family: "Poppins", sans-serif;
}
.skills .skill-item:hover span {
  color: #ffffff;
}

/* skills media queries starts*/
@media screen and (max-width: 768px) {
  .skills .skills-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .skills .skill-category {
    padding: 2rem;
  }
  .skills .skills-row {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
  }
  .skills .skill-item {
    padding: 1rem;
  }
  .skills .skill-category h3 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 480px) {
  .skills {
    padding: 3rem 1rem;
  }
  .skills .skills-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .skills .skill-item span {
    font-size: 1.2rem;
  }
}
/* skills media queries ends*/
/* skills section ends */

/* education section starts */
.education {
  background: #111111;
  min-height: 80vh;
}
.education .qoute {
  font-size: 1.5rem;
  text-align: center;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  margin-top: 0.5rem;
}
.education .box-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.education .box-container .box {
  display: flex;
  flex-direction: row;
  width: 80%;
  border-radius: 0.5rem;
  box-shadow: 0.2rem 0.5rem 1rem rgba(0, 212, 255, 0.2);
  text-align: center;
  position: relative;
  margin-top: 2rem;
  overflow: hidden;
  transition: 0.3s;
  background: #1a1a1a;
  border: 1px solid rgba(0, 212, 255, 0.3);
}
.education .box-container .box:hover {
  transform: scale(1.03);
  box-shadow: 1rem 0.5rem 1.2rem rgba(0, 0, 0, 0.3);
}
.education .box-container .box .image {
  flex: 1 1 20rem;
  width: 100%;
}
.education .box-container .box img {
  object-fit: cover;
  position: relative;
  width: 100%;
  height: 100%;
}
.education .box-container .box .content {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  flex-wrap: wrap;
  flex: 1 1 70rem;
}
.education .box-container .box .content h3 {
  font-size: 2.5rem;
  color: #00d4ff;
  padding: 0.5rem 0;
  font-weight: 600;
  text-align: left;
  margin-left: 1rem;
}
.education .box-container .box .content p {
  font-size: 1.5rem;
  margin-left: 1rem;
  text-align: left;
  color: #e0e0e0;
}
.education h4 {
  font-size: 2rem;
  color: #00d4ff;
  text-align: left;
  margin: 1rem;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
}

/* education media queries starts*/
@media screen and (max-width: 600px) {
  .education .box-container .box {
    flex-direction: column;
    width: 100%;
  }
  .education .box-container .box .image {
    width: 100%;
    height: 25rem;
  }
  .education .box-container .box img {
    width: 100%;
  }
  .education .box-container .box .content {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1rem;
    flex-wrap: wrap;
    flex: 0;
  }
  .education .btns {
    margin-top: 2rem;
    margin-left: 1rem;
    margin-right: 1rem;
    flex-wrap: wrap;
  }
}
/* education media queries ends*/
/* education section ends */

/* work section starts */
.work {
  background: #0a0a0a;
  padding: 5rem 2rem;
}
.work h2 {
  color: #ffffff;
  padding: 2rem 0;
  text-align: center;
}
.work .heading span {
  color: #00d4ff;
}

.work .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.work .box-container .box {
  background: #1a1a1a;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
  border: 1px solid rgba(0, 212, 255, 0.3);
  transition: all 0.3s ease;
  height: auto;
  display: flex;
  flex-direction: column;
}

.work .box-container .box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.work .box-container .box img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.work .box-container .box:hover img {
  transform: scale(1.05);
}

.work .box-container .box .content {
  padding: 2rem;
  background: #1a1a1a;
  position: relative;
  height: auto;
  width: 100%;
  top: 0;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.work .box-container .box .content .tag {
  margin-bottom: 1rem;
  padding: 0;
  background: none;
  height: auto;
}

.work .box-container .box .content h3 {
  font-size: 2rem;
  color: #00d4ff;
  font-weight: 700;
  margin: 0;
  text-shadow: none;
}

.work .desc {
  margin: 0;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.work .box-container .box .content p {
  font-size: 1.4rem;
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 2rem;
  text-shadow: none;
  font-weight: 400;
  text-transform: none;
}

.work .desc .btns {
  display: flex;
  gap: 1rem;
  margin-top: auto;
  flex-wrap: wrap;
}

.work .box-container .box .content .btns .btn {
  padding: 1rem 2rem;
  border-radius: 0.8rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: #0a0a0a;
  background: #00d4ff;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-right: 1rem;
}

.work .box-container .box .content .btns .btn:hover {
  background: #0099cc;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
}

.project-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.project-card.featured {
  border: 2px solid #ffd700;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 255, 255, 0.95));
}

.card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.3s ease;
  display: block;
  border: none;
  outline: none;
}

.card-image img.lazy-image {
  opacity: 0.7;
  filter: blur(2px);
}

.card-image img.loaded {
  opacity: 1;
  filter: none;
}

.project-card:hover .card-image img {
  transform: scale(1.1);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover .card-overlay {
  opacity: 1;
}

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-tag {
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  padding: 0.3rem 0.8rem;
  border-radius: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.card-content {
  padding: 2rem;
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.project-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 0;
  line-height: 1.3;
}

.project-status {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #333;
  padding: 0.4rem 1rem;
  border-radius: 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-description {
  font-size: 1.4rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 2rem;
  text-transform: none;
}

.card-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  padding: 1rem 2rem;
  border-radius: 0.8rem;
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #333;
  border: 2px solid #333;
}

.btn-secondary:hover {
  background: #333;
  color: white;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .work .box-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .project-header {
    flex-direction: column;
    gap: 1rem;
  }
  
  .project-status {
    align-self: flex-start;
  }
  
  .card-actions {
    flex-direction: column;
  }
  
  .btn-primary, .btn-secondary {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .card-content {
    padding: 1.5rem;
  }
  
  .project-header h3 {
    font-size: 1.8rem;
  }
  
  .project-description {
    font-size: 1.3rem;
  }
}
/* work section ends */

/* experience section starts */
.experience {
  background: #0a0a0a;
  padding: 5rem 2rem;
}
.experience .quote {
  text-align: center;
  font-size: 1.8rem;
  color: #e0e0e0;
  font-style: italic;
  margin: 2rem 0 4rem 0;
  font-family: "Nunito", sans-serif;
}
.experience .experience-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.experience .experience-card {
  background: #1a1a1a;
  border-radius: 1.5rem;
  padding: 2.5rem;
  border: 1px solid rgba(0, 212, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.experience .experience-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 212, 255, 0.5);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}
.experience .experience-card.featured {
  border: 2px solid #00d4ff;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), #1a1a1a);
}
.experience .experience-card.featured::before {
  content: "Featured";
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #00d4ff;
  color: #0a0a0a;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 1.2rem;
  font-weight: 600;
}
.experience .card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.experience .role-info h3 {
  color: #00d4ff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.experience .role-info h4 {
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.experience .duration {
  color: #bbb;
  font-size: 1.4rem;
  font-weight: 500;
  background: rgba(0, 212, 255, 0.15);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  display: inline-block;
}
.experience .company-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.experience .company-icon i {
  font-size: 2.5rem;
  color: #00d4ff;
}
.experience .card-content {
  color: #e0e0e0;
  line-height: 1.6;
}
.experience .card-content p {
  font-size: 1.5rem;
  margin: 0;
  text-transform: none;
}
.experience .card-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.experience .card-content li {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  text-transform: none;
}
.experience .card-content li::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: #00d4ff;
  font-size: 1rem;
}
/* view all button */
.morebtn {
  display: flex;
  justify-content: center;
}
.morebtn .btn {
  position: relative;
  line-height: 0;
  padding: 1.6rem 3rem;
  border-radius: 0.5em;
  transition: 0.5s;
  color: #0a0a0a;
  background: #00d4ff;
  box-shadow: 0px 5px 10px rgba(0, 212, 255, 0.4);
  text-align: center;
}
.morebtn .btn span {
  font-weight: 600;
  font-size: 1.7rem;
  font-family: "Nunito", sans-serif;
}
.morebtn .btn i {
  margin-left: 0.3rem;
  font-size: 1.5rem;
  transition: 0.3s;
}
.morebtn .btn:hover {
  background: #0099cc;
}
.morebtn .btn:hover i {
  transform: translateX(5px);
}

/* experience media queries starts */
@media screen and (max-width: 768px) {
  .experience .experience-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .experience .experience-card {
    padding: 2rem;
  }
  .experience .card-header {
    flex-direction: column;
    gap: 1.5rem;
  }
  .experience .company-icon {
    align-self: flex-start;
  }
}
@media screen and (max-width: 480px) {
  .experience {
    padding: 3rem 1rem;
  }
  .experience .experience-card {
    padding: 1.5rem;
  }
  .experience .role-info h3 {
    font-size: 1.8rem;
  }
  .experience .role-info h4 {
    font-size: 1.4rem;
  }
}
/* experience media queries ends */
/* experience section ends */

/* contact section starts */
.contact {
  background: #111111;
  min-height: 60vh;
}
.contact .container {
  max-width: 1050px;
  width: 100%;
  background: #1a1a1a;
  border-radius: 1.5rem;
  margin: 2rem 5rem;
  box-shadow: 0 5px 10px rgba(0, 212, 255, 0.2);
  border: 1px solid rgba(0, 212, 255, 0.3);
}
.contact .container .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem 2rem;
}
.contact .content .image-box {
  max-width: 60%;
  margin-left: 4rem;
}
.contact .content .image-box img {
  width: 100%;
  height: 40rem;
  position: relative;
}
.contact .content form {
  width: 45%;
  margin-right: 3.5rem;
}
form .form-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.form-group .field {
  height: 50px;
  display: flex;
  position: relative;
  margin: 1rem;
  width: 100%;
}
form i {
  position: absolute;
  top: 50%;
  left: 18px;
  color: rgb(51, 51, 51);
  font-size: 17px;
  pointer-events: none;
  transform: translateY(-50%);
}
form .field input,
form .message textarea {
  width: 100%;
  height: 100%;
  outline: none;
  padding: 0 16px 0 48px;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  border-radius: 5px;
  border: 1px solid rgba(0, 212, 255, 0.3);
  background: #0a0a0a;
  color: #e0e0e0;
}
.field input::placeholder,
.message textarea::placeholder {
  color: #888;
}
.field input:focus,
.message textarea:focus {
  padding-left: 47px;
  border: 2px solid #00d4ff;
}
.field input:focus ~ i,
.message textarea:focus ~ i {
  color: #00d4ff;
}
form .message {
  position: relative;
  margin: 1rem;
  width: 100%;
}
form .message i {
  top: 25px;
  font-size: 20px;
  left: 15px;
}
form .message textarea {
  min-height: 130px;
  max-height: 230px;
  max-width: 100%;
  min-width: 100%;
  padding: 12px 20px 0 48px;
}
form .message textarea::-webkit-scrollbar {
  width: 0px;
}
form .button-area {
  display: flex;
  float: right;
  flex-direction: row-reverse;
}
.button-area button {
  color: #0a0a0a;
  border: none;
  outline: none;
  font-size: 1.8rem;
  cursor: pointer;
  border-radius: 5px;
  padding: 13px 25px;
  background: #00d4ff;
  box-shadow: 0px 5px 10px rgba(0, 212, 255, 0.4);
  transition: 0.3s ease;
  font-family: "Nunito", sans-serif;
}
.button-area button:hover {
  background: #0099cc;
}
.button-area span {
  font-size: 17px;
  padding: 1rem;
  display: none;
}
.button-area button i {
  position: relative;
  top: 6px;
  left: 2px;
  font-size: 1.5rem;
  transition: 0.3s;
  color: #fff;
}
.button-area button:hover i {
  left: 8px;
}
/* contact section media queries starts */
@media (max-width: 900px) {
  .contact {
    min-height: 70vh;
  }
  .contact .container {
    margin: 3rem 0 2rem 0;
  }
  .contact .container .content {
    padding: 18px 12px;
  }
  .contact .content .image-box {
    display: none;
  }
  .contact .content form {
    width: 100%;
    margin-right: 2rem;
  }
}
/* contact section media queries ends */
/* contact section ends */

/* footer section starts */
.footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  padding: 4rem 0 0 0;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #00d4ff, transparent);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Brand Section */
.footer-brand {
  text-align: center;
  margin-bottom: 3rem;
}

.brand-logo h2 {
  font-size: 2.8rem;
  color: #00d4ff;
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.brand-logo h2 i {
  font-size: 3rem;
}

.tagline {
  font-size: 1.6rem;
  color: #ccc;
  margin-bottom: 2rem;
  font-weight: 500;
}

.motto {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.motto p {
  font-size: 1.5rem;
  color: #00d4ff;
  font-weight: 600;
  margin: 0;
}

/* Footer Grid */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 1.5rem;
  font-weight: 600;
  position: relative;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 3rem;
  height: 2px;
  background: #00d4ff;
}

/* Links Grid */
.links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.links-grid a {
  color: #ccc;
  font-size: 1.4rem;
  text-decoration: none;
  padding: 0.8rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.links-grid a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,212,255,0.1), transparent);
  transition: left 0.5s ease;
}

.links-grid a:hover::before {
  left: 100%;
}

.links-grid a:hover {
  color: #00d4ff;
  background: rgba(0,212,255,0.05);
  transform: translateX(5px);
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #ccc;
  text-decoration: none;
  padding: 1rem;
  border-radius: 0.8rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(0,212,255,0.1);
  transition: all 0.3s ease;
}

.contact-item:hover {
  color: #00d4ff;
  background: rgba(0,212,255,0.05);
  border-color: rgba(0,212,255,0.3);
  transform: translateY(-2px);
}

.contact-item i {
  font-size: 1.8rem;
  color: #00d4ff;
  width: 2rem;
  text-align: center;
}

.contact-item span {
  font-size: 1.4rem;
  font-weight: 500;
}

/* Social Section */
.social-section {
  text-align: center;
  margin-bottom: 2rem;
}

.social-section h3 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 2rem;
  font-weight: 600;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.social-link {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: rgba(0,212,255,0.1);
  border: 2px solid rgba(0,212,255,0.3);
  transition: all 0.3s ease;
}

.social-link:hover::before {
  background: #00d4ff;
  border-color: #00d4ff;
  transform: scale(1.1);
}

.social-link:hover {
  color: #000;
  transform: translateY(-3px);
}

.social-link i {
  position: relative;
  z-index: 1;
}

/* Footer Bottom */
.footer-bottom {
  background: rgba(0,0,0,0.5);
  border-top: 1px solid rgba(0,212,255,0.2);
  padding: 2rem 0;
}

.footer-bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  font-size: 1.4rem;
  color: #999;
  margin: 0;
}

.credit {
  font-size: 1.4rem;
  color: #ccc;
  margin: 0;
}

.credit a {
  color: #00d4ff;
  text-decoration: none;
}

.credit a:hover {
  text-decoration: underline;
}

.fa-heart {
  color: #ff4757;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .footer {
    padding: 3rem 0 0 0;
  }
  
  .footer-content {
    padding: 0 1rem;
  }
  
  .brand-logo h2 {
    font-size: 2.4rem;
  }
  
  .tagline {
    font-size: 1.4rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .links-grid {
    grid-template-columns: 1fr;
  }
  
  .social-links {
    gap: 1rem;
  }
  
  .social-link {
    width: 4.5rem;
    height: 4.5rem;
    font-size: 1.8rem;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 2rem 0 0 0;
  }
  
  .brand-logo h2 {
    font-size: 2rem;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .motto {
    gap: 0.3rem;
  }
  
  .motto p {
    font-size: 1.3rem;
  }
  
  .footer-section h3 {
    font-size: 1.8rem;
  }
  
  .contact-item {
    padding: 0.8rem;
  }
  
  .contact-item span {
    font-size: 1.3rem;
  }
  
  .social-link {
    width: 4rem;
    height: 4rem;
    font-size: 1.6rem;
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
/* footer section ends */

/* common media queries starts*/
@media (max-width: 450px) {
  html {
    font-size: 55%;
  }
  body {
    padding-right: 0;
  }
  section {
    padding: 2rem;
  }
}
/* common media queries ends*/

/* scroll top starts */
#scroll-top {
  position: fixed;
  top: -140%;
  right: 2rem;
  padding: 1rem 1.5rem;
  font-size: 2rem;
  background: #00d4ff;
  color: #0a0a0a;
  border-radius: 50%;
  transition: 1s linear;
  z-index: 1000;
}
#scroll-top.active {
  top: calc(100% - 12rem);
}
/* scroll top ends */
/* Modern Project Cards Styles */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin: 3rem 0;
  padding: 0 2rem;
}

.project-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.project-card.featured {
  border: 2px solid #ffd700;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 255, 255, 0.95));
}

.card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-card:hover .card-image img {
  transform: scale(1.1);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover .card-overlay {
  opacity: 1;
}

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-tag {
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  padding: 0.3rem 0.8rem;
  border-radius: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.card-content {
  padding: 2rem;
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.project-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  margin: 0;
  line-height: 1.3;
}

.project-status {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #333;
  padding: 0.4rem 1rem;
  border-radius: 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-description {
  font-size: 1.4rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 2rem;
  text-transform: none;
}

.card-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  padding: 1rem 2rem;
  border-radius: 0.8rem;
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #333;
  border: 2px solid #333;
}

.btn-secondary:hover {
  background: #333;
  color: white;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .project-header {
    flex-direction: column;
    gap: 1rem;
  }
  
  .project-status {
    align-self: flex-start;
  }
  
  .card-actions {
    flex-direction: column;
  }
  
  .btn-primary, .btn-secondary {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .card-content {
    padding: 1.5rem;
  }
  
  .project-header h3 {
    font-size: 1.8rem;
  }
  
  .project-description {
    font-size: 1.3rem;
  }
}