
body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: lightgray;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}


body::-webkit-scrollbar {
  width: 0;
  background: transparent;
}


html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}


.container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
  background-color: #001f7c38;
}

.back-vid {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}




header {
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.121);
  backdrop-filter: blur(5px);
  box-shadow: 0 0 15px #72a1dea2;
  z-index: 999;
  transition: transform 0.3s ease;
}

header.header-hidden {
  transform: translateY(-100%);
}

.left {
  display: flex;
  align-items: center;
}

.left img {
  width: 40px;
  margin: 0 15px;
  border-radius: 50%;
}

header ul {
  display: flex;
  justify-content: space-between;
  width: 30%;
  padding: 15px 15px;
  border-radius: 50px;
  background-color: rgba(0, 0, 69, 0.326);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 10px #72a1de63;
}

header ul li {
  list-style: none;
}

header ul a {
  text-decoration: none;
  color: white;
  font-weight: 700;
  transition: transform 0.5s ease;
  margin: 0 10px;
  display: inline-block;
}

header ul a:hover {
  text-shadow: 0 0 15px black;
  transform: scale(1.05);
}

.box-icons {
  display: flex;
  gap: 40px;
}

.box-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  transition: 0.5s;
  transform: scale(1.2);
  text-decoration: none;
  color: inherit;
}

.box-icons a:hover {
  transform: scale(1.4);
}

.blackhole-box {
  position: absolute;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: -1;
  mix-blend-mode: lighten;
}

.blackhole-box video {
  width: 100%;
  margin-top: -23.5%;
}

.hero {
  position: relative;
  display: flex;
  width: 100%;
  height: 100vh;
  align-items: center;
  justify-content: space-between;
}

.hero-info {
  position: absolute;
  left: 5%;
}

.hero-info .hero-info-title {
  color: white;
  padding: 8px 5px;
  border-radius: 50px;
  border: 1px solid #72a1de94;
  width: 240px;
  background-color: #2200493d;
  box-shadow: 0 0 5px #72a1de84;
  transition: 0.3s;
  cursor: pointer;
  text-align: center;
}

.hero-info .hero-info-title:hover {
  transform: scale(1.05);
}

.hero-info h1 {
  font-size: 60px;
  max-width: 600px;
  font-weight: 700;
  line-height: 70px;
  margin-top: 40px;
  margin-bottom: 30px;
  transition: 0.3s;
}

.hero-info h1:hover {
  transform: scale(1.05);
}

.hero-info p {
  max-width: 550px;
  line-height: 25px;
  margin-bottom: 40px;
  font-size: 20px;
}

.hero-info button {
  color: white;
  padding: 15px 35px;
  border-radius: 10px;
  border: 1px solid #72a1de81;
  background-color: #2200493d;
  box-shadow: 0 0 5px #72a1de81;
  cursor: pointer;
  transition: 0.3s;
}

.hero-info button:hover {
  box-shadow: 0 0 15px #72a1de81;
}

/*About Section Start*/
.info-section {
  padding: 80px 0;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(106, 13, 173, 0.15) 0%,
    transparent 50%
  );
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.info-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(138, 43, 226, 0.1) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(75, 0, 130, 0.1) 0%,
      transparent 40%
    );
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
}

