

html {
  scroll-behavior: smooth;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: black;
    color: #e7e7e7;
    line-height: 1.5;
}


.main-content {


    z-index: 1;
    background-color: rgba(0, 0, 0, 0.7);
}

/* GRADIENT AND LAYER BLUR EFFECT */
.image-gradient {
    
    position: absolute;
    top: 0px;
    right: 100px;
    opacity: 0.8;
    z-index: 1;
    width: 38%;
    filter: brightness(1.3) contrast(1.1) saturate(1.2);
    animation: fadeZoomIn 1.8s ease-out forwards, glow 4s ease-in-out infinite;
    transition: filter 0.5s ease, box-shadow 0.5s ease;
}

@keyframes fadeZoomIn {
    0% {
        opacity: 0;
        transform: scale(1.1);
        filter: brightness(0.5);
    }
    100% {
        opacity: 0.8;
        transform: scale(1);
        filter: brightness(1.3);
    }
}





/* CONTAINER */
.container{
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5rem;
  position: relative;
  z-index: 1000;
  flex-wrap: wrap;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5rem;
    background-color: rgba(0, 0, 0, 0.9);
    position: sticky;
    top: 0;
    z-index: 100;
}

header h1 {
  margin: 0;
  font-size: 3rem;
  font-weight: 300;
}

/* Desktop Navigation */
nav {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-left: -5%;
}

nav a {
  font-size: 1rem;
  letter-spacing: 0.1rem;
  transition: color 0.2s ease;
  text-decoration: none;
  color: inherit;
}

nav a:hover {
  color: #a7a7a7;
}

.social-icons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    color: white;
    margin: 1rem auto;
    font-size: 1.5rem;
   
}

/* Style links */
.social-icons a {
    color: white;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    color: #42e695;
    transform: scale(1.2);
}



.social-icons-mobile {
    display: flex;

    display: none;
    gap: 5rem;
    justify-content: center;
    align-items: center;
    color: white;
    margin: 1rem auto;
    font-size: 1.5rem;
   
}

/* Style links */
.social-icons-mobile a {
    color: white;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons-mobile a:hover {
    color: #42e695;
    transform: scale(1.2);
}

@media (min-width: 769px) {
    .social-icons {
        flex-direction: column;
        position: absolute ;
        left: 150px;
        top: 350px;
       
    }
}

/* Button */
.btn-signing {
  background-color: #a7a7a7;
  color: black;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  transition: 0.5s;
  cursor: pointer;
}

.btn-signing:hover {
  background-color: white;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.9);
  position: absolute;
  top: 100%;
  right: 5%;
  padding: 1rem;
  border-radius: 10px;
  z-index: 1000;
}

.mobile-nav a {
  color: white;
  text-decoration: none;
  margin: 0.5rem 0;
  font-weight: 500;
}

/* MAIN CONTENT */
main{
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(90vh - 6rem);
}

.content{
    max-width: 40rem;
    margin-left: 16%;
    z-index: 999;
}

