* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

body {
  background: #050505;
  color: #fff;
  overflow-x: hidden;
}
section{
  margin: 60px 0px;
}
.section-title {
  font-size: 40px;
  margin-bottom: 10px;
  text-align: center;
  font-weight: 800;
  letter-spacing: 1px;
}

.section-desc {
  text-align: center;
  max-width: 850px;
  margin: auto;
  color: #bdbdbd;
  font-size: 16px;
  margin-bottom: 50px;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  background: #fff;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 999;
  padding: 0;
}
.navbar a {
  text-decoration: none;
}
.navbar .logo {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}
.navbar .logo img {
 width: 129px;
 height: auto;
}
.navbar .logo span {
  color: #fff;
  border-bottom: 3px solid white;
}
.navbar .nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
  flex-wrap: wrap;
  padding: 0;
}
.navbar .nav-links li a {
  color: #000;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  transition: 0.3s;
}
.navbar .nav-links li a:hover {
  color: #aaa;
}
.navbar .menu-btn {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Hero section */

.hero-profile {
    position: relative;
    background: #0b0b0b;
    border-radius: 18px;
    padding: 0px;
    overflow: hidden;
    z-index: 1;
        box-shadow: 0px 0px 40px rgba(255, 120, 0, 0.4);

}

/* Fire Border Animation */
.hero-profile::before {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 18px;
    padding: 3px;
    background: conic-gradient(
        from 0deg,
        #ff0000,
        #ff6600,
        #ffcc00,
        #ff3300,
        #ff0000
    );
    animation: fireMove 3s linear infinite;
    z-index: -2;
}

/* Inner Black Card */
.hero-profile::after {
    content: "";
    position: absolute;
    inset: 3px;
    background: #0b0b0b;
    border-radius: 16px;
    z-index: -1;
}

/* Animation */
@keyframes fireMove {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.hero {
  /* padding: 90px 0; */
  position: relative;
}
.hero .hero-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  align-items: center;
}
.hero .hero-content h1 {
  font-size: 20px;
  color: #bbb;
  text-transform: uppercase;
}
.hero .hero-content h2 {
  font-size: 55px;
  font-weight: 900;
  margin: 10px 0;
}

.hero .hero-content p {
  color: #d1d1d1;
  font-size: 16px;
  max-width: 650px;
  margin-top: 15px;
}
.hero .hero-btns {
  margin-top: 28px;
  display: flex;
  gap: 15px;
}
.hero .profile-img-card {
   width: 140px;
  height: 140px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  border: 4px solid white;
  margin-bottom: 18px;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
  position: relative;
  margin: auto;
}
.hero .profile-img {
 width: 100%;
 height: 100%;
 object-fit: cover;
  border-radius: 50%;
}
.hero .profile-card h3 {
  font-size: 20px;
  margin-bottom: 5px;
  margin-top: 20px;
}
.hero .profile-card p {
  font-size: 14px;
  color: #ccc;
  margin: 8px 0;
}
.hero .profile-line {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 15px 0;
}
.hero .hero-stats {
  margin-top: 40px;
  display: flex;
  gap: 20px;
}
.hero .stat-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px;
  border-radius: 14px;
  width: 170px;
  text-align: center;
  transition: 0.3s;
}
.hero .stat-box:hover {
  border-color: white;
  transform: translateY(-6px);
}
.hero .stat-box h3 {
  font-size: 30px;
}
.hero .stat-box p {
  font-size: 13px;
  color: #ccc;
  margin: 0;
}
/* Profile Card */
.hero .profile-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 25px;
  border-radius: 18px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.05);
}

.hero .btn-primary {
  background: white;
  color: black;
  padding: 13px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
  border: 2px solid white;
}
.hero .btn-primary:hover {
  background: transparent;
  color: white;
  transform: translateY(-4px);
}
.hero .btn-outline {
  border: 2px solid white;
  padding: 13px 22px;
  border-radius: 10px;
  text-decoration: none;
  color: white;
  font-weight: 700;
  transition: 0.3s;
}
.hero .btn-outline:hover {
  background: white;
  color: black;
  transform: translateY(-4px);
}