.section-title {
  font-size: 3.2rem;
  font-weight: 800;
  background: linear-gradient(90deg, #fff 0%, #d8b4fe 50%, #9333ea 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.section-title .highlight {
  color: #c084fc;
  text-shadow: 0 0 20px rgba(192, 132, 252, 0.5);
}

.section-subtitle {
  font-size: 1.2rem;
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.card {
  background: #0f0f19;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(192, 132, 252, 0.2);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  transform: translateY(30px);
  opacity: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.card.visible {
  transform: translateY(0);
  opacity: 1;
}

.card:hover {
  transform: translateY(-10px);
  border-color: rgba(192, 132, 252, 0.4);
  box-shadow: 0 20px 40px rgba(106, 13, 173, 0.3),
    0 0 0 1px rgba(192, 132, 252, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

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

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

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

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(15, 15, 25, 0.9) 100%
  );
}

.software-icons,
.journey-icon,
.security-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  gap: 25px;
}

.software-icons i,
.journey-icon i,
.security-icon i {
  font-size: 3.5rem;
  color: rgba(192, 132, 252, 0.8);
  filter: drop-shadow(0 0 10px rgba(192, 132, 252, 0.4));
  transition: all 0.3s ease;
}

.software-icons i:hover {
  transform: scale(1.2);
  color: #fff;
}

.journey-icon i,
.security-icon i {
  font-size: 5rem;
}

.card-content {
  padding: 25px;
  position: relative;
  z-index: 2;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.card-header i {
  font-size: 1.5rem;
  color: #c084fc;
  background: rgba(192, 132, 252, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-header h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #f8fafc;
}

.card-text {
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 1rem;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.tag {
  background: rgba(192, 132, 252, 0.15);
  color: #d8b4fe;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(192, 132, 252, 0.2);
  transition: all 0.3s ease;
}

.tag:hover {
  background: rgba(192, 132, 252, 0.3);
  transform: translateY(-2px);
}

.tool-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.tool-list span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cbd5e1;
  font-size: 0.95rem;
}

.tool-list i {
  color: #c084fc;
}

.card-actions {
  margin-top: 200px;
}

.card-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, #7e22ce 0%, #c084fc 100%);
  color: white;
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  width: 100%;
  box-shadow: 0 5px 15px rgba(126, 34, 206, 0.3);
}

.card-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(126, 34, 206, 0.4);
  background: linear-gradient(90deg, #8b5cf6 0%, #d8b4fe 100%);
}

.card-button i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.card-button:hover i {
  transform: translateX(5px);
}

.expertise {
  margin-top: 20px;
}

.expertise-item {
  margin-bottom: 15px;
}

.expertise-item span {
  display: block;
  margin-bottom: 6px;
  color: #e2e8f0;
  font-size: 0.95rem;
}

.expertise-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.expertise-level {
  height: 100%;
  background: linear-gradient(90deg, #8b5cf6 0%, #c084fc 100%);
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

@media (max-width: 768px) {
  .info-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .card {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .info-section {
    padding: 60px 15px;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .card-content {
    padding: 20px;
  }
}
/*About Section End*/

.gradient {
  background: linear-gradient(
    to right,
    #00aaa7,
    #7e42a7,
    #6600c5,
    #6070fd,
    #2a46ff,
    #0099ff,
    #008ead
  );
  background-size: 200%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: animate-gradient 2.5s linear infinite;
}
@keyframes animate-gradient {
  to {
    background-position: 200%;
  }
}
/*Section Skills Start*/
.skills-video-box {
  position: absolute;
  right: 3%;
}

.skills-video {
  height: 900px;
  mix-blend-mode: lighten;
}

.scroll-down {
  height: 50px;
  width: 30px;
  border: 2px solid lightgray;
  position: absolute;
  left: 49%;
  bottom: 8%;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.626);
  transition: 0.3s;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.scroll-down::before,
.scroll-down::after {
  content: "";
  position: absolute;
  top: 20%;
  left: 50%;
  height: 10px;
  width: 10px;
  transform: translate(-50%, -100%) rotate(45deg);
  border: 2px solid lightgray;
  border-top: transparent;
  border-left: transparent;
  animation: scroll-down 2s ease-in-out infinite;
}
.scroll-down::before {
  top: 30%;
  animation-delay: 0.5s;
}

@keyframes scroll-down {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    top: 90%;
    opacity: 0;
  }
}

.scroll-down:hover {
  transform: scale(1.1);
}
.expertise-section {
    position: relative;
    overflow: hidden;
}

.expertise-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.expertise-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Header */
.expertise-header {
    text-align: center;
    margin-bottom: 60px;
}

.expertise-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: white;
}

.expertise-gradient {
    background: linear-gradient(135deg, #8b5cf6, #c084fc, #a855f7);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient 3s ease infinite;
}

.expertise-sub {
    font-size: 1.2rem;
    color: #94a3b8;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.skill-category {
    background: rgba(30, 30, 40, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    position: relative;
    overflow: hidden;
}

.skill-category::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #8b5cf6, #c084fc);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.skill-category:hover::before {
    transform: scaleX(1);
}

.skill-category:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15),
                0 0 0 1px rgba(139, 92, 246, 0.1);
}

/* Category Header */
.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.category-icon {
    width: 50px;
    height: 50px;
    background: rgba(139, 92, 246, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon i {
    font-size: 1.8rem;
    color: #8b5cf6;
}

.category-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #f8fafc;
    margin: 0;
    flex: 1;
}

.category-tag {
    background: rgba(139, 92, 246, 0.15);
    color: #c084fc;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(192, 132, 252, 0.2);
}

/* Skills List */
.skills-list {
    margin-bottom: 25px;
}

.skill-item {
    margin-bottom: 20px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.skill-name {
    color: #e2e8f0;
    font-size: 0.95rem;
    font-weight: 500;
}

.skill-level {
    color: #94a3b8;
    font-size: 0.85rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.05);
    padding: 3px 10px;
    border-radius: 12px;
}

.skill-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, #8b5cf6, #c084fc);
    border-radius: 4px;
    position: relative;
    transition: width 1.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.skill-progress::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 20px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3));
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

/* Tools Grid */
.category-tools h4 {
    color: #cbd5e1;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.tools-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tool-tag {
    background: rgba(255, 255, 255, 0.05);
    color: #94a3b8;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.tool-tag:hover {
    background: rgba(139, 92, 246, 0.15);
    color: #c084fc;
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-2px);
}

/* CTF Stats */
.ctf-stats {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(192, 132, 252, 0.05));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    padding: 40px;
    margin-bottom: 40px;
}

.ctf-header {
    text-align: center;
    margin-bottom: 40px;
}

.ctf-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.ctf-header h3 i {
    color: #fbbf24;
}

.ctf-header p {
    color: #94a3b8;
    font-size: 1rem;
}

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

.stat-box {
    text-align: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(139, 92, 246, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8b5cf6, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    color: #cbd5e1;
    font-size: 0.95rem;
    font-weight: 500;
}

.ctf-links {
    text-align: center;
}

.ctf-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ctf-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.ctf-btn:hover::before {
    left: 100%;
}

.ctf-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.ctf-btn i {
    font-size: 1.2rem;
}

/* Quote */
.expertise-quote {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.expertise-quote::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), transparent);
    pointer-events: none;
}