.tag-box {
    position: relative;
    width: 18rem;
    height: 2.5rem;
    border-radius: 50px;
    background: linear-gradient(to right, #ff6ec4, #7873f5, #3fd0c9, #42e695, #ffd452, #ff6ec4);
    background-size: 200%;
    animation: animationGradient 2.5s linear infinite;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}


@keyframes animationGradient {
    to{
        background-position: 200%;
    }
}

.tag-box .tag{
    position: absolute;
    inset: 3px 3px 3px 3px;
    background-color: black;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s ease;
    cursor: pointer;
}

.tag-box .tag:hover{
    color: #5300a0;
}

.content h1 {
    font-size: 4rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin: 2rem 0;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(128, 128, 128, 0.418);
}

.description {
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    max-width: 35rem;
    color: gray;
}

.buttons {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
}

.btn-get-started{
    text-decoration: none;
    border: 1px solid #2a2a2a;
    padding: 0.7rem 1.2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    transition: background-color 0.2s ease;
}

.btn-get-started:hover{
    background-color: #1a1a1a;
}

.btn-signing-main {
    text-decoration: none;
    background-color: lightgray;
    color: black;
    padding: 0.6rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    transition: background-color 0.2s ease;
}

.btn-signing-main:hover {
    background-color: gray;
}





/* Shared Button Styles */
.btn-portfolio,
.btn-contact {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 0.5rem;
  text-align: center;
}
.divider-line{
  display: block;
  

}

/* Portfolio Button: Gradient style */
.btn-portfolio {
  background: linear-gradient(to right, #42e695, #3bb2b8);
  color: #000;
  box-shadow: 0 5px 20px rgba(66, 230, 149, 0.2);
}

.btn-portfolio:hover {
  background: linear-gradient(to right, #3bb2b8, #42e695);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(66, 230, 149, 0.4);
}

/* Contact Button: Clean white style */
.btn-contact {
  background: white;
  color: black;
  border: 2px solid #e7e7e7;
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.1);
}

.btn-contact:hover {
  background: #f2f2f2;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}



/* TABLET RESPONSIVE */
@media (max-width: 1300px){
   header {
    padding: 1rem 0.5rem;
  }
    .content{
        margin-top: 85%;
    }


 
}


/* MOBILE RESPONSIVE */
@media (max-width: 768px){
    header {

        padding: 1rem; /* Adjust padding */
    
    justify-content: space-between;
  }

  nav {
    display: none;
  }

  .hamburger {
    display: block;
    margin-right: 0.5rem;
  }
   .social-icons {
        display: none;
    }
    .social-icons-mobile{
      display: block;
      flex-direction: row;
    }

  .btn-signing {
    display: none;
  }

  .mobile-nav.show {
    display: flex;
  }

   header h1 {
    font-size: 1.8rem;
    margin-left: 0.5rem;
  }

    .image-gradient {
        position: relative;
        width: 30vw;  /* Viewport-based sizing */
        height: 30vw; /* Equal to width for perfect circle */
        min-width: 150px; /* Minimum size */
        min-height: 150px;
        max-width: 200px; /* Maximum size */
        max-height: 200px;
        border-radius: 50%;
        object-fit: cover;
        margin-top: 2;
        margin: 2rem auto;
        display: block;
        left: auto;
        right: auto;
        top: auto;
        opacity: 0.9;
        z-index: 1;
        animation: 
            fadeZoomIn 1.8s ease-out forwards, 
            glow 4s ease-in-out infinite,
            float 6s ease-in-out infinite;
        border: 3px solid rgba(66, 230, 149, 0.3); /* Optional decorative border */
        box-shadow: 0 0 20px rgba(66, 230, 149, 0.2);
    }

    /* Perfect circle enforcement */
    @media (max-aspect-ratio: 1/1) {
        .image-gradient {
            width: 30vh;
            height: 30vh;
        }
    }

    /* Floating animation */
    @keyframes float {
        0%, 100% { transform: translateY(0) scale(1); }
        50% { transform: translateY(-10px) scale(1.03); }
    }

    /* Content adjustments */
    .content {
        margin-top: 4rem !important;
        margin-left: -10px;
        text-align: center;
        padding-top: 0 !important;
    }


    

    /* Adjust divider line */
    .divider-line {
        margin: 1rem auto;
    }

    /* Reduce font sizes for mobile */
    .content h1 {
        font-size: 2.5rem;
        margin: 1rem 0;
        line-height: 1.2;
    }

    .description {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    /* Stack buttons vertically on mobile */
    .buttons {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }

    /* Full width buttons on mobile */
    .btn-portfolio,
    .btn-contact {
        display: block;
        width: 100%;
        padding: 1rem;
    }

    /* Adjust the tag box */
    .tag-box {
        width: 100%;
        max-width: 18rem;
        margin: 0 auto;
    }

        .divider-line {
        height: 1px;
        width: 90%;
        margin: 1.5rem auto; /* Centered with less vertical space */
        background: linear-gradient(90deg, 
                    rgba(255,255,255,0) 0%, 
                    rgba(66,230,149,0.8) 50%, 
                    rgba(255,255,255,0) 100%);
        box-shadow: 0 0 8px rgba(66, 230, 149, 0.6);
        position: relative;
        opacity: 0.9;
        animation: mobile-glow 3s ease infinite;
    }

    /* Simplified glow animation for mobile */
    @keyframes mobile-glow {
        0%, 100% {
            opacity: 0.7;
            box-shadow: 0 0 5px rgba(66, 230, 149, 0.4);
        }
        50% {
            opacity: 1;
            box-shadow: 0 0 12px rgba(66, 230, 149, 0.8);
        }
    }

    /* If you want the color-shifting version on mobile too */
    .divider-line.animated {
        animation: mobile-glow 3s ease infinite, 
                   mobile-color-shift 9s linear infinite;
    }

    @keyframes mobile-color-shift {
        0% { background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(66,230,149,0.8) 50%, rgba(255,255,255,0) 100%); }
        33% { background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,110,196,0.8) 50%, rgba(255,255,255,0) 100%); }
        66% { background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,212,82,0.8) 50%, rgba(255,255,255,0) 100%); }
        100% { background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(66,230,149,0.8) 50%, rgba(255,255,255,0) 100%); }
    }
}


