:root {
  /*
  dark mode colours
   --bg: #121212; 
  --bg-sec:#222222;
  --txt-color: #efeaea; */
  
  --bg: #fff;
  --bg-sec:#ececec;
  --txt-color: rgb(0, 0, 0);

  --white: #efeaea;
  --maincolor: #fe4365;

}

::-moz-selection {
  /* Code for Firefox */
  color: var(--maincolor);
  background-color: var(--white);
}

::selection {
  color: var(--maincolor);
  background-color: var(--white);
}

body {
  background-color: var(--bg);
  font-family: "Josefin Sans", Arial;
  color: var(--txt-color);
  overflow: scroll;
  background-image: url('../res/bg.svg');
  background-repeat: no-repeat;
}

#submit{
  border: 1px solid var(--maincolor);
  color: var(--maincolor);
  font-size: 19px;
}
#submit:hover{
  background-color: var(--maincolor);
  color: white;
}
.txt-color{
  color: var(--txt-color);
}

.maincolor {
  /* Theme color */
  color: var(--maincolor);
  transition: 1.5s;
}

.input-bg{
  background-color: var(--bg-sec);
  color: var(--txt-color);
}
input:focus,textarea:focus{
  background-color: var(--bg-sec) !important;
  color: var(--txt-color) !important;
}
header {
  margin: 0;
  min-height: 100%;
}

.white {
  /* Font color */
  color: white;
}

.p1 {
  /* process Bar */
  background-color: var(--maincolor);
  color: white;
  text-align: right;
  padding-right: 10px;
  transition: 1.5s;
}

/* for menu select */
.hover {
  display: inline-block;
  position: relative;
  color: var(--maincolor);
  transition: 1.5s;
  cursor: pointer;
}
.hover:after {
  text-decoration: underline;
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--maincolor);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.hover:hover:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

span a {
  text-decoration: none;
  all: unset;
}
span a:hover {
  all: unset;
}
span {
  /* font-size: 32px; */
  font-size: 2em;
}
/* Menu close */

.logo {
  width: 100%;
  height: 90%;
  border-radius: 20%;
  object-fit: cover;
  object-position: 25% 25%;

	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.logo:hover{
	-webkit-filter: grayscale(0);
	filter: grayscale(0);
}

/* style for social midia icons */
.svg-icon{
margin: 4px;
}
.svg-icon:hover {
  opacity: 0.5;
}
a:hover{
  opacity: 0.5;
  color: var(--maincolor);
}
ul {
  list-style-type: none;
}
ul li {
  float: left;
}
ul li a {
  all: unset;
}
ul li a i {
  font-size: 1.3rem;
  margin-right: 15px;
  cursor: pointer;
}
ul li a i:hover {
  color: var(--maincolor);
  opacity: 0.5;
}

/* style for color picker card */
.crd {
  position: fixed;
  right: 40px;
  bottom: 40px;
  background-color: var(--bg-sec);
  padding: 8px;
  width: 170px;
  /* height: fit-content; */
  color: white;
  /* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */
  border: 1px solid var(--maincolor);
  border-radius: 5px;
}

/* style for gear button */
.bbt {
  position: fixed;
  right: 20px;
  bottom: 20px;
  border-radius: 50%;
  background-color: var(--maincolor);
  transition: 1.5s;
  /* border: 1px solid var(--maincolor); */
  width: 50px;
  height: 50px;
  color: white;
  cursor: pointer;
  display: grid;
  place-items: center;
  -webkit-animation: spin 2s linear infinite; /* roted btn */
  animation: spin 2s linear infinite; /* animate btn */
  /* box-shadow: rgba(0, 0, 0, 0.24) 0px 5px 15px; */
}

#color-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #0096FF ;
  height: 30px;
  width: 30px;
  border: 1px solid #151414;
  cursor: pointer;
}
#color-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #fe4365;
  height: 30px;
  width: 30px;
  border: 1px solid #151414;
  cursor: pointer;
}
#color-3 {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #e39801;
  height: 30px;
  width: 30px;
  border: 1px solid #151414;
  cursor: pointer;
}
#color-4 {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #37af49;
  height: 30px;
  width: 30px;
  border: 1px solid #151414;
  cursor: pointer;
}

/* Animating the gear button rored */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* animation close */
/* card project */
.project {
  padding: 8px;
  height: auto;
  width: 100%;
  background-color: var(--bg-sec);
}
.project:hover {
  transition: 1.5s;
  border: 1px solid var(--maincolor);
}
/*Typing ......... */