.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  left: -200px;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(120px);
  border-radius: 50%;
}

@media (max-width: 992px) {
  .hero .hero-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
  }
}
/* End */

.footer-section {
  background: #fff;
  color: #000;
  padding: 70px 0 25px;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: "Poppins", sans-serif;
}
.footer-section .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-section .footer-logo {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  letter-spacing: 1px;
}
.footer-section .footer-logo img {
  width: 170px;
  height:auto;
  border-radius: 20px;
}
.footer-section .footer-desc {
  font-size: 14px;
  color: #000;
  line-height: 1.8;
  margin-bottom: 20px;
}
.footer-section .footer-social {
  display: flex;
  gap: 12px;
}
.footer-section .footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #080808;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 16px;
  transition: 0.3s ease;
  text-decoration: none;
}

.footer-section .footer-links h4,
.footer-section .footer-contact h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #000;
  position: relative;
}
.footer-section .footer-links h4::after,
.footer-section .footer-contact h4::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: #000;
  margin-top: 6px;
  opacity: 0.7;
}
.footer-section .footer-links ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer-section .footer-links ul li {
  margin-bottom: 12px;
}
.footer-section .footer-links ul li a {
  color: #000;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s ease;
  font-weight: 600;
}
.footer-section .footer-links ul li a:hover {
  color: #000;
  padding-left: 6px;
}
.footer-section .footer-contact p {
  font-size: 14px;
  color: #000;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-section .footer-contact i {
  color: #000;
  font-size: 15px;
}
.footer-section .footer-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 20px;
  border-radius: 6px;
  background: #000;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s ease;
}
.footer-section .footer-btn:hover {
  background: rgba(255, 255, 255, 0.85);
  transform: translateY(-3px);
}
.footer-section .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
  text-align: center;
}
.footer-section .footer-bottom p {
  font-size: 14px;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.8);
}
.footer-section .footer-bottom small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}
.footer-section .scroll-top {
  position: absolute;
  right: 25px;
  bottom: 25px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  cursor: pointer;
  transition: 0.3s ease;
}
.footer-section .scroll-top:hover {
  background: #fff;
  color: #000;
  transform: translateY(-5px);
}
/* Responsive Styles for Footer Section */
@media (max-width: 992px) {
  .footer-section .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-section .footer-social {
    justify-content: center;
  }
  .footer-section .footer-contact p {
    justify-content: center;
  }
  .footer-section .scroll-top {
    right: 15px;
    bottom: 15px;
  }
}

/* WhatsApp Floating Button */
.whatsapp-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: white;
  color: black;
  padding: 12px 18px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
  transition: 0.3s;
  border: solid 1px #000;
}

/*# sourceMappingURL=style.css.map */


/* about page  */
.about-us-page {
  /* background: #0b0b0b; */
  /* padding: 90px 0; */
  color: #fff;
  font-family: "Poppins", sans-serif;
}

.about-us-page .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 18px;
}

/* HERO SECTION */
.about-us-page .about-hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 35px;
  align-items: center;
  margin-bottom: 80px;
}

.about-us-page .about-hero-content h1 {
  font-size: 55px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.about-us-page .about-hero-content .sub-title {
  font-size: 18px;
  line-height: 1.8;
  color: #bfbfbf;
  margin-bottom: 15px;
}

.about-us-page .about-hero-content .desc {
  font-size: 16px;
  line-height: 1.9;
  color: #cfcfcf;
  margin-bottom: 25px;
}

.about-us-page .highlight {
  color: #fff;
  font-weight: 600;
}

.about-us-page .about-buttons {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}

.about-us-page .btn-primary {
  background: linear-gradient(90deg, #fff, #fff);
  color: #000;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  display: inline-block;
}

.about-us-page .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(0, 255, 213, 0.35);
}

.about-us-page .btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

.about-us-page .btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-3px);
}