@media (max-width: 480px) {

     .hamburger {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        width: 24px;
        height: 18px;
        cursor: pointer;
        z-index: 1001;
    }
    
    .hamburger span {
        display: block;
        width: 100%;
        height: 2px;
        background: white;
        transition: all 0.3s ease;
    }
    
    /* Mobile nav show/hide */
    .mobile-nav {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
         width: 60%; 
        height: 100vh;
        background: rgba(0,0,0,0.95);
        padding: 5rem 2rem;
        z-index: 1000;
        transform: translateX(100%);
        transition: transform 0.3s ease-out;
    }
    
    .mobile-nav.show {
        transform: translateX(0);
    }
    
    /* Close button */
   /* .mobile-nav::before {
    content: "×";
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    color: white;
    cursor: pointer;
} */

.close-btn {
  position: absolute;
  top: 1.5rem;
  right: 4rem;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  z-index: 1001;
}

    
    /* Animate hamburger to X */
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* 1. Hero Image Adjustments */
    .image-gradient {
        margin-top: 6vh;
        height: 40vh; /* Even shorter hero area */
        opacity: 0.5; /* More transparent for text readability */
    }

     .divider-line {
        /* Structural Adjustments */
        height: 1px;
        width: 85%; /* Slightly narrower than tablet */
        margin: 1rem auto; /* Tighter vertical spacing */
        
        /* Visual Treatment */
        background: linear-gradient(90deg, 
                    rgba(255,255,255,0) 0%,
                    rgba(66,230,149,0.9) 50%, 
                    rgba(255,255,255,0) 100%);
        box-shadow: 0 0 5px rgba(66, 230, 149, 0.5);
        opacity: 0.95;
        
        /* Performance-Friendly Animation */
        animation: 
            mobile-glow-mini 2.5s ease-in-out infinite;
    }

    /* Ultra-Lightweight Glow Pulse */
    @keyframes mobile-glow-mini {
        0%, 100% {
            opacity: 0.8;
            box-shadow: 0 0 3px rgba(66, 230, 149, 0.3);
        }
        50% {
            opacity: 1;
            box-shadow: 0 0 8px rgba(66, 230, 149, 0.6);
        }
    }

    /* Color-Shifting Version (Simplified) */
    .divider-line.animated {
        animation: 
            mobile-glow-mini 2.5s ease-in-out infinite,
            mobile-color-shift-mini 6s linear infinite;
    }

    @keyframes mobile-color-shift-mini {
        0%, 100% { 
            background: linear-gradient(90deg, 
                        rgba(255,255,255,0) 0%,
                        rgba(66,230,149,0.9) 50%,
                        rgba(255,255,255,0) 100%); 
        }
        33% { 
            background: linear-gradient(90deg,
                        rgba(255,255,255,0) 0%,
                        rgba(120,115,245,0.9) 50%,
                        rgba(255,255,255,0) 100%); 
        }
        66% { 
            background: linear-gradient(90deg,
                        rgba(255,255,255,0) 0%,
                        rgba(255,212,82,0.9) 50%,
                        rgba(255,255,255,0) 100%); 
        }
    }

    /* 2. Content Repositioning */
    .content {
    
        position: relative;
        top: -60px;
        padding: 0 1rem; /* Side padding */
    }

    /* 3. Typography Scaling */
    .content h1 {
        font-size: 1.8rem; /* Smaller heading */
        line-height: 1.2;
        margin: 0.5rem 0;
    }

    .description {
        font-size: 0.85rem; /* Smaller text */
        line-height: 1.4;
    }

    /* 4. Button Enhancements */
       .buttons {
        margin-top: 1rem;
        gap: 0.8rem;
    }

  .btn-portfolio,
    .btn-contact {
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
        margin: 0;
    }

    /* 5. Header Compact Mode */
    header {
        padding: 0.5rem;
    }

    .logo {
        font-size: 1.5rem !important; /* Force smaller logo */
    }

    /* 6. Tag Line Adjustment */
    .tag-box {
        height: 1.8rem;
        width: 90%;
    }

    .tag {
        font-size: 0.8rem; /* Smaller tag text */
    }

    /* 7. Prevent Horizontal Overflow */
    body {
        overflow-x: hidden;
        width: 100%;
    }
}