.cursor {
  display: inline-block;
  background-color: #ccc;
  margin-left: 0.1rem;
  width: 4px;
  height: 3rem;
  animation: blink 0.8s infinite;
}
.co-type p span .cursor .typing {
  animation: none;
}
@keyframes blink {
  0% {
    background-color: #ccc;
  }
  49% {
    background-color: #ccc;
  }
  50% {
    background-color: transparent;
  }
  99% {
    background-color: transparent;
  }
  100% {
    background-color: #ccc;
  }
}

.top-progress-container {
  width: 100%;
  height: 4px;
  position: fixed;
  top: 0;
}

.top-progress-bar {
  height: 4px;
  background: var(--maincolor);
  width: 0%;
}

@media only screen and (max-width: 400px) {
  .a-tag{
    font-size: 0.8rem;
    margin-right: 5px;
    cursor: pointer;
  }
}

/* custom css */
.big-title{
  font-size: 4rem;
}
.typed-text{
  font-size: 1.2em;
}
.img-co{
  height: 300px; width: 300px;
}

#Email{
  border: 0; 
  box-shadow: none
}
#Message{
  border: 0; 
  box-shadow: none;
}
#checker{
  font-size: 1rem;
}

#toggle-card{
  transition: height .10s ease;
  overflow: hidden;
}
#toggle-card:not(.active) {
  display: none;
}
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 10%;
}



/*  CV HERE 👇👇 */

    <style>
        @import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600&display=swap');

        body {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            background: black;
        }

        .cv {
            text-align: center;
        }

        .glitch-btn {
            position: relative;
            padding: 10px 20px; /* Mobile-friendly size */
            font-size: 16px;
            font-family: 'Orbitron', sans-serif;
            color: #00ff00;
            background: transparent;
            border: 2px solid #00ff00;
            text-transform: uppercase;
            cursor: pointer;
            overflow: hidden;
            transition: 0.4s;
            border-radius: 5px;
        }

        .glitch-btn:hover {
            background: #00ff00;
            color: black;
            box-shadow: 0 0 5px #00ff00, 0 0 10px #00ff00;
        }

        /* Glitch Effect */
        .glitch-btn span {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: transparent;
            color: #ff0000;
            opacity: 0;
            animation: glitch 0.3s infinite alternate;
        }

        .glitch-btn:hover span {
            opacity: 1;
        }

        @keyframes glitch {
            0% {
                transform: translate(1px, -1px);
            }
            100% {
                transform: translate(-1px, 1px);
            }
        }

        /* Responsive for Mobile */
        @media (max-width: 768px) {
            .glitch-btn {
                padding: 8px 15px;
                font-size: 14px;
            }
        }
/* CV END */








/* LMS START HERE  👇👇 */

/* Container for the login portal */
@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

.hacker-help {
  background: white;
  color: black;
  text-align: center;
  padding: 30px;
  margin: 1px auto;  /* ✅ Auto margin se proper center */
  border: 3px solid #0f0;
  box-shadow: 0 0 15px #0f0;
  border-radius: 4px;
  font-family: 'VT323', monospace;
  width: 85%;  /* ✅ Default width for most screens */
  max-width: 900px;  /* ✅ Laptop ke liye width adjust */
}

/* 📱 Mobile Optimization */
@media (max-width: 768px) {
  .hacker-help {
      width: 90%;  /* ✅ Mobile screens pe full width le */
      padding: 20px;
      font-size: 16px;
      box-shadow: 0 0 10px #0f0;
  }
}

/* 🖥️ Large Screens (Laptop / Desktop) */
@media (min-width: 1200px) {
  .hacker-help {
      width: 90%;  /* ✅ Laptop screens par aur chhoti width */
      max-width: 1230px;  /* ✅ Ensuring no extra-wide issue */
  }
}

.hacker-help h2 {
    font-size: 30px;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    overflow: hidden;
}

.glitch {
    position: relative;
    display: inline-block;
    color: #0f0;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    opacity: 0.75;
}

.glitch::before {
    top: -2px;
    left: -2px;
    color: #f00;
    animation: glitch 0.3s infinite linear alternate-reverse;
}

.glitch::after {
    top: 5px;
    left: 5px;
    color: #00f;
    animation: glitch 0.3s infinite linear alternate;
}

@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

.hacker-help p {
    font-size: 18px;
    margin: 15px 0;
    color: black;
}

.hacker-btn {
    background: black;
    color: #0f0;
    font-size: 18px;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    border-radius: 5px;
    border: 2px solid #0f0;
    position: relative;
    transition: 0.3s;
    box-shadow: 0 0 5px #0f0, 0 0 10px #0f0;
}