.quote-icon {
    font-size: 3rem;
    color: #8b5cf6;
    margin-bottom: 20px;
    opacity: 0.5;
}

.quote-text {
    font-size: 1.5rem;
    color: #f8fafc;
    line-height: 1.6;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto 20px;
}

.quote-author {
    color: #94a3b8;
    font-size: 1rem;
    font-weight: 500;
}

@media screen and (max-width: 768px) {
    .expertise-section {
        padding: 60px 30px;
        margin-top: 30px;
    }

    .expertise-title {
        font-size: 2.2rem;
    }

    .expertise-sub {
        font-size: 1rem;
        padding: 0 10px;
    }

    .skills-grid {
        display: flex;
        flex-direction: column;
        gap: 25px;
        padding: 0 10px;
        margin: 0 auto;
        width: 100%;
        max-width: 450px;
        align-items: center;
    }

    .skill-category {
        padding: 25px;
        max-width: 100%;
        width: 100%;
        border-radius: 25px;
    }
    
    .category-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .category-header h3 {
        font-size: 1.2rem;
    }
    
    .ctf-stats {
        padding: 25px;
        margin: 0 10px 30px;
    }
    
    .ctf-header h3 {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 5px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-box {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .expertise-quote {
        padding: 25px;
        margin: 0 10px;
    }
    
    .quote-text {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 480px) {
    .expertise-title {
        font-size: 1.8rem;
    }
    
    .skills-grid {
        padding: 0 5px;
    }
    
    .skill-category {
        padding: 15px;
    }
    
    .category-icon {
        width: 40px;
        height: 40px;
    }
    
    .category-icon i {
        font-size: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .ctf-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
        width: 100%;
    }
    
    .quote-text {
        font-size: 1.1rem;
    }
}
/*Section Skills End */


/*Section Project Start */
.projects-section {
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    margin-top: 50px;
}

.projects-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.projects-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.projects-header {
    text-align: center;
    margin-bottom: 60px;
}

.projects-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: white;
}

.projects-gradient {
    background: linear-gradient(135deg, #8b5cf6, #c084fc, #f472b6);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient 3s ease infinite;
}

.projects-sub {
    font-size: 1.2rem;
    color: #94a3b8;
    font-weight: 400;
    margin-bottom: 30px;
}

.project-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.filter-btn {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #cbd5e1;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.filter-btn:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
    border-color: transparent;
    color: white;
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.3);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.projects-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.projects-list.single-project {
    display: flex;
    justify-content: center;
    padding: 50px 0;
}

.projects-list.single-project .project-card {
    max-width: 350px;
    width: 100%;
}

.projects-grid.single-project .project-image {
    height: auto;
    aspect-ratio: 16/9;
}

.project-card {
    background: rgba(30, 30, 40, 0.6);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    opacity: 0;
    transform: translateY(30px);
    backdrop-filter: blur(10px);
}

.project-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2),
                0 0 0 1px rgba(139, 92, 246, 0.2);
}

.project-image {
    height: 200px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-icon {
    font-size: 4rem;
    color: rgba(139, 92, 246, 0.8);
    z-index: 2;
    position: relative;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.project-icon video,
.project-icon iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    position: absolute;
    top: 0;
    left: 0;
}

.project-card:hover .project-icon {
    transform: scale(1.2);
    color: #fff;
    filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.8));
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(30, 30, 40, 0.9) 100%
    );
}