.skills-section {
  background: #111;
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  font-family: 'Inter', sans-serif;
  margin-top: 10vh;
}

.skills-section h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #ccfdf4;
}

.skills-intro {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  color: #212121;
  background: linear-gradient(90deg, #00ffd1, #00bcd4, #00ffd1);
  background-size: 200% auto;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 255, 209, 0.3);
  animation: glowSlide 3s linear infinite;
}

@keyframes glowSlide {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.badges {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 80px 20px;
}

.badge {
  background: #1c1c1c;
  color: #ffffff;
  border: 1px solid #00ffd1;
  border-radius: 20px;
  padding: 0.6rem 1.2rem;
  font-weight: bold;
  font-size: 0.95rem;
  transition: 0.3s;
}

.badge:hover {
  background: #00ffd1;
  color: black;
  transform: scale(1.05);
}

.hire-box {
  background: #1e1e1e;
  border: 1px solid #00ffd1;
  padding: 2rem;
  border-radius: 15px;
  margin: 3rem auto;
  text-align: center;
  max-width: 500px;
  box-shadow: 0 0 20px rgba(0, 255, 209, 0.15);
}

.hire-box h3 {
  color: #f0f0f0;
  margin-bottom: 1rem;
}

.hire-btn {
  background: #00ffd1;
  color: black;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  font-weight: bold;
  border-radius: 10px;
  transition: 0.3s ease;
  display: inline-block;
}

.hire-btn:hover {
  background: white;
  color: #00bcd4;
  transform: scale(1.05);
}

/* Mobile */
@media (max-width: 768px) {
  .skills-intro {
    font-size: 1rem;
    padding: 0.8rem;
  }

  .badge {
    font-size: 0.85rem;
  }

  .hire-box h3 {
    font-size: 1.1rem;
  }

  .hire-btn {
    font-size: 0.95rem;
    padding: 0.7rem 1.2rem;
  }
}

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

.skill-card {
  background: #1e1e1e;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(0, 255, 209, 0.3);
}

.skill-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fcfcfc;
}

.icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
}

.icons div {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.9rem;
  color: #ccc;
}

.icons img {
  width: 50px;
  height: 50px;
  margin-bottom: 5px;
  transition: transform 0.3s;
}

.icons img:hover {
  transform: scale(1.2);
}