.hacker-btn:hover {
    background: #0f0;
    color: black;
    border: 2px solid black;
    box-shadow: 0 0 15px #0f0, 0 0 30px #0f0;
}

/* 👆👆 LMS END */







/* CERT HERE 👇👇 */
.badge-table {
  width: 100%;
  margin: 20px 0;
  text-align: center;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: auto;
}

th, td {
  padding: 10px; /* Reduced padding for smaller screens */
  border: 1px solid #ddd;
  text-align: center;
}

th {
  background-color: #f4f4f4;
  font-weight: bold;
}

.badge-image {
  width: 80px; /* Slightly smaller badge size */
  height: auto;
  transition: transform 0.3s ease;
}

.badge-image:hover {
  transform: scale(1.1); /* Zoom effect on hover */
}

tbody tr:hover {
  background-color: #f9f9f9; /* Highlight row on hover */
}

/* Responsive adjustments */
@media only screen and (max-width: 768px) {
  table {
    width: 100%; /* Ensure table width remains 100% */
  }

  th, td {
    font-size: 12px; /* Reduce font size on smaller screens */
    padding: 8px; /* Reduce padding for smaller screens */
  }

  .badge-image {
    width: 60px; /* Smaller badge size for small screens */
  }
}

@media only screen and (max-width: 480px) {
  th, td {
    font-size: 10px; /* Further reduce font size for very small screens */
    padding: 6px; /* Further reduce padding */
  }

  .badge-image {
    width: 50px; /* Smallest badge size for very small screens */
  }
}
/* CERT END ABOVE */





/* H1 NAME styles */
@keyframes glitch {
  0% { transform: translate(0, 0); }
  20% { transform: translate(-2px, 2px); }
  40% { transform: translate(2px, -2px); }
  60% { transform: translate(-2px, -2px); }
  80% { transform: translate(2px, 2px); }
  100% { transform: translate(0, 0); }
}