.about-us-page .about-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  color: #aaaaaa;
}

.about-us-page .about-contact span i {
  margin-right: 6px;
  color: #fff;
}

/* PROFILE CARD */
.about-us-page .about-hero-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 28px;
  backdrop-filter: blur(12px);
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.6);
}

.about-us-page .profile-box h2 {
  font-size: 22px;
  margin-bottom: 6px;
}

.about-us-page .profile-box p {
  color: #bdbdbd;
  margin-bottom: 18px;
}

.about-us-page .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.about-us-page .stat-item {
  background: rgba(255, 255, 255, 0.04);
  padding: 14px;
  border-radius: 14px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-us-page .stat-item h3 {
  font-size: 22px;
  margin-bottom: 5px;
  color: #fff;
}

.about-us-page .stat-item p {
  font-size: 13px;
  color: #bfbfbf;
}

.about-us-page .full-btn {
  width: 100%;
  text-align: center;
  margin-top: 8px;
}

.about-us-page .social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.about-us-page .social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
}

.about-us-page .social-links a:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px);
}

/* SECTION TITLE */
.section-title {
  text-align: center;
  margin-bottom: 10px;
}

.section-title h2 {
  font-size: 38px;
  margin-bottom: 8px;
  font-weight: 700;
}
 .section-title p {
  font-size: 15px;
  color: #bdbdbd;
}

/* ABOUT TEXT */
.about-us-page .about-text-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 80px;
}

.about-us-page .about-text-card {
  background: rgba(255, 255, 255, 0.04);
  padding: 25px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-us-page .about-text-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #fff;
}

.about-us-page .about-text-card p {
  color: #cfcfcf;
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 10px;
}

.about-us-page .about-text-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-us-page .about-text-card ul li {
  padding: 8px 0;
  font-size: 15px;
  color: #d6d6d6;
}

.about-us-page .about-text-card ul li i {
  margin-right: 8px;
  color: #fff;
}

/* SKILLS */

.skill-page .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.skill-page .section-title h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #fff;
}

.skill-page .section-title p {
    font-size: 16px;
    color: #bfbfbf;
}

.skill-page .skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 80px;
}

.skill-page .skill-card {
    background: rgba(255, 255, 255, 0.04);
    padding: 22px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.3s;
}

.skill-page .skill-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 25px rgba(0, 255, 213, 0.12);
}

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

.skill-page .skill-card .skill-header i {
    font-size: 22px;
    margin-right: 12px;
    color: #fff;
}

.skill-page .skill-card h3 {
    font-size: 18px;
    margin: 0;
    color: #fff;
}

.skill-page .progress-bar {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    height: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.skill-page .progress {
    height: 100%;
    background: linear-gradient(90deg, #fff, #00a3ff);
    border-radius: 10px;
    transition: width 1s ease-in-out;
}

/* TIMELINE */
.experience-page .timeline {
  border-left: 2px solid rgba(255, 255, 255, 0.1);
  padding-left: 20px;
  margin-bottom: 80px;
}

.experience-page .timeline-item {
  position: relative;
  margin-bottom: 35px;
}

.experience-page .timeline-dot {
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: -28px;
  top: 8px;
}

.experience-page .timeline-content {
  background: rgba(255, 255, 255, 0.04);
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.experience-page .timeline-content h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.experience-page .timeline-content h4 {
  font-size: 14px;
  color: #bdbdbd;
  margin-bottom: 8px;
}

.experience-page .timeline-date {
  font-size: 13px;
  color: #fff;
  display: inline-block;
  margin-bottom: 10px;
}

.experience-page .timeline-content ul {
  margin: 0;
  padding-left: 18px;
}

.experience-page .timeline-content ul li {
  color: #d6d6d6;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 6px;
}

/* PROJECTS */
.projects-page .projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 80px;
}

.projects-page .project-card {
  background: rgba(255, 255, 255, 0.04);
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}

.projects-page .project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(0, 255, 213, 0.14);
}

.about-us-page .project-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #fff;
}