.project-content {
    padding: 25px;
}

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

.project-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #f8fafc;
    margin: 0;
    flex: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.project-category {
    padding: 4px 12px;
    background: rgba(139, 92, 246, 0.15);
    color: #c084fc;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-left: 10px;
    border: 1px solid rgba(192, 132, 252, 0.2);
}

.project-desc {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
    justify-content: center;
}

.project-tech span {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    font-size: 0.85rem;
    color: #94a3b8;
    transition: all 0.3s ease;
}

.project-tech span:hover {
    background: rgba(139, 92, 246, 0.1);
    color: #c084fc;
    border-color: rgba(139, 92, 246, 0.3);
}

.project-links {
    display: flex;
    gap: 12px;
}

.project-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
    border: 1px solid transparent;
}

.project-btn i {
    font-size: 1.2rem;
}

.github-btn {
    background: linear-gradient(135deg, #333, #444);
    color: white;
}

.github-btn:hover {
    background: linear-gradient(135deg, #444, #555);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.live-btn {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
}

.live-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.youtube-btn {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
}

.youtube-btn:hover {
    background: linear-gradient(135deg, #b91c1c, #dc2626);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

.project-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 60px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #8b5cf6, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    color: #94a3b8;
    font-size: 1rem;
    font-weight: 500;
}

@media screen and (max-width: 768px) {
    .projects-section {
        padding: 60px 15px;
        margin-top: 30px;
    }
    
    .projects-wrapper {
        padding: 0 10px;
    }
    
    .projects-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 10px;
    }
    
    .projects-sub {
        font-size: 1rem;
        margin-bottom: 20px;
        padding: 0 10px;
    }
    
    .project-filters {
        gap: 8px;
        padding: 0 10px;
        margin-top: 20px;
    }
    
    .filter-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
        min-width: auto;
        flex: 1;
    }
    
    .projects-grid,
    .projects-list {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 5px;
        margin-bottom: 40px;
    }
    
    .project-card {
        margin: 0;
        width: 100%;
        border-radius: 15px;
        opacity: 1 !important;
        transform: none !important;
    }
    
    .project-image {
        height: 160px;
    }
    
    .project-icon {
        font-size: 3rem;
    }
    
    .project-content {
        padding: 20px;
    }
    
    .project-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .project-header h3 {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    
    .project-category {
        align-self: flex-start;
        margin-left: 0;
    }
    
    .project-desc {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .project-tech {
        gap: 6px;
    
        justify-content: center !important;
    }

    .project-tech span {
        padding: 5px 10px;
        font-size: 0.8rem;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }
    .project-links {
        gap: 10px;
    }
    
    .project-btn {
        padding: 12px 16px;
        font-size: 0.9rem;
        flex: 1;
    }
    
    .project-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 25px 15px;
        margin-top: 40px;
        margin: 0 10px;
    }
    
    .stat-item {
        padding: 10px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
  .project-card {
    height: auto !important;
    min-height: 200px;
    margin-bottom: 20px !important;
    display: flex;
    flex-direction: column;
  }
  
  .project-card .card-content {
    flex: 1;
    overflow: hidden;
  }
  
  .project-card .description {
    display: -webkit-box;
    -webkit-line-clamp: 4; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 6em;
    line-height: 1.5em;
  }
  
  .projects-container,
  .cards-container {
    gap: 15px !important; 
  }
  
  .projects-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
}

@media screen and (max-width: 480px) {
    .projects-section {
        padding: 40px 10px;
    }
    
    .projects-title {
        font-size: 1.8rem;
    }
    
    .projects-sub {
        font-size: 0.9rem;
    }
    
    .project-filters {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .filter-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .project-image {
        height: 140px;
    }
    
    .project-icon {
        font-size: 2.5rem;
    }
    
    .project-content {
        padding: 15px;
    }
    
    .project-header h3 {
        font-size: 1.1rem;
    }
    
    .project-desc {
        font-size: 0.85rem;
    }
    
    .project-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px 10px;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 700px) {
    .project-card.stagger-fade {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    
    .projects-section.fade-in-up {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

@supports (-webkit-touch-callout: none) {
    .project-card {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

@media screen and (max-width: 700px) {
    .stagger-fade,
    .fade-in-up,
    .fadein-left,
    .autoDisplay,
    .autoBlur {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }
}

.projects-section {
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.projects-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}


@media screen and (max-width: 480px) {
    /* Extra small phones */
    .projects-title {
        font-size: 1.6rem !important;
        padding: 0 10px !important;
    }
    
    .projects-sub {
        font-size: 0.85rem !important;
        padding: 0 10px !important;
    }
    
    .project-filters {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 6px !important;
    }
    
    .filter-btn {
        padding: 10px 5px !important;
        font-size: 0.75rem !important;
    }
    
    .project-image {
        height: 120px !important;
    }
    
    .project-icon {
        font-size: 2.2rem !important;
    }
}

@supports (-webkit-touch-callout: none) {
    .filter-btn {
        cursor: pointer !important;
        -webkit-user-select: none !important;
        user-select: none !important;
    }
    
    .project-card {
        -webkit-transform: translateZ(0) !important;
        transform: translateZ(0) !important;
    }
}

@media screen and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 0) {
    .filter-btn:active {
        transform: scale(0.95) !important;
        transition: transform 0.1s !important;
    }
}

body, html, .container, .projects-section, .projects-wrapper {
    max-width: 100vw !important;
}

/* Skills Section Start*/
.skills-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin-top: 100px;
}

.skills-box {
  width: 100%;
  height: 90vh;
  position: relative;
  display: flex;
  align-items: start;
  justify-content: center;
  mix-blend-mode: lighten;
  opacity: 0.7;
}

.skills-image {
  width: 70%;
  mix-blend-mode: difference;
}

.Designer {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  top: 25%;
  left: 5%;
  max-width: 300px;
  text-align: center;
}

.Designer h1 {
  font-size: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.Designer p {
  line-height: 23px;
  text-align: center;
}

.coder {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: start;
  top: 25%;
  right: 5%;
  max-width: 300px;
}

.coder h1 {
  font-size: 50px;
  display: flex;
  align-items: center;
}

.coder p {
  line-height: 23px;
}

.coder-text {
  font-size: 50px;
}

.slider {
  position: relative;
  margin-bottom: 300px;
  width: 70%;
  height: var(--height);
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 10% 90%, transparent);
  mix-blend-mode: difference;
  opacity: 0.7;
}
.slider .list {
  display: flex;
  width: 100%;
  min-width: calc(var(--width) * var(--quantity));
  position: relative;
}
.slider .list .item {
  width: var(--width);
  height: var(--height);
  position: absolute;
  left: 100%;
  animation: autoRun 10s linear infinite;
  transition: filter 0.5s;
  animation-delay: calc(
    (10s / var(--quantity)) * (var(--position) - 1) - 10s
  ) !important;
}
.slider .list .item img {
  width: 100%;
}
@keyframes autoRun {
  from {
    left: 100%;
  }
  to {
    left: calc(var(--width) * -1);
  }
}
.slider:hover .item {
  animation-play-state: paused !important;
  filter: grayscale(1);
}
.slider .item:hover {
  filter: grayscale(0);
}

@media (max-width: 768px) {
  .slider {
    display: none;
  }
}

.contact-section {
  width: 80%;
  height: 100vh;
  display: flex;
  justify-content: center;
  gap: 10%;
  align-items: center;
  position: relative;
}

.contact-section h1 {
  position: absolute;
  top: 10%;
  left: 40%;
}

.social-box {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.social-box a {
  color: lightgray;
  text-decoration: none;
  font-size: 20px;
  text-wrap: nowrap;
}

.social-box i {
  color: #7668ff;
  font-size: 30px;
  margin-right: 10px;
}

.social-icons a i {
  color: white;
  margin-top: 40px;
}

.contact-box p {
  max-width: 400px;
  margin-top: 30px;
  margin-bottom: 5px;
}

.contact-box input {
  padding: 7.5px 30px;
  background-color: lightgray;
  width: 80%;
  height: 25px;
  border: none;
  outline: none;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.contact-box button {
  margin-top: 30px;
  color: white;
  padding: 15px 35px;
  border-radius: 10px;
  border: 1px solid #72a1de81;
  background-color: #2200493d;
  box-shadow: 0 0 5px #72a1de81;
  cursor: pointer;
  transition: 0.3s;
}

.contact-box button:hover {
  opacity: 0.8;
  box-shadow: 0 0 15px #72a1de81;
}




.autoBlur {
  animation: autoBlurAnimation linear both;
  animation-timeline: view();
}
@keyframes autoBlurAnimation {
  0% {
    filter: blur(40px);
  }
  35%,
  65% {
    filter: blur(0);
    opacity: 1;
  }
  100% {
    filter: blur(0);
    opacity: 1;
  }
}

.autoDisplay {
  animation: autoDisplayAnimation both;
  animation-timeline: view();
}

@keyframes autoDisplayAnimation {
  from {
    filter: blur(10px);
    transform: translateY(-200px) scale(0);
  }
  50% {
    opacity: 1;
    filter: blur(0px);
    transform: translateX(0) scale(1);
  }
}


.fadein-left {
  animation: fadeInLeftAnimation both;
  animation-timeline: view();
}

@keyframes fadeInLeftAnimation {
  0% {
    opacity: 0;
    transform: translateX(-500px) scale(0.2);
    filter: blur(10px);
  }
  35%,
  65% {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0px);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0px);
  }
}


.fade-in-up {
  animation: fadeInUpAnimation both;
  animation-timeline: view();
}

@keyframes fadeInUpAnimation {
  0% {
    opacity: 0;
    transform: translateY(100px) scale(0.8);
  }
  35%,
  65% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}


.stagger-fade {
  animation: staggerFadeAnimation both;
  animation-timeline: view();
  animation-delay: calc(var(--stagger-delay, 0) * 0.2s);
}

@keyframes staggerFadeAnimation {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  35%,
  65% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sidebar */

.menu-icon {
  font-size: 28px;
  cursor: pointer;
  display: none;
}

.menu-icon i {
  color: white;
}

.sidebar {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 70%;
  width: 0%;
  background-color: #000;
  z-index: 999;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
  opacity: 0;
  border-bottom-left-radius: 50px;
}

@media screen and (max-width: 700px) {
  .sidebar {
    z-index: 1000;
  }
}

.close-icon {
  font-size: 30px;
  color: lightgray;
  padding-left: 10px;
  cursor: pointer;
}

@media screen and (max-width: 700px) {
  .close-icon {
    position: absolute;
    right: 10px;
    top: 15px;
    padding-left: 0;
  }
}

.sidebar ul {
  padding-left: 15px;
}

.sidebar ul li {
  list-style: none;
  margin-bottom: 20px;
}

.sidebar ul li a {
  text-decoration: none;
  color: lightgray;
  font-size: 20px;
  font-weight: 600;
}

.social-sidebar {
  padding-left: 15px;
  margin-top: 30px;
  text-wrap: nowrap;
}

.social-sidebar a {
  font-size: 25px;
  padding: 5px 5px;
  cursor: pointer;
  transition: 0.5s;
  color: white;
}

.social-sidebar a:active {
  transform: scale(1.2);
}

.sidebar.open-sidebar {
  animation: openSideBarAnimation 0.3s forwards;
}

@keyframes openSideBarAnimation {
  to {
    width: 80%;
    opacity: 1;
    bottom: 0;
    border-radius: 0;
  }
}


.sidebar.close-sidebar {
  animation: closeSideBarAnimation 0.3s forwards;
}

@keyframes closeSideBarAnimation {
  from {
    width: 80%;
    opacity: 1;
    bottom: 0;
    border-radius: 0;
  }
  to {
    width: 0;
    opacity: 0;
    bottom: 70%;
    border-bottom-left-radius: 50%;
  }
}

@media (max-aspect-ratio: 16/9) {
  .back-vid {
    width: auto;
    height: 100%;
  }
}

@media (min-aspect-ratio: 16/9) {
  .back-vid {
    width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 1200px) {
  .blackhole-box video {
    margin-top: -20%;
  }

  .hero-info h1 {
    font-size: 40px;
    max-width: 400px;
    line-height: 40px;
  }

  .hero-info P {
    max-width: 300px;
  }

  .skills-video-box {
    right: 0%;
  }

  .skills-video-box video {
    height: 500px;
  }

  .my-project {
    margin-bottom: 200px;
    scale: 0.8;
  }

  .contact-section .section-title {
    left: 30%;
  }
}

@media screen and (max-width: 700px) {
  header {
    position: fixed;
    height: 80px;
    padding: 0 15px;
  }

  header ul {
    display: none;
  }

  header .box-icons {
    display: none;
  }

  .menu-icon {
    display: inline-block;
    cursor: pointer;
  }

  .skills-video-box {
    display: none;
  }

  .stagger-fade {
    animation: none;
    opacity: 1 !important;
    transform: none !important;
  }

  .fade-up {
    animation: none;
    opacity: 1 !important;
    transform: none !important;
  }

  .blackhole-box video {
    width: 100%;
    margin-top: -15%;
  }

  .autoBlur {
    animation: none;
  }

  .hero {
    flex-direction: column;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .hero-info {
    top: 30%;
  }


  .hero .skills-video-box {
    height: 200px;
    top: 5%;
  }

  .info-cards {
    grid-template-columns: auto;
  }

  .card:nth-child(3) {
    grid-column: span 2;
    height: 70vh;
  }

  .card video {
    width: 100%;
  }

  .container {
    height: 100%;
  }

  .project-vidbox video {
    width: 300px;
    margin-left: 0;
  }

  .project-info {
    overflow: hidden;
    padding-left: 0;
    margin-left: 0;
  }

  .project-info h1 {
    font-size: 24px;
    max-width: 250px;
    text-wrap: wrap;
  }

  .project-info p {
    font-size: 12px;
    text-wrap: wrap;
    max-width: 250px;
    min-width: 0;
  }

  .project-info button {
    padding: 8px 15px;
  }

  .my-project {
    margin: 200px auto 700px;
    scale: 1.1;
  }

  .project-card {
    flex-direction: column;
    gap: 30px;
  }

  .project-vidbox {
    min-width: 200px;
  }

  .project-info {
    width: 85%;
    text-align: center;
    margin: 0 auto;
    align-self: center;
  }

  .fadein-left {
    animation: none;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
  }

  .project-info h1 {
    text-wrap: nowrap;
  }

  .project-info p {
    max-width: 300px;
  }

  .Designer {
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
  }

  .Designer h1 {
    margin-bottom: 0;
    margin-top: 70px;
  }

  .coder {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    align-items: center;
    text-align: center;
  }

  .coder h1 {
    margin-bottom: 0;
    text-align: center;
  }

  .coder p {
    text-align: center;
  }

  .slider .list .item img {
    width: 70%;
  }

  .contact-section {
    flex-direction: column;
    margin-top: 100px;
    margin-bottom: 50px;
  }

  .footer {
    font-size: 10px;
  }

  .social-box {
    margin-left: -90px;
  }
}

@media screen and (max-width: 480px) {
  .hero .skills-video-box {
    display: none;
  }

  .blackhole-box {
    overflow: hidden;
  }

  .blackhole-box video {
    width: 140%;
    margin-top: -27%;
  }

  .left {
    scale: 0.9;
    margin-left: -30px;
  }

  .left h2 {
    font-size: 20px;
  }

  .hero {
    scale: 0.9;
  }

  .hero-info {
    bottom: 15%;
  }

  .hero-info h1 {
    font-size: 35px;
  }

  .scroll-down {
    left: 60%;
  }

  .section-title {
    font-size: 25px;
  }

  .info-cards {
    display: flex;
    flex-direction: column;
  }

  .card {
    min-height: 20rem;
  }

  .card h1 {
    bottom: 30%;
    font-size: 5px;
  }

  .project-card {
    height: 50%;
  }

  .project-info p {
    margin-bottom: 15px;
  }

  .project-info {
    width: 85%;
    align-self: center;
    text-align: center;
  }

  .skills-box {
    height: 120vh;
    margin-right: 30px;
  }

  .slider {
    bottom: 0%;
  }

  .contact-section {
    scale: 0.9;
    height: 120vh;
  }

  .contact-section .section-title {
    top: -30px;
    left: 25%;
  }

  .footer {
    padding: 15px;
  }

  .footer h1 {
    max-width: 150px;
  }

  .footer .box-icons {
    gap: 10px;
  }
}

.footer {
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(139, 92, 246, 0.1) 100%
  );
  backdrop-filter: blur(20px);
  /* border-top: 1px solid rgba(139, 92, 246, 0.3); */
  padding: 3rem 0 2rem;
  position: relative;
  overflow: hidden;
  height: auto;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  /* background: #8b5cf6; */
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #8b5cf6;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.footer-brand-name {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  margin: 0;
}

.footer-tagline {
  color: #d1d5db;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.footer-quote {
  font-style: normal;
  color: #a78bfa;
  position: relative;
  padding: 1rem;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 10px;
  border-left: 3px solid #8b5cf6;
}

.footer-quote i {
  color: #8b5cf6;
  font-size: 1.2rem;
}

.footer-links h3,
.footer-connect h3 {
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  position: relative;
}

.footer-links h3::after,
.footer-connect h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 2px;
  background: #8b5cf6;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.footer-links a:hover {
  color: #8b5cf6;
  transform: translateX(5px);
}

.footer-connect p {
  color: #d1d5db;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #d1d5db;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 0.9rem;
  font-weight: 500;
}

.social-link:hover {
  transform: translateY(-3px) scale(1.1);
  border-color: currentColor;
  box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

.social-link.github:hover {
  color: #fff;
  background: #333;
}
.social-link.linkedin:hover {
  color: #fff;
  background: #0077b5;
}
.social-link.instagram:hover {
  color: #fff;
  background: linear-gradient(
    45deg,
    #405de6,
    #5851db,
    #833ab4,
    #c13584,
    #e1306c,
    #fd1d1d
  );
}
.social-link.youtube:hover {
  color: #fff;
  background: #ff0000;
}

.footer-copyright {
  color: #d1d5db;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-copyright i {
  color: #ff4757;
  animation: heartbeat 1.5s infinite;
}

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

.footer-tech {
  color: #d1d5db;
  font-size: 0.85rem;
  font-weight: 500;
}

@media (min-width: 1025px) {
  .footer {
    width: 100%;
  }
  .footer-content {
    max-width: none;
    margin: 0;
  }
}

@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 2rem 0 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1rem;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-brand-name {
    font-size: 1.5rem;
  }

  .footer-tagline {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .footer-quote {
    text-align: center;
    font-size: 0.9rem;
    padding: 0.8rem;
  }

  .footer-links h3,
  .footer-connect h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }

  .footer-links ul {
    padding: 0;
    margin: 0;
  }

  .footer-links li {
    margin-bottom: 0.4rem;
  }

  .footer-links a {
    font-size: 0.9rem;
  }

  .footer-social {
    justify-content: center;
    gap: 0.8rem;
  }

  .social-link {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding-top: 1.5rem;
  }

  .footer-copyright p {
    font-size: 0.85rem;
  }

  .footer-tech {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 2rem 0 1.5rem;
  }

  .footer-content {
    padding: 0 1rem;
    gap: 2rem;
  }

  .footer-brand-name {
    font-size: 1.4rem;
  }

  .footer-tagline {
    font-size: 0.9rem;
  }

  .footer-quote {
    display: none;
  }

  .footer-links h3,
  .footer-connect h3 {
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
  }

  .footer-links a {
    font-size: 0.9rem;
  }

  .footer-social {
    gap: 0.8rem;
    justify-content: center;
  }

  .social-link {
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }

  .footer-bottom {
    padding-top: 1.5rem;
    gap: 1rem;
    flex-direction: column;
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .footer-copyright p {
    font-size: 0.85rem;
  }

  .footer-tech {
    font-size: 0.8rem;
  }
}

/* Certification Section Start */
.cert-section {
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.cert-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.cert-header {
  text-align: center;
  margin-bottom: 60px;
}

.cert-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: white;
}

.cert-gradient {
  background: linear-gradient(135deg, #c084fc, #8b5cf6, #6366f1);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient 3s ease infinite;
}

@keyframes gradient {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.cert-sub {
  font-size: 1.2rem;
  color: #94a3b8;
  font-weight: 400;
}

.cert-slider {
  position: relative;
  overflow: hidden;
  padding: 30px 0;
  margin: 0 -20px;
}

.cert-slider::before,
.cert-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.cert-slider::before {
  left: 0;
  background: linear-gradient(to right, #0a0a0f 0%, transparent 100%);
}

.cert-slider::after {
  right: 0;
  background: linear-gradient(to left, #0a0a0f 0%, transparent 100%);
}

.cert-track {
  display: flex;
  gap: 25px;
  width: max-content;
  animation: slide 30s linear infinite;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(
      calc(-50% - 12.5px)
    ); 
  }
}

.cert-slider:hover .cert-track {
  animation-play-state: paused;
}

.cert-card {
  flex-shrink: 0;
  width: 300px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(30, 30, 40, 0.6);
}

.cert-slider:hover .cert-card:not(:hover) {
  filter: grayscale(100%) brightness(0.4);
  opacity: 0.5;
  transform: scale(0.95);
}

.cert-card:hover {
  transform: scale(1.05);
  border-color: #8b5cf6;
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.3),
    0 0 0 1px rgba(139, 92, 246, 0.2);
  z-index: 10;
  filter: none !important;
  opacity: 1 !important;
}

.cert-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.cert-btn-container {
  text-align: center;
  margin-top: 60px;
}

.cert-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #7c3aed, #8b5cf6);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cert-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.cert-btn:hover::before {
  left: 100%;
}

.cert-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
}

.cert-btn i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.cert-btn:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .cert-section {
    padding: 60px 15px;
  }

  .cert-title {
    font-size: 2.5rem;
  }

  .cert-card {
    width: 250px;
    height: 170px;
  }

  .cert-track {
    gap: 20px;
    animation-duration: 25s;
  }

  @keyframes slide {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-50% - 10px));
    }
  }

  .cert-slider::before,
  .cert-slider::after {
    width: 60px;
  }
}

@media (max-width: 480px) {
  .cert-title {
    font-size: 2rem;
  }

  .cert-card {
    width: 200px;
    height: 140px;
  }

  .cert-track {
    gap: 15px;
    animation-duration: 20s;
  }

  .cert-btn {
    padding: 14px 32px;
    font-size: 1rem;
  }
}

/* End Banner Start */
.end-banner {
  width: 100%;
  overflow: visible;
}

.end-banner img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
}
/* End Banner End */