@keyframes colorFlicker {
  0%, 100% { text-shadow: 0 0 5px #0ff, 0 0 10px #0ff, 0 0 20px #0ff; }
  50% { text-shadow: 0 0 5px #ff00ff, 0 0 10px #ff00ff, 0 0 20px #ff00ff; }
}

/* Apply animation to existing class */
.maincolor.big-title {
  animation: glitch 1s infinite alternate, colorFlicker 1.5s infinite alternate;
}

/* Hover Effect */
.maincolor.big-title:hover {
  animation: glitch 0.2s infinite alternate, colorFlicker 0.3s infinite alternate;
  filter: blur(1px);
}
/* H1 NAME styles END */




/* CONTACT SEND button styles */
@keyframes glitch {
  0% { text-shadow: 2px 2px #ff0000; }
  25% { text-shadow: -2px -2px #00ff00; }
  50% { text-shadow: 2px -2px #0000ff; }
  75% { text-shadow: -2px 2px #ff00ff; }
  100% { text-shadow: 2px 2px #ff0000; }
}

@keyframes hoverEffect {
  0% { box-shadow: 0 0 5px #00ff00; }
  50% { box-shadow: 0 0 15px #00ff00, 0 0 30px #0ff; }
  100% { box-shadow: 0 0 5px #00ff00; }
}

/* Apply glitch effect when idle */
#submit {
  animation: glitch 1s infinite alternate;
  transition: 0.3s;
}

/* On hover, add hacker glow effect */
#submit:hover {
  animation: hoverEffect 0.8s infinite alternate;
  transform: scale(1.05);
}
/* CONTACT SEND button styles END */




/* SECTION HEADER ABOVE SPACE */
.mt-5 {
  margin-top : 1.3rem!important ;
}
/* SECTION HEADER ABOVE SPACE */




/* CURSOR SPARK START */
.sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: red;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  animation: sparkleAnimation 0.5s ease-out forwards, rainbowShift 1s linear infinite;
}

@keyframes sparkleAnimation {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}

@keyframes rainbowShift {
  0% { background-color: red; }
  16% { background-color: orange; }
  32% { background-color: yellow; }
  48% { background-color: green; }
  64% { background-color: blue; }
  80% { background-color: indigo; }
  100% { background-color: violet; }
}
/* CURSOR SPARK END */



/* COPYRIGHT ANIMATION (BOTTOM) START */
/* .footer-animate {
  font-family: 'Segoe UI', sans-serif;
  text-align: center;
}

.footer-animate .copytext {
  color: #888;            
  font-size: 17px;         
}

.footer-animate .glow-name {
  color: #ff0f7f;
  
  text-shadow: 0 0 1px #ff2289, 0 0 2px rgba(0, 207, 255, 0.4);
  transition: text-shadow 0.3s ease;
  font-size: 8px;          
}

.footer-animate .glow-name:hover {
  text-shadow: 0 0 2px #00cfff, 0 0 4px rgba(0, 207, 255, 0.5);
}

.particle {
  position: absolute;
  font-size: 10px;
  color: hotpink;
  animation: floatUp 2s ease-out forwards;
  pointer-events: none;
  z-index: 9999;
}

@keyframes floatUp {
  0% {
    transform: translateY(0px) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(-60px) scale(0.4);
    opacity: 0;
  }
} */
/* COPYRIGHT ANIMATION (BOTTOM) END */


/* COPYRIGHT ANIMATION (BOTTOM) START 2 */
.footer-text {
  text-align: center;
  padding: 1px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #000;
}

.footer-link {
  text-decoration: none;
  color: inherit;
}

/* Only for the animated name */
.rainbow-name-footer {
  background: linear-gradient(270deg, #ff0080, #7928ca, #2afadf, #00f0ff);
  background-size: 600% 600%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: rainbow-footer 5s ease infinite;
  display: inline-block;
}

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

/* COPYRIGHT ANIMATION (BOTTOM) END 2 */




/* RIGHT CLICK RESTRICTED START */
#rightclick-alert {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #84f9a9f0;
  color: #000000;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-family: sans-serif;
  display: none;
  z-index: 9999;
  animation: fadeInOutRC 2.5s ease-in-out;
}

@keyframes fadeInOutRC {
  0% { opacity: 0; top: 0px; }
  10% { opacity: 1; top: 20px; }
  90% { opacity: 1; top: 20px; }
  100% { opacity: 0; top: 0px; }
}
/* RIGHT CLICK RESTRICTED END */

/* POP-UP BOX START */
.animated-name {
  display: inline-block;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 1px;
  background: linear-gradient(
    90deg,
    #00f0ff,
    #00ffc3,
    #7effa5,
    #ffdf7e,
    #ff9a9e,
    #fcb69f,
    #a18cd1,
    #00f0ff
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glowGradient 8s ease-in-out infinite;
  text-shadow:
    0 0 8px rgba(0, 255, 255, 0.6),
    0 0 12px rgba(0, 255, 195, 0.4),
    0 0 18px rgba(255, 255, 255, 0.2);
}

@keyframes glowGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* POP-UP BOX END */


/*  ############################################### NAV MENU START ###############################################  */
/* MAIN PORTFOLIO CONTENT PADDING */
/* ===== MAIN CONTENT - Push down from top ===== */
.main-content {
  padding-top: 60px;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

/* ===== SLIDE MENU CONTAINER – Glass Effect with More Blur, Less Transparency ===== */
.slide-menu {
  height: 100%;
  width: 0;
  position: fixed; /* ensures nav stays fixed even during scroll */
  top: 0;
  right: 0;
  left: auto;
  background: rgba(255, 255, 255, 0.15); /* stronger background */
  backdrop-filter: blur(20px);           /* increased blur */
  -webkit-backdrop-filter: blur(20px);   /* Safari support */
  overflow-x: hidden;
  transition: 0.5s ease-in-out;
  padding-top: 80px;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.4);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 1000;
}

/* ===== NAV BUTTONS – Colorful Gradient Grid Look per Button ===== */
.slide-menu a {
  padding: 12px 22px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: white;
  display: block;
  text-align: left;
  margin: 10px 15px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    #ff9a9e,
    #fad0c4,
    #a1c4fd,
    #c2e9fb,
    #fbc2eb,
    #a6c1ee
  );
  background-size: 400% 400%;
  animation: gradientMove 8s ease infinite;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: 0.3s ease;
}

/* ===== HOVER EFFECT ===== */
.slide-menu a:hover {
  color: #111;
  background: linear-gradient(135deg, #ffecd2, #fcb69f, #ff9a9e, #fbc2eb);
  background-size: 300% 300%;
  animation: gradientMove 5s ease infinite;
  font-weight: 700;
  transform: scale(1.03);
}

/* ===== GRADIENT ANIMATION KEYFRAMES ===== */
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* ===== TOGGLE BUTTON (TOP RIGHT CORNER) ===== */
.menu-toggle {
  font-size: 25px;
  cursor: pointer;
  color: #000;
  position: fixed;
  top: 20px;
  right: 10px;
  z-index: 1100;
  background: #ffffffcc;
  padding: 5px 12px;
  border-radius: 8px;
  box-shadow: 0 0 10px #00000033;
  transition: 0.3s ease;
}

.menu-toggle:hover {
  background: #00f2fe;
  color: #fff;
}

/* ===== OPTIONAL: Hide toggle on larger devices if not needed ===== */
@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}
/* === Overlay for background click to close nav === */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 900;
  display: none;
}

.menu-overlay.active {
  display: block;
}

/* === Copyright Footer Inside Nav === */
.menu-footer {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
  font-size: 14px;
  color: white;
  font-weight: 500;
  animation: gradientMove 8s ease infinite;
  background: none;
  box-shadow: none;
  padding: 0;
}

/*  ############################################### NAV MENU CLOSED ###############################################  */

/* #########################  MAIN CONTENT START FROM SOME DISTANCE ON TOP SIDE ######################## */
/* 🖥️ Default for laptops/desktops */
.container {
  margin-top: 50px;
}

/* 📱 Small Devices (phones) */
@media (max-width: 576px) {
  .container {
    margin-top: 30px;
  }
}

/* 📱 Medium Devices (tablets) */
@media (min-width: 577px) and (max-width: 991px) {
  .container {
    margin-top: 80px;
  }
}

/* #########################  MAIN CONTENT DISTANCE END HERE  ####################################  */

/* #########################  PROJECTS PART START HER  ####################################  */

.col-12.text-center.mb-4 {
  margin-top: -50px;
}

.glow-on-hover {
  width: 220px;
  height: 55px;
  border: none;
  outline: none;
  color: #fff;
  background: #111;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
}

.glow-on-hover:before {
  content: "";
  background: linear-gradient(
    45deg,
    #ff0000,
    #ff7300,
    #fffb00,
    #48ff00,
    #00ffea,
    #002bff,
    #7a00ff,
    #ff00c8,
    #ff0000
  );
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(8px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing 20s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
}

.glow-on-hover:active {
  color: #000;
}

.glow-on-hover:active:after {
  background: transparent;
}

.glow-on-hover:hover:before {
  opacity: 1;
}

.glow-on-hover:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #111;
  left: 0;
  top: 0;
  border-radius: 10px;
}

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


/* #########################  PROJECTS PART START END ###################################  */







/* #########################################    START SERVICES SECTION HERE ################################ */
/* New Services Design */
.service-item {
  text-align: center;
  padding: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 50%;
  height: 2px;
  background-color: #ff00c8;
  transition: transform 0.3s ease;
}

.service-item:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.service-item:hover {
  background-color: #fff951;
  border-radius: 10px;
}

.service-item i {
  font-size: 3rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.service-item:hover i {
  transform: translateY(-5px);
}

.icon-front {
  color: #ff7300;
}
.icon-pentest {
  color: #00ffea;
}

.service-description {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out;
}

.service-item:hover .service-description {
  max-height: 200px;
  opacity: 1;
}

.service-item h4 {
  font-size: 1.5rem;
  margin-top: 1rem;
}
/* #########################################    END SERVICECS SECTION HERE #################################### */



/* #################################    START FEEDBACK ########################### */

 /* ==============================
   FEEDBACK SECTION STYLING
   Paste AFTER other CSS
============================== */

/* Feedback Heading */
#feedback {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ff6f61; /* Accent color */
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

/* Wave Grid Container */
.wave-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 1rem;
  justify-items: center;
  perspective: 1000px; /* 3D effect for card tilt */
}

/* Wave Card Styling */
.wave-card {
  background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
  color: #fff;
  padding: 2rem 1.5rem;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
  position: relative;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  overflow: hidden;
}

/* Quote Icon */
.wave-card i.fa-quote-left {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: inline-block;
  color: #ffeb3b;
  animation: bounce 2s infinite;
}

/* Card Text */
.wave-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

/* Client Name */
.wave-card h5 {
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hover Animation */
.wave-card:hover {
  transform: translateY(-15px) rotateY(10deg);
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.3);
}

/* Wave Animation Background */
.wave-card::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.05);
  top: -50%;
  left: -50%;
  border-radius: 50%;
  animation: wave 6s linear infinite;
}

/* Keyframes for floating wave effect */
@keyframes wave {
  0% { transform: rotate(0deg) translateX(0); }
  50% { transform: rotate(180deg) translateX(20px); }
  100% { transform: rotate(360deg) translateX(0); }
}

/* Bounce Icon Animation */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .wave-card {
    padding: 1.5rem 1rem;
  }
  #feedback {
    font-size: 2rem;
  }
}
/* #################################    END FEEDBACK  ######################## */



