*{ 
   padding: 0;
    margin: 0; 
    box-sizing: border-box;
 }

/* :root{ --bg-color:black; } */
/*nav-bar of background-heading color*/
.navbar {
   background-color: black;
}

/*anchor tag (a) */
.nav-link {
   color: white;
   font-size: 1rem;
   font-weight: 700;
   cursor: pointer;
   text-decoration: none;
}

/* anchor tag of effects*/
.nav-link:hover {
   align-items: center;
   justify-content: space-between;
   /* background-color: purple; */
   background: linear-gradient(45deg, #f541b6, #00f2fe);
}

/*Logo-design*/
.navbar-brand {
   font-size: 2.25rem;
   color: purple;
   font-weight: 900;
   text-decoration: none;
}

/* @media (max-width: 576px) { .brand-name { font-size: 20px; } .brand-img { width: 32px; height: 32px; } } */
.navbar-brand {
   display: flex;
   align-items: center;
   gap: 12px;
}

/* Profile Image */
.brand-img {
   width: 42px;
   height: 42px;
   border-radius: 50%;
   object-fit: cover;
   box-shadow: 0 0 12px rgba(245, 65, 182, 0.7);
   transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.brand-img:hover {
   transform: rotate(360deg) scale(1.1);
   box-shadow: 0 0 20px rgba(0, 242, 254, 0.9);
}

/* Gradient Animated Name */
.brand-name {
   font-size: 28px;
   font-weight: 700;
   background: linear-gradient(90deg, #f541b6, #00f2fe, #f541b6);
   background-size: 200% 200%;
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   animation: gradientMove 3s linear infinite;
}

/* Gradient animation */
@keyframes gradientMove {
   0% {
      background-position: 0% 50%;
   }

   100% {
      background-position: 200% 50%;
   }
}

/*text-color*/
.text {
   color: lightblue;
}

/* text change color of span */
.text {
   font-weight: 600;
   font-size: 2rem;
   background: #00f2fe;
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   animation: textColorCycle 6s infinite;
}

@keyframes textColorCycle {
   0% {
      background: #00f2fe;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
   }

   33% {
      background: linear-gradient(90deg, #f541b6, #00f2fe);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
   }

   66% {
      background: linear-gradient(90deg, #9b59b6, #ff8de3);
      /* purple → pink */
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
   }

   100% {
      background: #00f2fe;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
   }
}

/* image with img-item */
.img-box {
   width: 300px;
   height: 300px;
   border-radius: 50%;
   overflow: hidden;
   margin-top: 110px;
}

.img-box {
   display: inline-block;
   border-radius: 50%;
   /* make sure image stays round */
   overflow: hidden;
   width: 220px;
   /* adjust size as needed */
   height: 220px;
   margin: auto;
   position: relative;
   box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
   /* subtle shadow */
   animation: float 3s ease-in-out infinite;
   /* continuous floating */
   transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.img-box img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
}

/* Hover effect: scale + rotate slightly */
.img-box:hover {
   transform: scale(1.08) rotate(3deg);
   box-shadow: 0 20px 35px rgba(0, 0, 0, 0.25);
}

/* Floating animation */
@keyframes float {
   0% {
      transform: translateY(0);
   }

   50% {
      transform: translateY(-10px);
   }

   100% {
      transform: translateY(0);
   }
}

.img-box {
   position: relative;
   width: 180px;
   /* image size */
   height: 180px;
   border-radius: 50%;
   overflow: hidden;
   cursor: pointer;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Image styling */
.img-box img.profile-img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   border-radius: 50%;
   display: block;
}

/* Hover effect: subtle scale + shadow */
.img-box:hover {
   transform: scale(1.05);
   box-shadow: 0 10px 25px rgba(245, 65, 182, 0.3), 0 0 20px rgba(0, 242, 254, 0.3);
}

/* Click effect using :active */
.img-box:active {
   transform: scale(1.15);
   box-shadow: 0 20px 50px rgba(245, 65, 182, 0.6), 0 0 40px rgba(0, 242, 254, 0.6);
   transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.img-box img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

/* text cntent padding */
.text-content {
   padding-left: 220px;
   color: white;
}

/*icons*/
.social-icons a {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 60px;
   height: 60px;
   margin-right: 15px;
   border-radius: 50%;
   background: #181818;
   font-size: 28px;
   text-decoration: none;
   box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
   transition: all 0.35s ease;
   animation: float 3s ease-in-out infinite;
}

/* Gradient text for icons */
.social-icons a i {
   background: linear-gradient(90deg, #f541b6, #00f2fe);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
}

/* Hover effects */
.social-icons a:hover {
   transform: translateY(-8px) scale(1.12);
   box-shadow: 0 14px 30px rgba(0, 242, 254, 0.4);
}

/* Fill background with gradient on hover */
.social-icons a:hover {
   background: linear-gradient(90deg, #f541b6, #00f2fe);
}

/* Change icon color to white on hover */
.social-icons a:hover i {
   -webkit-text-fill-color: #fff;
   background: none;
}

/* Floating animation */
@keyframes float {
   0% {
      transform: translateY(0);
   }

   50% {
      transform: translateY(-6px);
   }

   100% {
      transform: translateY(0);
   }
}

.hero-buttons .btn {
   position: relative;
   font-size: 1.1rem;
   font-weight: 500;
   padding: 12px 28px;
   border-radius: 50px;
   transition: all 0.35s ease;
   box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
   overflow: hidden;
   width: 150px;
}

/* Primary Button - Gradient Background */
.hero-buttons .btn-primary {
   background: linear-gradient(90deg, #f541b6, #00f2fe);
   border: none;
   color: #fff;
}

/* Primary Hover */
.hero-buttons .btn-primary:hover {
   transform: translateY(-4px) scale(1.05);
   box-shadow: 0 14px 25px rgba(245, 65, 182, 0.4), 0 14px 25px rgba(0, 242, 254, 0.4);
}

/* Outline Button - Gradient Border */
.hero-buttons .btn-outline-primary {
   background: transparent;
   border: 2px solid transparent;
   color: #f541b6;
   position: relative;
   z-index: 1;
}

/* Gradient border effect for outline button */
.hero-buttons .btn-outline-primary::before {
   content: '';
   position: absolute;
   top: -2px;
   left: -2px;
   width: calc(100% + 4px);
   height: calc(100% + 4px);
   background: linear-gradient(90deg, #f541b6, #00f2fe);
   z-index: -1;
   border-radius: 50px;
   transition: all 0.35s ease;
}

/* Outline Hover */
.hero-buttons .btn-outline-primary:hover {
   color: #fff;
   transform: translateY(-4px) scale(1.05);
   box-shadow: 0 14px 25px rgba(245, 65, 182, 0.3), 0 14px 25px rgba(0, 242, 254, 0.3);
}

/* outline button on hover */
.hero-buttons .btn-outline-primary:hover::before {
   filter: brightness(1.2);
}

/* center align-items*/
.align-items-center {
   align-items: center !important;
   margin-top: 150px;
}

/**/
.about-text h2 {
   text-align: center;
   font-size: 36px;
   padding-left: 10px;
   margin-bottom: 40px;
   background: linear-gradient(90deg, #f541b6, #00f2fe);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
}

/* ABOUT SECTION */
.about {
   padding: 80px 20px;
   display: flex;
   justify-content: center;
}

/* BOX CONTAINER */
.about-box {
   max-width: 1100px;
   display: flex;
   align-items: center;
   gap: 80px;
   backdrop-filter: blur(10px);
   border-radius: 20px;
   padding: 40px;
   animation: fadeUp 1.2s ease forwards;
}

/* IMAGE */
.about-img img {
   width: 320px;
   height: 320px;
   border-radius: 20px;
   object-fit: cover;
   border-radius: 50%;
   animation: floatImage 3s ease-in-out infinite, pulseGlow 3s ease-in-out infinite;
}

/* TEXT */
.about-text {
   flex: 1;
   /* Take remaining space */
   color: #fff;
   text-align: left;
}

.about-text h2 {
   font-size: 36px;
   margin-bottom: 20px;
   background: linear-gradient(90deg, #f541b6, #00f2fe);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   animation: gradientMove 5s ease infinite;
}

.about-text p {
   font-size: 16px;
   line-height: 1.8;
   color: #ddd;
   margin-bottom: 15px;
}

/* ANIMATIONS */
@keyframes fadeUp {
   from {
      opacity: 0;
      transform: translateY(40px);
   }

   to {
      opacity: 1;
      transform: translateY(0);
   }
}

@keyframes floatImage {
   0% {
      transform: translateY(0);
   }

   50% {
      transform: translateY(-10px);
   }

   100% {
      transform: translateY(0);
   }
}

@keyframes pulseGlow {
   0% {
      box-shadow: 0 0 10px rgba(245, 65, 182, 0.5);
   }

   50% {
      box-shadow: 0 0 30px rgba(0, 242, 254, 0.8);
   }

   100% {
      box-shadow: 0 0 10px rgba(245, 65, 182, 0.5);
   }
}

@keyframes gradientMove {
   0% {
      background-position: 0% 50%;
   }

   50% {
      background-position: 100% 50%;
   }

   100% {
      background-position: 0% 50%;
   }
}

/* RESPONSIVE */
@media (max-width: 900px) {
   .about-box {
      flex-direction: column;
      text-align: center;
   }

   .about-img img {
      width: 220px;
      height: 220px;
      margin-bottom: 20px;
   }

   .about-text {
      text-align: center;
   }
}

/* EXPERIENCE SECTION */
.experience {
   padding: 80px 20px;
   display: flex;
   justify-content: center;
}

/* BOX CONTAINER */
.experience-box {
   max-width: 1100px;
   display: flex;
   align-items: center;
   gap: 50px;
   backdrop-filter: blur(10px);
   border-radius: 20px;
   padding: 40px;
   animation: fadeUp 1.2s ease forwards;
}

/* LEFT IMAGE */
.experience-img img {
   width: 280px;
   height: 280px;
   border-radius: 50%;
   object-fit: cover;
   border: 2px solid transparent;
   background: linear-gradient(90deg, #f541b6, #00f2fe);
   padding: 0px;
   animation: floatImage 5s ease-in-out infinite, pulseGlow 3s ease-in-out infinite;
}

/* RIGHT TEXT */
.experience-text {
   color: #fff;
   text-align: left;
   /* Text on right side of image */
   flex: 1;
   /* Take remaining space */
}

.heading-experience {
   text-align: center;
   font-size: 36px;
   padding-right: 250px;
   margin-bottom: 40px;
      padding-left: 33px;
   background: linear-gradient(90deg, #f541b6, #00f2fe);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
}

.heading-experience h2{
   padding-left: 23px;
}
.stack {
   font-size: 22px;
   color: #00f2fe;
   margin-bottom: 15px;
   padding-left: 60px;
}

.experience-text p {
   font-size: 16px;
   line-height: 1.8;
   color: #ddd;
   margin-bottom: 15px;
   padding-left: 60px;
}

/* ANIMATIONS */
@keyframes fadeUp {
   from {
      opacity: 0;
      transform: translateY(40px);
   }

   to {
      opacity: 1;
      transform: translateY(0);
   }
}

@keyframes floatImage {
   0% {
      transform: translateY(0);
   }

   50% {
      transform: translateY(-12px);
   }

   100% {
      transform: translateY(0);
   }
}

@keyframes pulseGlow {
   0% {
      box-shadow: 0 0 10px rgba(245, 65, 182, 0.6);
   }

   50% {
      box-shadow: 0 0 30px rgba(0, 242, 254, 0.9);
   }

   100% {
      box-shadow: 0 0 10px rgba(245, 65, 182, 0.6);
   }
}

@keyframes gradientMove {
   0% {
      background-position: 0% 50%;
   }

   50% {
      background-position: 100% 50%;
   }

   100% {
      background-position: 0% 50%;
   }
}

/* RESPONSIVE */
@media (max-width: 900px) {
   .experience-box {
      flex-direction: column;
      text-align: center;
   }

   .experience-img img {
      width: 200px;
      height: 200px;
      margin-bottom: 20px;
   }

   .experience-text {
      text-align: center;
   }

   .heading-experience {
      font-size: 28px;
   }
}

/* SKILLS SECTION */
.skills {
   padding: 60px 0;
   text-align: center;
}

/* HEADING */
.heading-skill {
   font-size: 36px;
   margin-bottom: 40px;
   background: linear-gradient(90deg, #f541b6, #00f2fe);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   animation: glowPulse 2.5s ease-in-out infinite;
}

/* ICON CONTAINER */
.skills-icons {
   display: flex;
   justify-content: center;
   align-items: center;
   flex-wrap: wrap;
   /* responsive */
   gap: 40px;
}

/* ICON BASE STYLE */
.skills-icons i {
   font-size: 70px;
   cursor: pointer;
   transition: transform 0.3s ease, filter 0.3s ease;
}

/* HOVER EFFECT */
.skills-icons i:hover {
   transform: scale(1.3) rotate(6deg);
   filter: drop-shadow(0 0 18px currentColor);
}

/* BRAND COLORS */
.fa-html5 {
   color: #e34c26;
}

.fa-css3 {
   color: #264de4;
}

.fa-bootstrap {
   color: #7952b3;
}

.fa-js {
   color: #f7df1e;
}

.fa-java {
   color: #f89820;
}

.fa-database {
   color: #00758f;
}

.fa-git-alt {
   color: #f1502f;
}

.fa-github {
   color: #ffffff;
}

.fa-code {
   color: #00f2fe;
}

/* GLOW ANIMATION */
@keyframes glowPulse {
   0% {
      text-shadow: 0 0 5px #00f2fe;
   }

   50% {
      text-shadow: 0 0 20px #f541b6;
   }

   100% {
      text-shadow: 0 0 5px #00f2fe;
   }
}

/* RESPONSIVE */
@media (max-width: 768px) {
   .skills-icons i {
      font-size: 50px;
   }

   .heading-skill {
      font-size: 28px;
   }
}
/* BEAT ANIMATION */
@keyframes beat {
   0% {
      transform: scale(1);
      filter: drop-shadow(0 0 0 transparent);
   }

   20% {
      transform: scale(1.15);
      filter: drop-shadow(0 0 14px currentColor);
   }

   40% {
      transform: scale(1);
   }

   60% {
      transform: scale(1.12);
      filter: drop-shadow(0 0 18px currentColor);
   }

   100% {
      transform: scale(1);
   }
}
.skills-icons i {
   animation: beat 1.6s ease-in-out infinite;
}
.skills-icons i:nth-child(1) {
   animation-delay: 0s;
}

.skills-icons i:nth-child(2) {
   animation-delay: 0.15s;
}

.skills-icons i:nth-child(3) {
   animation-delay: 0.3s;
}

.skills-icons i:nth-child(4) {
   animation-delay: 0.45s;
}

.skills-icons i:nth-child(5) {
   animation-delay: 0.6s;
}

.skills-icons i:nth-child(6) {
   animation-delay: 0.75s;
}

.skills-icons i:nth-child(7) {
   animation-delay: 0.9s;
}

.skills-icons i:nth-child(8) {
   animation-delay: 1.05s;
}

.skills-icons i:nth-child(9) {
   animation-delay: 1.2s;
}
.skills-icons i:hover {
   animation-play-state: paused;
   transform: scale(1.3) rotate(6deg);
   filter: drop-shadow(0 0 25px currentColor);
}

/* Target the About Me heading specifically inside the about section */
.about .about-me {
   text-align: center;
   font-size: 36px;
   font-weight: bold;
   margin-bottom: 30px;
   /* Gradient text */
   background: linear-gradient(90deg, #f541b6, #00f2fe, #f541b6, #00f2fe);
   background-size: 300% 100%;
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   /* Shimmer + glow animation */
   animation: shimmerGlow 3s linear infinite, glowPulse 2s ease-in-out infinite;
   display: inline-block;
   /* ensures gradient works on block-level text */
}

/* Shimmer animation */
@keyframes shimmerGlow {
   0% {
      background-position: 0% 50%;
   }

   50% {
      background-position: 100% 50%;
   }

   100% {
      background-position: 0% 50%;
   }
}

/* Glow pulse animation */
@keyframes glowPulse {

   0%,
   100% {
      text-shadow: 0 0 5px #f541b6, 0 0 10px #00f2fe;
   }

   50% {
      text-shadow: 0 0 20px #f541b6, 0 0 30px #00f2fe;
   }
}

/* Responsive */
@media (max-width: 768px) {
   .about .about-me {
      font-size: 28px;
   }
}

/* gradient shimmer + glow for section headings */
.about-me,
.section-title,
.heading-experience {
   text-align: center;
   font-size: 36px;
   font-weight: bold;
   margin-bottom: 40px;
   /* Gradient text */
   background: linear-gradient(90deg, #f541b6, #00f2fe, #f541b6, #00f2fe);
   background-size: 300% 100%;
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   /* Shimmer + glow animation */
   animation: shimmerGlow 3s linear infinite, glowPulse 2s ease-in-out infinite;
}

/* Shimmer keyframes (gradient movement) */
@keyframes shimmerGlow {
   0% {
      background-position: 0% 50%;
   }

   50% {
      background-position: 100% 50%;
   }

   100% {
      background-position: 0% 50%;
   }
}

/* Glow pulse keyframes */
@keyframes glowPulse {

   0%,
   100% {
      text-shadow: 0 0 5px #f541b6, 0 0 10px #00f2fe;
   }

   50% {
      text-shadow: 0 0 20px #f541b6, 0 0 30px #00f2fe;
   }
}

/* Responsive */
@media (max-width: 768px) {

   .about-me,
   .section-title,
   .heading-experience {
      font-size: 28px;
      margin-bottom: 30px;
   }
}

.project-card {
   position: relative;
   overflow: hidden;
}

.project-card img {
   width: 100%;
   transition: transform 0.5s ease;
}

.project-card::after {
   content: "View Project";
   position: absolute;
   inset: 0;
   background: rgba(0, 0, 0, 0.6);
   color: #fff;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 20px;
   opacity: 0;
   transition: 0.4s;
}

.project-card:hover img {
   transform: scale(1.1);
}

.project-card:hover::after {
   opacity: 1;
}

.projects {
   padding: 80px 20px;
}

.section-title {
   text-align: center;
   font-size: 36px;
   margin-bottom: 50px;
   font-size: 2.86rem;
   font-weight: 700;
   background: linear-gradient(90deg, #f541b6, #00f2fe);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
}

.projects-container {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 30px;
   max-width: 1100px;
   margin: auto;
}

.project-card {
   border-radius: 20px;
   overflow: hidden;
   transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.project-card:hover {
   transform: translateY(-10px);
   box-shadow: 0 30px 60px rgba(245, 65, 182, 0.4);
}

.project-card img {
   width: 100%;
   height: 200px;
   object-fit: cover;
}

.project-content {
   padding: 20px;
   color: #fff;
}

.project-content h3 {
   margin-bottom: 10px;
}

.project-content p {
   font-size: 14px;
   color: #ccc;
   margin-bottom: 10px;
}

.tech span {
   display: inline-block;
   background: #00f2fe;
   padding: 4px 10px;
   border-radius: 20px;
   color: black;
   font-weight: bold;
   font-size: 12px;
   margin-right: 5px;
   margin-bottom: 5px;
}

.project-links a {
   display: inline-block;
   margin-right: 10px;
   margin-top: 10px;
   padding: 8px 20px;
   border-radius: 30px;
   background: #f541b6;
   color: #fff;
   text-decoration: none;
   transition: 0.3s;
}

.project-links a:hover {
   background: #00f2fe;
}

/* Contact container */
.contact-container {
   min-height: 100vh;
   display: flex;
   justify-content: center;
   align-items: center;
   padding: 20px;
}

/* Animated gradient border */
.gradient-border {
   padding: 3px;
   border-radius: 16px;
   /* background: linear-gradient(270deg, #f541b6, #00f2fe, #f541b6); */
   background-size: 400% 400%;
   animation: borderMove 6s ease infinite;
}

/* Inner content box */
.section-text {
   background: #111;
   padding: 40px;
   width: 100%;
   max-width: 800px;
   border-radius: 14px;
   text-align: center;
   box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

/* Form heading */
.section-text h2 {
   font-size: 28px;
   margin-bottom: 20px;
   background: linear-gradient(45deg, #f541b6, #00f2fe);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
}

/* Input container for floating labels */
.input-container {
   position: relative;
   margin-bottom: 20px;
}

/* Input and textarea styling */
.input {
   width: 100%;
   padding: 16px 250px;
   border: 2px solid #555;
   padding-left: 23px;
   border-radius: 8px;
   background: #111;
   color: #fff;
   font-size: 16px;
   outline: none;
   transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Label styling */
.labelline {
   position: absolute;
   left: 12px;
   top: 50%;
   transform: translateY(-50%);
   font-size: 16px;
   color: #aaa;
   pointer-events: none;
   background: #111;
   padding: 0 6px;
   transition: 0.2s ease all;
}

/* Floating label effect */
.input:focus+.labelline,
.input:valid+.labelline {
   top: -10px;
   font-size: 12px;
   color: white;
   transform: translateY(0) scale(0.9);
   z-index: 10;
}

/* Input focus glow */
.input:focus {
   border-color: none;
   box-shadow: 0 0 12px rgba(7, 7, 7, 0.5);
}

/* Textarea adjustments */
textarea.input {
   resize: none;
   min-height: 100px;
}

/* Submit button */
.section-text button {
   width: 100%;
   padding: 12px;
   border: none;
   border-radius: 6px;
   font-size: 16px;
   font-weight: 700;
   background: linear-gradient(90deg, #f541b6, #00f2fe);
   color: #fff;
   cursor: pointer;
   transition: 0.3s;
}

.section-text button:hover {
   opacity: 0.85;
}

/* Border animation */
@keyframes borderMove {
   0% {
      background-position: 0% 50%;
   }

   50% {
      background-position: 100% 50%;
   }

   100% {
      background-position: 0% 50%;
   }
}

/* Responsive adjustments */
@media (max-width: 768px) {
   .section-text {
      max-width: 95%;
   }
}


/* Contact wrapper layout */
.contact-wrapper {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 60px;
   flex-wrap: wrap;
}

/* Right-side image */
.contact-image img {
   width: 520px;
   height: 700px;
   max-width: 100%;
   border-radius: 16px;
   /*animation: floatImage 4s ease-in-out infinite;*/
   /* box-shadow: 0 0 40px rgba(0, 242, 254, 0.4); */
}
/*
/* Slight hover zoom 
.contact-image img:hover {
   transform: scale(1.05);
}
*/

/* Responsive */
@media (max-width: 992px) {
   .contact-wrapper {
      flex-direction: column;
   }

   .contact-image img {
      width: 300px;
      margin-top: 30px;
   }
}


/* Footer Section*/
.footer {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 20px;
   padding: 15px;
   color: white;
   flex-wrap: wrap;
}

/* Footer background color */
.footer-text {
   margin: 0;
   font-size: 14px;
   padding-right: 255px;
}

/* Footer icons container */
.footer-icons {
   display: flex;
   gap: 12px;
}

/* ICON BOX */
.icon-box {
   width: 42px;
   height: 42px;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 10px;
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
   font-size: 20px;
   transition: all 0.3s ease;
}

/* BRAND COLORS */
.github {
   color: #ffffff;
   text-decoration: none;
}

/* BRAND COLORS */
.linkedin {
   color: #0A66C2;
   text-decoration: none;
}

/* BRAND COLORS */
.email {
   color: #EA4335;
   text-decoration: none;
}

/* BRAND COLORS */
.instagram {
   color: #E1306C;
   text-decoration: none;
}

/* HOVER EFFECT */
.icon-box:hover {
   transform: translateY(-5px) scale(1.1);
   box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
}

/* CLICK EFFECT */
.icon-box:active {
   transform: scale(0.95);
   box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
}

.github:hover {
   box-shadow: 0 0 12px rgba(255, 255, 255, 0.6);
}

.linkedin:hover {
   box-shadow: 0 0 12px rgba(10, 102, 194, 0.8);
}

.email:hover {
   box-shadow: 0 0 12px rgba(234, 67, 53, 0.8);
}

.instagram:hover {
   box-shadow: 0 0 12px rgba(225, 48, 108, 0.8);
}

/* ========================= */
/* GLOBAL RESPONSIVE FIXES */
/* ========================= */
img {
   max-width: 100%;
   height: auto;
}

.container {
   padding-left: 15px;
   padding-right: 15px;
}

.text-content {
   padding-left: 0;
   text-align: center;
}

@media (min-width: 992px) {
   .text-content {
      text-align: left;
      padding-left: 80px;
   }
}

.img-box {
   width: 180px;
   height: 180px;
}

@media (min-width: 768px) {
   .img-box {
      width: 220px;
      height: 220px;
   }
}

@media (min-width: 992px) {
   .img-box {
      width: 260px;
      height: 260px;
   }
}

.social-icons a {
   width: 48px;
   height: 48px;
   font-size: 22px;
}

@media (min-width: 768px) {
   .social-icons a {
      width: 60px;
      height: 60px;
      font-size: 28px;
   }
}

.hero-buttons {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 15px;
}

@media (min-width: 768px) {
   .hero-buttons {
      justify-content: flex-start;
   }
}

.about-box,
.experience-box {
   flex-direction: column;
   text-align: center;
}

@media (min-width: 992px) {

   .about-box,
   .experience-box {
      flex-direction: row;
      text-align: left;
   }
}

.marquee {
   padding-left: 20px;
   padding-right: 20px;
}

.marquee-row i {
   font-size: 45px;
}

@media (min-width: 768px) {
   .marquee {
      padding-left: 120px;
      padding-right: 120px;
   }

   .marquee-row i {
      font-size: 60px;
   }
}

.projects-container {
   grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.section-text {
   width: 100%;
   max-width: 520px;
}

.contact-container {
   padding: 20px;
   margin: 0;
}

.footer {
   flex-direction: column;
   text-align: center;
}

.footer-text {
   padding-right: 0;
   margin-bottom: 10px;
}

@media (min-width: 768px) {
   .footer {
      flex-direction: row;
   }
}







.navbar-toggler {
   border: 1px solid white;
   margin-right: 3px;
}

.navbar-toggler-icon {
   filter: invert(1);
}

.navbar-collapse {
   transition: all 0.4s ease;
}







/*Education*/
.hidden-section {
   display: none;
}

.show-section {
   display: block;
}

.education {
   padding: 50px 20px;
   color: #fff;
}

.education h2 {
   text-align: center;
   font-size: 36px;
   padding-left:250px;
   margin-bottom: 40px;
   background: linear-gradient(90deg, #f541b6, #00f2fe);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
}

.edu-container {
   display: flex;
   gap: 40px;
   justify-content: center;
   flex-wrap: wrap;
   /* wrap on smaller screens */
}

.edu-box {
   background-color: rgba(255, 255, 255, 0.05);
   padding: 20px;
   border-radius: 12px;
   min-width: 300px;
   max-width: 450px;
   flex: 1;
   box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.edu-box h3 {
   margin-bottom: 15px;
   font-size: 22px;
   color: #00f2fe;
}

.edu-box p {
   font-size: 16px;
   line-height: 1.6;
   color: #ddd;
}


/*Education-Animation*/

.education h2 {
   text-align: center;
   font-size: 36px;
         margin-left: 77px;
   font-weight: bold;
   margin-bottom: 40px;
   background: linear-gradient(90deg, #f541b6, #00f2fe, #f541b6, #00f2fe);
   background-size: 300% 100%;
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   animation: shimmerGlow 3s linear infinite, glowPulse 2s ease-in-out infinite;
   display: inline-block;
}

/* Shimmer animation moving the gradient */
@keyframes shimmerGlow {
   0% {
      background-position: 0% 0%;
   }

   50% {
      background-position: 100% 0%;
   }

   100% {
      background-position: 0% 0%;
   }
}

/* Subtle glowing pulse */
@keyframes glowPulse {

   0%,
   100% {
      text-shadow: 0 0 5px #f541b6, 0 0 10px #00f2fe;
   }

   50% {
      text-shadow: 0 0 15px #f541b6, 0 0 25px #00f2fe;
   }
}



canvas {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   z-index: -1;
}













/* Technical Summary Section */
.technical-summary {
   max-width: 900px;
   margin: 80px auto;
   padding: 40px;
   border-radius: 20px;
   backdrop-filter: blur(10px);

   color: #fff;
   animation: fadeUp 1.5s ease forwards;
}

.technical-summary h2 {
   text-align: center;
   font-size: 36px;
   margin-bottom: 30px;
   background: linear-gradient(90deg, #f541b6, #00f2fe, #f541b6, #00f2fe);
   background-size: 300% 100%;
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   animation: shimmerGlow 3s linear infinite, glowPulse 2s ease-in-out infinite;
}

.technical-summary ul {
   list-style-type: disc;
   padding-left: 40px;
}

.technical-summary ul li {
   font-size: 16px;
   line-height: 1.8;
   margin-bottom: 15px;
   position: relative;
   padding-left: 15px;
}

/* Glowing bullet effect */
.technical-summary ul li::before {
   content: '';
   position: absolute;
   left: -25px;
   top: 10px;
   width: 10px;
   height: 10px;
   
   border-radius: 50%;
  
}

/* Fade-in animation for the section */
@keyframes fadeUp {
   from {
      opacity: 0;
      transform: translateY(30px);
   }

   to {
      opacity: 1;
      transform: translateY(0);
   }
}

/* Shimmer gradient for heading */
@keyframes shimmerGlow {
   0% {
      background-position: 0% 50%;
   }

   50% {
      background-position: 100% 50%;
   }

   100% {
      background-position: 0% 50%;
   }
}

/* Text glow pulse */
@keyframes glowPulse {

   0%,
   100% {
      text-shadow: 0 0 5px #f541b6, 0 0 10px #00f2fe;
   }

   50% {
      text-shadow: 0 0 20px #f541b6, 0 0 30px #00f2fe;
   }
}

/* Responsive adjustments */
@media (max-width: 768px) {
   .technical-summary {
      padding: 30px 20px;
   }

   .technical-summary h2 {
      font-size: 28px;
   }

   .technical-summary ul {
      padding-left: 20px;
   }

   .technical-summary ul li::before {
      left: -20px;
   }
}


















/* Contact Section */
.contact-info {
   /* background: linear-gradient(180deg, #f541b6, #00f2fe); */
   margin-top: 73px;

}

.text-gradient {
   background: linear-gradient(90deg, #f541b6, #00f2fe);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
}

.form-control {
   background: #111;
   border: 1px solid #444;
   color: #fff;
}

.form-control:focus {
   background: #111;
   color: #fff;
   border-color: #00f2fe;
   box-shadow: 0 0 8px rgba(0, 242, 254, 0.4);
}

.btn-gradient {
   background: linear-gradient(90deg, #f541b6, #00f2fe);
   color: #fff;
   border: none;
   padding: 12px;
   font-weight: 600;
}

.btn-gradient:hover {
   opacity: 0.85;
}