.level {
  margin-top: 1rem;
  padding: 6px 12px;
  border-radius: 8px;
  font-weight: bold;
  display: inline-block;
}

.pro {
  background: #00c853;
  color: white;
}

.intermediate {
  background: #ff9800;
  color: white;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .skills-section h2 {
    font-size: 2rem;
  }

  .skill-card {
    padding: 1.5rem;
  }

  .icons img {
    width: 40px;
    height: 40px;
  }

  .icons span {
    font-size: 0.75rem;
  }


}

.typing-container {
  margin-top: 2rem;
  font-family: 'Courier New', monospace;
  font-size: 1.3rem;
  font-weight: 500;
  color: #00ffd1;
  min-height: 2rem;
  white-space: normal;       /* allow wrapping */
  max-width: 100%;           /* fill container */
  overflow-wrap: break-word; /* wrap long words */
  text-align: center;
  display: inline-block;
}

.typing-cursor {
  font-weight: bold;
  color: #00ffd1;
  animation: blink 1s steps(2, start) infinite;
  margin-left: 4px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@media (max-width: 600px) {
  .typing-container {
    font-size: 1rem;
    max-width: 95vw;
    margin-left: auto;
    margin-right: auto;
  }
}


.dev-quote {
  text-align: center;
  font-style: italic;
  color: #999;
  margin-top: 2rem;
  font-size: 1rem;
}






.about-section,
.contact-section {
  padding: 4rem 2rem;
  background-color: #0f0f0f;
  color: white;
  text-align: center;
}

.about-section h2,
.contact-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color:#ccfdf4;
  
}

.about-content p {
  max-width: 800px;
  margin: 80px auto;
  margin-bottom: 30px;
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.8;
  background: #1e1e1e;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 255, 209, 0.1);
}

.about-tagline {
  font-size: 1.2rem;
  color: #00ffd5;
  margin-bottom: 1rem;
}

.about-highlights li {
   list-style-position: inside;
  margin: 0.5rem 0;
  font-size: 1rem;
}

.about-quote {
  font-style: italic;
  margin-top: 2rem;
  color: #999;
}

.contact-highlights {
  list-style-position: inside; /* bullets appear inside the container */
  list-style-type: disc;        /* solid dots */
  padding-left: 0;              /* remove default padding */
  margin: 5rem auto;            /* center the list block */
  max-width: 350px;             /* max width so text block doesn't stretch too wide */
  color: #ccc;
  font-size: 1rem;
  text-align: left;             /* align text & bullets left inside the box */
}



.contact-links {

  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-card {
  background: #1c1c1c;
  padding: 1.5rem 2rem;
  border-radius: 15px;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 0 10px rgba(0, 255, 209, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card i {
  font-size: 1.5rem;
  color: #00ffd1;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 255, 209, 0.3);
}


.contact-cta {
  font-size: 1.1rem;
  margin-top: 3rem;
  margin-bottom: 6rem;
  color: #f9f9f9;
}



.contact-email a:hover {
  text-decoration: underline;
}


/* Mobile responsiveness */
@media (max-width: 768px) {
  .contact-card {
    flex-direction: column;
    align-items: center;
    font-size: 0.95rem;
    padding: 1rem;
  }

  .contact-card i {
    font-size: 1.3rem;
  }
}


.custom-footer {
  margin-top: 4rem;
  padding: 2rem 1rem;
  text-align: center;
  background: linear-gradient(135deg, #111, #1a1a1a);
  color: #ccc;
  font-size: 0.95rem;
  font-family: 'Courier New', monospace;
  border-top: 1px solid #333;
  letter-spacing: 0.5px;
  box-shadow: 0 -1px 5px rgba(0, 255, 209, 0.1);
}

.custom-footer strong {
  color: #00ffd1;
  font-weight: 700;
}

.custom-footer .code-nik {
  color: #fff;
  font-style: italic;
  padding-left: 5px;
}

.custom-footer span {
  color: #888;
}