.projects-page .project-card p {
  color: #cfcfcf;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.projects-page .project-card span {
  font-size: 13px;
  color: #fff;
  font-weight: 600;
}

/* EDUCATION */
.about-us-page .education-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 80px;
}

.about-us-page .edu-card {
  background: rgba(255, 255, 255, 0.04);
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-us-page .edu-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
  color: #fff;
}

.about-us-page .edu-card p {
  font-size: 14px;
  color: #cfcfcf;
  margin-bottom: 6px;
}

.about-us-page .edu-card span {
  font-size: 13px;
  color: #fff;
  font-weight: 600;
}

/* CTA */
.about-us-page .about-cta {
  background: linear-gradient(90deg, rgba(0, 255, 213, 0.12), rgba(0, 179, 255, 0.12));
  border: 1px solid rgba(0, 255, 213, 0.25);
  padding: 45px 25px;
  border-radius: 20px;
  text-align: center;
}

.about-us-page .about-cta h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.about-us-page .about-cta p {
  font-size: 15px;
  color: #d6d6d6;
  max-width: 800px;
  margin: auto;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-us-page .about-hero {
    grid-template-columns: 1fr;
  }

  .about-us-page .skills-grid,
  .about-us-page .projects-grid,
  .about-us-page .education-grid,
  .about-us-page .about-text-grid {
    grid-template-columns: 1fr;
  }

  .about-us-page .about-hero-content h1 {
    font-size: 40px;
  }
}
/* End */


/* All Button  */
/* ===============================
   DOWNLOAD RESUME BUTTON
================================ */
.downlode-resume {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, #ff4d00, #ff0080);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0px 10px 30px rgba(255, 60, 0, 0.25);
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}

.downlode-resume::before {
    content: "";
    position: absolute;
    top: -40%;
    left: -60%;
    width: 220%;
    height: 220%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.35), transparent 60%);
    transform: rotate(25deg);
    opacity: 0;
    transition: 0.5s ease;
}

.downlode-resume:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0px 15px 45px rgba(255, 70, 0, 0.45);
}

.downlode-resume:hover::before {
    opacity: 1;
    left: 40%;
}


/* ===============================
   VIEW RESUME BUTTON
================================ */
.view-resume {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 14px;
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.6);
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}

.view-resume::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: translateX(-100%);
    transition: 0.6s ease;
}

.view-resume:hover {
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.10);
}

.view-resume:hover::before {
    transform: translateX(100%);
}


/* ===============================
   HIRE ME BUTTON (MOST PREMIUM)
================================ */
.hire-me {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 14px;
    color: #0b0b0b;
    background: linear-gradient(135deg, #00ffb3, #00d4ff);
    box-shadow: 0px 12px 35px rgba(0, 255, 179, 0.30);
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}

.hire-me::after {
    content: "";
    position: absolute;
    inset: -2px;
    background: linear-gradient(90deg, #00ffb3, #00d4ff, #ff0080, #ff4d00);
    background-size: 300% 300%;
    animation: hireGlow 3s linear infinite;
    z-index: -1;
    filter: blur(18px);
    opacity: 0.8;
}

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

.hire-me:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0px 18px 55px rgba(0, 255, 179, 0.55);
}


/* ===============================
   VIEW ALL PROJECTS BUTTON
================================ */
.view-projects {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 14px;
    color: #fff;
    background: #0b0b0b;
    border: 1px solid rgba(255, 255, 255, 0.14);
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}

.view-projects::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 77, 0, 0.5), rgba(0, 212, 255, 0.4));
    opacity: 0;
    transition: 0.4s ease;
}

.view-projects:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0px 15px 40px rgba(0, 212, 255, 0.18);
}

.view-projects:hover::before {
    opacity: 1;
}

/*  End */