/* -------------------------------
   1. GLOBAL RESET & BASE STYLES
---------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #0f172a;
  color: #fff;
  overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Force page to start at top */
html,
body {
  height: 100%;
  position: relative;
}

/* -------------------------------
   2. UNIQUE LOADER ANIMATION
---------------------------------*/
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

/* Animated Logo/Icon */
.loader-logo {
  width: 80px;
  height: 80px;
  border: 3px solid rgba(56, 189, 248, 0.3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: logoFloat 3s ease-in-out infinite;
}

.loader-logo::before {
  content: "< />";
  font-size: 1.8rem;
  font-weight: bold;
  color: #00f6ff;
  animation: logoGlow 2s ease-in-out infinite alternate;
}

.loader-logo::after {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border: 2px solid #00f6ff;
  border-radius: 20px;
  opacity: 0;
  animation: logoBorder 2s ease-in-out infinite;
}

/* Geometric Loading Elements */
.geometric-loader {
  display: flex;
  gap: 15px;
  align-items: center;
}

.geo-element {
  width: 12px;
  height: 12px;
  background: linear-gradient(45deg, #38bdf8, #00f6ff);
  animation: geoAnimation 1.5s ease-in-out infinite;
}

.geo-element:nth-child(1) {
  border-radius: 50%;
  animation-delay: 0s;
}

.geo-element:nth-child(2) {
  border-radius: 2px;
  animation-delay: 0.2s;
}

.geo-element:nth-child(3) {
  border-radius: 50%;
  animation-delay: 0.4s;
}

.geo-element:nth-child(4) {
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  animation-delay: 0.6s;
}

.geo-element:nth-child(5) {
  border-radius: 2px;
  animation-delay: 0.8s;
}

/* Progress Bar */
.loader-progress {
  width: 200px;
  height: 4px;
  background: rgba(56, 189, 248, 0.2);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #38bdf8, #00f6ff, #38bdf8);
  background-size: 200% 100%;
  border-radius: 2px;
  animation: progressAnimation 2s ease-in-out infinite;
}

/* Loading Text */
.loader-text {
  color: #38bdf8;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: textPulse 1.5s ease-in-out infinite;
}

.loader-text::after {
  content: "...";
  animation: dots 1.5s steps(3, end) infinite;
}

/* Floating Particles */
.loader-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #38bdf8;
  border-radius: 50%;
  animation: particleFloat 8s linear infinite;
}

.particle:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
  animation-duration: 6s;
}

.particle:nth-child(2) {
  left: 20%;
  animation-delay: 1s;
  animation-duration: 8s;
}

.particle:nth-child(3) {
  left: 30%;
  animation-delay: 2s;
  animation-duration: 7s;
}

.particle:nth-child(4) {
  left: 40%;
  animation-delay: 3s;
  animation-duration: 9s;
}

.particle:nth-child(5) {
  left: 50%;
  animation-delay: 1.5s;
  animation-duration: 6.5s;
}

.particle:nth-child(6) {
  left: 60%;
  animation-delay: 2.5s;
  animation-duration: 8.5s;
}

.particle:nth-child(7) {
  left: 70%;
  animation-delay: 0.5s;
  animation-duration: 7.5s;
}

.particle:nth-child(8) {
  left: 80%;
  animation-delay: 3.5s;
  animation-duration: 6.8s;
}

.particle:nth-child(9) {
  left: 90%;
  animation-delay: 1.8s;
  animation-duration: 8.2s;
}

/* Keyframe Animations */
@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(5deg);
  }
}

@keyframes logoGlow {
  0% {
    text-shadow: 0 0 10px #00f6ff;
  }
  100% {
    text-shadow: 0 0 20px #00f6ff, 0 0 30px #38bdf8;
  }
}

@keyframes logoBorder {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    transform: scale(1.3);
  }
}

@keyframes geoAnimation {
  0%,
  100% {
    transform: scale(1) translateY(0px);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.3) translateY(-15px);
    opacity: 1;
  }
}

@keyframes progressAnimation {
  0% {
    transform: translateX(-100%);
    background-position: 200% 0;
  }
  100% {
    transform: translateX(100%);
    background-position: -200% 0;
  }
}

@keyframes textPulse {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes dots {
  0% {
    content: "";
  }
  25% {
    content: ".";
  }
  50% {
    content: "..";
  }
  75%,
  100% {
    content: "...";
  }
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-10vh) rotate(360deg);
    opacity: 0;
  }
}

/* Content fade-in on page load */
body.loaded .home-section,
body.loaded .navbar {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: all 1.2s ease;
  animation: contentReveal 1.2s ease forwards;
}

.home-section,
.navbar {
  opacity: 0;
  transform: translateY(50px) scale(0.95);
}

/* Staggered content reveal animation */
@keyframes contentReveal {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    filter: blur(5px);
  }
  60% {
    opacity: 0.8;
    transform: translateY(10px) scale(0.98);
    filter: blur(2px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0px);
  }
}

/* -------------------------------
   3. NAVBAR
---------------------------------*/
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  background: linear-gradient(to top, #03050985, #0216347c);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(60px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.8rem;
  font-weight: 700;
  color: rgb(255, 255, 255);
}
.logo a {
  text-decoration: none;
  color: inherit; /* Optional: keeps the text color consistent */
}
.logo a:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.logo-img:hover {
  transform: scale(1.2) rotate(-20deg);
  transition: transform 0.3s ease;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: 0.3s;
  position: relative;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: #00f6ff;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: right;
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #00f6ff;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #ffffff;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: linear-gradient(to bottom, #03050985, #0216347c);
    backdrop-filter: blur(60px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 50px;
    transition: right 0.3s ease;
    z-index: 1000;
    display: flex !important;
    list-style: none;
    margin: 0;
    padding: 50px 0;
  }

  .nav-links.active {
    right: 0 !important;
  }

  .nav-links li {
    margin: 20px 0;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.3s ease;
  }

  .nav-links.active li {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-links.active li:nth-child(1) {
    transition-delay: 0.1s;
  }
  .nav-links.active li:nth-child(2) {
    transition-delay: 0.2s;
  }
  .nav-links.active li:nth-child(3) {
    transition-delay: 0.3s;
  }
  .nav-links.active li:nth-child(4) {
    transition-delay: 0.4s;
  }
  .nav-links.active li:nth-child(5) {
    transition-delay: 0.5s;
  }
  .nav-links.active li:nth-child(6) {
    transition-delay: 0.6s;
  }

  .nav-links li {
    margin: 20px 0;
  }

  .nav-links li a {
    font-size: 1.2rem;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
  }

  .nav-links li a:hover {
    transform: translateX(10px);
  }

  .navbar {
    padding: 15px 5%;
  }

  .logo {
    font-size: 1.5rem;
  }

  .logo-img {
    width: 35px;
    height: 35px;
  }
}

/* Mobile Menu Toggle (Hidden by default) */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  transition: 0.3s;
}

/* -------------------------------
   4. HOME SECTION
---------------------------------*/
.home-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 100px 10% 50px 10%;
  min-height: 100vh;
  margin-top: 0;
  position: relative;
  top: 0;
}

.home-content {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.home-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
}

.home-content h2 {
  font-size: 2rem;
  font-weight: 600;
}

.home-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 10px 0;
}

.home-content p {
  font-size: 1rem;
  color: #ccc;
  margin: 20px 0;
}

.typing {
  font-size: 1.5rem;
  font-weight: 600;
  color: #00f6ff;
  display: inline-block;
  position: relative;
}

.typing::after {
  content: "|";
  animation: blink 0.7s infinite;
  color: #00f6ff;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

/* Call-to-action button */
.btn {
  padding: 12px 30px;
  background: #00f6ff;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 25px;
  box-shadow: 0 0 10px #00f6ff;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.btn:hover {
  box-shadow: 0 0 20px #00f6ff;
}

/* Resume Actions Container */
.resume-actions {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

/* Outline Button Variant */
.btn.btn-outline {
  background: transparent;
  color: #00f6ff;
  border: 2px solid #00f6ff;
  box-shadow: none;
}

.btn.btn-outline:hover {
  background: #00f6ff;
  color: #000;
  box-shadow: 0 0 20px #00f6ff;
}

/* Secondary Button Variant */
.btn.btn-secondary {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: #fff;
  border: none;
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

.btn.btn-secondary:hover {
  background: linear-gradient(135deg, #5b21b6 0%, #7c3aed 100%);
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.7);
  transform: translateY(-2px);
}

/* Home Image Styles */
.home-img {
  flex-shrink: 0;
}

.home-img .img-box {
  width: 300px;
  height: 300px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: #00f6ff;
  padding: 10px;
  box-shadow: 0 0 30px #00f6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: morph 8s infinite ease-in-out;
  transition: border-radius 3s ease-in-out;
}

@keyframes morph {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  50% {
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
  }
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
}

.home-img img {
  width: 240px;
  height: auto;
  border-radius: 150px;
}
@media (max-width: 768px) {
  .home-img img {
    width: 200px;
    height: auto;
    border-radius: 150px;
  }

  /* Resume Actions Mobile Styles */
  .resume-actions {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .resume-actions .btn {
    width: 100%;
    text-align: center;
    padding: 15px 30px;
    font-size: 1rem;
  }
}

/* -------------------------------
   5. SOCIAL ICONS
---------------------------------*/
.social-icons {
  display: flex;
  gap: 15px;
  margin: 15px 0;
  align-items: center;
}

.icon-img {
  width: 30px;
  height: 30px;
  filter: drop-shadow(0 0 5px #071b1c);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.icon-img:hover {
  transform: scale(1.2);
  filter: drop-shadow(0 0 1px #00f6ff);
}

/* -------------------------------
   6. ABOUT SECTION
---------------------------------*/
/* Section Styling */
.about-section {
  background-color: #00000081;
  color: #ffffff;
  padding: 60px 40px;
  font-family: "Poppins", sans-serif;
  position: relative;
  overflow: hidden;
}

/* Animated shimmer border effect for About section */
.about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #38bdf8,
    #00f6ff,
    transparent
  );
  animation: shimmer 3s infinite ease-in-out;
}

@keyframes shimmer {
  0%,
  100% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
}

/* Flex Container - now stacked vertically */
.about-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Heading */
.about-container h2 {
  font-size: 36px;
  margin-bottom: 30px;
}

/* GIF Styling */
.profile-image {
  width: 400px;
  height: auto;
  margin-bottom: 30px;
  border-radius: 500px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  animation: fadeUp 1.2s ease-in-out forwards;
  opacity: 0;
}
.profile-image:hover {
  cursor: pointer;
  transform: scale(2);
  transition: transform 0.5s ease;
  box-shadow: 0 0 25px rgb(0, 255, 255); /* Glow on hover */
}

/* Text Content */
.about-text {
  width: 1300px;
  font-size: 19px;
  line-height: 1.5;
  animation: fadeUp 1.2s ease-in-out forwards;
  opacity: 0;
}

/* Animation */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 600px) {
  .profile-image {
    width: 90%;
  }

  .about-text {
    font-size: 16px;
    padding: 0 10px;
  }
}
/* Link Animation */
.jetir-link {
  color: #38bdf8;
  text-decoration: underline;
  position: relative;
  transition: all 0.3s ease;
}

.jetir-link:hover {
  color: #00e0ff;
  text-shadow: 0 0 10px rgba(0, 224, 255, 0.6);
  transform: scale(1.05);
}
/* -------------------------------
   7. SKILLS SECTION
---------------------------------*/
.skills-section {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  padding: 80px 40px;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  position: relative;
  overflow: hidden;
}

/* Animated shimmer border effect for Skills section */
.skills-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #38bdf8,
    #00f6ff,
    transparent
  );
  animation: shimmer 3s infinite ease-in-out;
  z-index: 10;
}

/* Animated Background Elements */
.skills-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(56, 189, 248, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(0, 246, 255, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 70%,
      rgba(56, 189, 248, 0.05) 0%,
      transparent 50%
    );
  animation: backgroundShift 20s ease-in-out infinite;
  z-index: 1;
}

.skills-section::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
      45deg,
      transparent 30%,
      rgba(56, 189, 248, 0.03) 50%,
      transparent 70%
    ),
    linear-gradient(
      -45deg,
      transparent 30%,
      rgba(0, 246, 255, 0.02) 50%,
      transparent 70%
    );
  animation: rotateBackground 30s linear infinite;
  z-index: 1;
}

@keyframes backgroundShift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(-20px, -20px) scale(1.1);
  }
  66% {
    transform: translate(20px, -10px) scale(0.9);
  }
}

@keyframes rotateBackground {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.skills-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Floating Particles */
.skills-container::before,
.skills-container::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background: #38bdf8;
  border-radius: 50%;
  animation: floatParticle 15s infinite ease-in-out;
  z-index: 1;
}

.skills-container::before {
  top: 10%;
  left: 10%;
  animation-delay: -5s;
  box-shadow: 100px 100px 0 rgba(56, 189, 248, 0.5),
    200px 50px 0 rgba(0, 246, 255, 0.3), 300px 150px 0 rgba(56, 189, 248, 0.4),
    -50px 200px 0 rgba(0, 246, 255, 0.2);
}

.skills-container::after {
  bottom: 10%;
  right: 10%;
  animation-delay: -10s;
  box-shadow: -80px -80px 0 rgba(0, 246, 255, 0.4),
    -150px 50px 0 rgba(56, 189, 248, 0.3), 50px -100px 0 rgba(0, 246, 255, 0.5),
    -200px -50px 0 rgba(56, 189, 248, 0.2);
}

@keyframes floatParticle {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.5;
  }
  25% {
    transform: translate(20px, -20px) rotate(90deg);
    opacity: 1;
  }
  50% {
    transform: translate(-10px, 30px) rotate(180deg);
    opacity: 0.7;
  }
  75% {
    transform: translate(30px, 10px) rotate(270deg);
    opacity: 0.9;
  }
}

.skills-container h2 {
  font-size: 42px;
  margin-bottom: 50px;
  color: #38bdf8;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}

/* Skills heading with white color */
.skills-heading {
  color: #ffffff !important;
}

.skills-container h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(45deg, #38bdf8, #00f6ff);
  border-radius: 2px;
}

.skill-category {
  font-size: 28px;
  color: #38bdf8;
  margin: 50px 0 30px 0;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.skill-category::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(45deg, #38bdf8, #00f6ff);
  border-radius: 1px;
}

.skill-category:first-of-type {
  margin-top: 30px;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}

/* Animated Geometric Shapes for Skills Grid */
.skills-grid::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  border: 2px solid rgba(56, 189, 248, 0.3);
  border-radius: 20px;
  animation: geometricFloat 20s ease-in-out infinite;
  z-index: -1;
}

.skills-grid::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 80px;
  height: 80px;
  background: rgba(0, 246, 255, 0.1);
  border-radius: 50%;
  animation: geometricPulse 15s ease-in-out infinite reverse;
  z-index: -1;
}

@keyframes geometricFloat {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translate(50px, -30px) rotate(180deg);
    opacity: 0.6;
  }
}

@keyframes geometricPulse {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 0.2;
  }
  50% {
    transform: scale(1.5) rotate(360deg);
    opacity: 0.5;
  }
}

.skill-category-card {
  background: rgba(2, 2, 29, 0.588);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(56, 189, 248, 0.2);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Enhanced Card Background Animation */
.skill-category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(56, 189, 248, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

/* Additional animated background layer */
.skill-category-card::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    transparent 60%,
    rgba(0, 246, 255, 0.05) 70%,
    transparent 80%
  );
  animation: cardBackgroundRotate 25s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.skill-category-card:hover::before {
  left: 100%;
}

.skill-category-card:hover::after {
  opacity: 1;
}

.skill-category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(56, 189, 248, 0.3),
    0 0 30px rgba(0, 246, 255, 0.2), inset 0 0 20px rgba(56, 189, 248, 0.1);
  border-color: rgba(56, 189, 248, 0.5);
}

@keyframes cardBackgroundRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.category-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(56, 189, 248, 0.3);
}

.category-icon {
  font-size: 2.5rem;
  color: #38bdf8;
  transition: all 0.3s ease;
}

.skill-category-card:hover .category-icon {
  color: #00f6ff;
  transform: scale(1.1);
}

.category-header h3 {
  font-size: 1.5rem;
  color: #38bdf8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

.skills-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.skill-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.skill-item:hover {
  background: rgba(56, 189, 248, 0.1);
  transform: translateX(10px);
}

.skill-info {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 150px;
}

.skill-info i {
  font-size: 1.5rem;
  color: #38bdf8;
  width: 25px;
  text-align: center;
}

.skill-logo {
  width: 25px;
  height: 25px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(67%) sepia(60%) saturate(1000%)
    hue-rotate(180deg) brightness(98%) contrast(91%);
}

.adobe-logo {
  width: 25px;
  height: 25px;
  object-fit: contain;
  /* No filter - keep original colors */
}

.skill-info span {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 500;
}

.skill-bar {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  margin: 0 15px;
}

.skill-progress {
  height: 100%;
  background: linear-gradient(45deg, #38bdf8, #00f6ff);
  border-radius: 4px;
  width: 0%;
  transition: width 0.8s ease-in-out;
  position: relative;
}

.skill-item:hover .skill-progress {
  width: 100%;
}

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

.skill-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(56, 189, 248, 0.2);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.skill-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(56, 189, 248, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.skill-card:hover::before {
  left: 100%;
}

.skill-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(56, 189, 248, 0.3);
  border-color: rgba(56, 189, 248, 0.5);
}

.skill-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #38bdf8;
  transition: all 0.3s ease;
}

.skill-card:hover .skill-icon {
  color: #00f6ff;
  transform: scale(1.1);
}

.skill-card h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: 600;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* -------------------------------
   8. PROJECTS SECTION
---------------------------------*/
.projects-section {
  background-image: linear-gradient(
      rgba(12, 5, 45, 0.964),
      rgba(0, 0, 0, 0.789)
    ),
    url("https://i.pinimg.com/originals/36/e4/d0/36e4d0b856694fc471344b644a1dd6e4.gif");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 80px 40px;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

.projects-section h2 {
  font-size: 42px;
  margin-bottom: 40px;
}

.subheading {
  font-size: 28px;
  margin: 40px 0 20px;
  color: #38bdf8;
}

.project-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 20px;
}

.project-card {
  background-color: #1e293b;
  border-radius: 20px;
  padding: 20px;
  width: 300px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: floatUpDown 3s ease-in-out infinite;
}

.project-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 30px rgba(56, 189, 248, 0.4);
  animation-play-state: paused;
}

.project-card:nth-child(2n) {
  animation-delay: 1.5s;
}

.project-card:nth-child(3n) {
  animation-delay: 0.75s;
}

@keyframes floatUpDown {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.project-card h4 {
  font-size: 20px;
  color: #38bdf8;
  margin-bottom: 10px;
}

.project-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.project-card p {
  font-size: 16px;
  line-height: 1.5;
}

.project-link {
  display: inline-block;
  margin-top: 0;
  padding: 12px 20px;
  background: linear-gradient(45deg, #38bdf8, #0ea5e9);
  color: #ffffff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex: 1;
  text-align: center;
  min-width: 120px;
}

.project-link:hover {
  background: linear-gradient(45deg, #0ea5e9, #0284c7);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(56, 189, 248, 0.5);
}

.jetir-link {
  display: inline-block;
  margin-top: 0;
  margin-left: 0;
  padding: 12px 20px;
  background: linear-gradient(45deg, #e1306c, #fd1d1d);
  color: #ffffff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex: 1;
  text-align: center;
  min-width: 120px;
}

.jetir-link:hover {
  background: linear-gradient(45deg, #fd1d1d, #dc2626);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(225, 48, 108, 0.5);
}

/* Container for buttons in the same row */
.project-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: stretch;
  margin-top: 15px;
}
.video-editing-section {
  background-image: linear-gradient(rgba(2, 2, 7, 0.964), rgba(6, 4, 20, 0.915)),
    url("https://i.pinimg.com/originals/b6/c5/67/b6c56763ebb300c2a928bd5ac2cafe9d.gif");
  background-size: cover;
  background-position: center;
  padding: 80px 40px;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  text-align: center;
}

.video-editing-section .section-heading {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #38bdf8; /* Sky blue */
  text-transform: uppercase;
  letter-spacing: 2px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  justify-content: center;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.project-card {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease, z-index 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(56, 189, 248, 0.2);
  z-index: 10;
}

.project-card h4 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #0065e0; /* Yellow */
  align-items: center;
  text-align: center;
}

.project-card p {
  font-size: 1rem;
  color: #cbd5e1;
}

/* Default video styles */
.project-card video {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
  object-fit: cover;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.1);
  transition: transform 0.4s ease-in-out;
}

/* 1st video: 1:1 (square) */
.project-card:nth-child(1) video {
  aspect-ratio: 1 / 1;
}
.project-card:nth-child(1):hover video {
  transform: scale(2) translateX(50px);
  box-shadow: #00f6ff 0 0 0px;
}

/* 2nd video: 4:3 */
.project-card:nth-child(2) video {
  aspect-ratio: 4 / 3;
}
.project-card:nth-child(2):hover video {
  transform: scale(2);
  box-shadow: #00f6ff 0 0 0px;
}

/* 3rd video: 16:9 */
.project-card:nth-child(3) video {
  aspect-ratio: 16 / 9;
}
.project-card:nth-child(3):hover video {
  transform: scale(2.5) translateX(-150px);
  box-shadow: #00f6ff 0 0 0px;
}

#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Behind everything */
  background: #0f172a;
}

@media (max-width: 768px) {
  .project-card:nth-child(1) video {
    aspect-ratio: 1 / 1;
  }
  .project-card:nth-child(1):hover video {
    transform: scale(1.4);
    box-shadow: #00f6ff 0 0 0px;
  }

  /* 2nd video: 4:3 */
  .project-card:nth-child(2) video {
    aspect-ratio: 4 / 3;
  }
  .project-card:nth-child(2):hover video {
    transform: scale(1.4);
    box-shadow: #00f6ff 0 0 0px;
  }

  /* 3rd video: 16:9 */
  .project-card:nth-child(3) video {
    aspect-ratio: 16 / 9;
  }
  .project-card:nth-child(3):hover video {
    transform: scale(1.4);
    box-shadow: #00f6ff 0 0 0px;
  }
}
/* -------------------------------
   VIEW MORE CONTAINER (Inside Video Editing Section)
---------------------------------*/
.view-more-container {
  max-width: 600px;
  margin: 50px auto 0;
  text-align: center;
  padding: 40px 20px 0;
  border-top: 2px solid rgba(56, 189, 248, 0.3);
  grid-column: 1 / -1; /* Span across all grid columns */
  width: 100%;
}

.view-more-container h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #38bdf8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.view-more-container p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #cbd5e1;
  line-height: 1.6;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 15px 30px;
  background: linear-gradient(45deg, #e1306c, #fd1d1d, #ff8a00);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
}

.instagram-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(225, 48, 108, 0.5);
  filter: brightness(1.1);
}

.instagram-link i {
  font-size: 1.4rem;
}

/* -------------------------------
   RESPONSIVE DESIGN
---------------------------------*/

/* Tablet Styles */
@media (max-width: 768px) {
  .navbar {
    padding: 15px 5%;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .home-section {
    flex-direction: column;
    text-align: center;
    padding: 120px 5% 50px;
  }

  .home-content {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .home-content h1 {
    font-size: 2.5rem;
  }

  .home-img .img-box {
    width: 250px;
    height: 250px;
  }

  .about-text {
    width: 100%;
    padding: 0 20px;
  }

  .project-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 400px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .projects-section,
  .video-editing-section,
  .skills-section {
    padding: 60px 20px;
  }

  .skills-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .skill-category-card {
    padding: 25px 20px;
  }

  .category-header h3 {
    font-size: 1.3rem;
  }

  .category-icon {
    font-size: 2rem;
  }

  .skill-info {
    min-width: 120px;
  }

  .skill-info span {
    font-size: 0.9rem;
  }

  .skills-container h2 {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .skill-category {
    font-size: 24px;
    margin: 40px 0 25px 0;
  }
}

/* Mobile Styles */
@media (max-width: 480px) {
  .navbar {
    padding: 10px 5%;
  }

  .logo {
    font-size: 1.5rem;
  }

  .logo-img {
    width: 30px;
    height: 30px;
  }

  .home-content h1 {
    font-size: 2rem;
  }

  .home-content h2 {
    font-size: 1.5rem;
  }

  .home-content h3 {
    font-size: 1.2rem;
  }

  .typing {
    font-size: 1.2rem;
  }

  .home-img .img-box {
    width: 200px;
    height: 200px;
  }

  .home-img img {
    width: 180px;
  }

  .about-section {
    padding: 40px 15px;
  }

  .about-container h2 {
    font-size: 28px;
  }

  .about-text {
    font-size: 16px;
    padding: 0 10px;
  }

  .profile-image {
    width: 250px;
  }

  .projects-section h2,
  .video-editing-section .section-heading,
  .skills-section h2 {
    font-size: 32px;
  }

  .skill-category-card {
    padding: 20px 15px;
  }

  .category-header {
    margin-bottom: 20px;
    padding-bottom: 12px;
  }

  .category-header h3 {
    font-size: 1.1rem;
  }

  .category-icon {
    font-size: 1.8rem;
  }

  .skills-list {
    gap: 15px;
  }

  .skill-item {
    padding: 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .skill-info {
    min-width: auto;
    width: 100%;
  }

  .skill-bar {
    margin: 0;
    width: 100%;
  }

  .skill-category {
    font-size: 20px;
    margin: 30px 0 20px 0;
  }

  .skills-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 350px;
    margin: 0 auto;
  }

  .skill-card {
    padding: 25px 15px;
  }

  .skill-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }

  .skill-card h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }

  .subheading {
    font-size: 24px;
  }

  .project-card {
    width: 100%;
    padding: 15px;
    max-width: 350px;
    margin: 0 auto;
  }

  .view-more-container {
    margin: 30px auto 0;
    padding: 30px 15px 0;
    grid-column: 1 / -1;
    width: 100%;
  }

  .view-more-container h3 {
    font-size: 1.8rem;
  }

  .view-more-container p {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .instagram-link {
    padding: 12px 25px;
    font-size: 1.1rem;
    gap: 12px;
  }
}

/* -------------------------------
   FOOTER SECTION
---------------------------------*/
.footer-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  padding: 80px 40px 40px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #38bdf8,
    #00f6ff,
    transparent
  );
  animation: shimmer 3s infinite ease-in-out;
}

@keyframes shimmer {
  0%,
  100% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-content h2 {
  font-size: 2.5rem;
  color: #38bdf8;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-content p {
  font-size: 1.2rem;
  color: #94a3b8;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact Form Styles */
.contact-form-container {
  max-width: 600px;
  margin: 0 auto 50px;
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(56, 189, 248, 0.2);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.contact-form-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(56, 189, 248, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.contact-form-container:hover::before {
  left: 100%;
}

.contact-form-container h3 {
  font-size: 1.8rem;
  color: #38bdf8;
  margin-bottom: 30px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-form {
  position: relative;
  z-index: 2;
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 1rem;
  color: #38bdf8;
  margin-bottom: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(56, 189, 248, 0.3);
  border-radius: 10px;
  color: #ffffff;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #38bdf8;
  background: rgba(56, 189, 248, 0.1);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
}

.error-message {
  display: block;
  color: #ef4444;
  font-size: 0.9rem;
  margin-top: 5px;
  min-height: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.error-message.show {
  opacity: 1;
}

.submit-btn {
  width: 100%;
  padding: 15px 30px;
  background: linear-gradient(45deg, #38bdf8, #00f6ff);
  color: #0f172a;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3);
}

.submit-btn:hover {
  background: linear-gradient(45deg, #0ea5e9, #38bdf8);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(56, 189, 248, 0.5);
}

.submit-btn:active {
  transform: translateY(0);
}

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

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

/* Loading and disabled states */
.submit-btn:disabled {
  cursor: not-allowed;
  opacity: 0.8;
}

.submit-btn:disabled:hover {
  transform: none;
  box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3);
}

/* Form Animation States */
.form-group.error input,
.form-group.error textarea {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
}

.form-group.success input,
.form-group.success textarea {
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.1);
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.contact-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(56, 189, 248, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(56, 189, 248, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.contact-item:hover::before {
  left: 100%;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(56, 189, 248, 0.3);
  border-color: rgba(56, 189, 248, 0.5);
}

.contact-icon {
  font-size: 2.5rem;
  color: #38bdf8;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  color: #00f6ff;
  transform: scale(1.1);
}

.contact-info h3 {
  font-size: 1.3rem;
  color: #38bdf8;
  margin-bottom: 10px;
  font-weight: 600;
}

.contact-info a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
}

.contact-info a:hover {
  color: #00f6ff;
}

.contact-info a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, #38bdf8, #00f6ff);
  transition: width 0.3s ease;
}

.contact-info a:hover::after {
  width: 100%;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(56, 189, 248, 0.1);
  border: 2px solid rgba(56, 189, 248, 0.3);
  border-radius: 50%;
  color: #38bdf8;
  font-size: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.footer-social a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #38bdf8, #00f6ff);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.footer-social a:hover::before {
  opacity: 1;
}

.footer-social a:hover {
  color: #ffffff;
  border-color: #00f6ff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(56, 189, 248, 0.4);
}

.footer-social a img {
  transition: filter 0.3s ease;
}

.footer-social a:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%)
    hue-rotate(0deg) brightness(100%) contrast(100%) !important;
}

.footer-bottom {
  border-top: 1px solid rgba(56, 189, 248, 0.2);
  padding-top: 30px;
  margin-top: 40px;
}

.footer-bottom p {
  color: #64748b;
  font-size: 0.9rem;
  margin: 5px 0;
}

.footer-bottom p:last-child {
  color: #38bdf8;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .footer-section {
    padding: 60px 20px 30px;
  }

  .footer-content h2 {
    font-size: 2rem;
  }

  .contact-form-container {
    padding: 30px 20px;
    margin-bottom: 40px;
  }

  .contact-form-container h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px 15px;
    font-size: 0.95rem;
  }

  .submit-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .contact-options {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-item {
    padding: 25px;
  }

  .footer-social {
    gap: 15px;
  }

  .footer-social a {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  /* Loader Mobile Responsiveness */
  .loader-logo {
    width: 60px;
    height: 60px;
  }

  .loader-logo::before {
    font-size: 1.4rem;
  }

  .geometric-loader {
    gap: 10px;
  }

  .geo-element {
    width: 10px;
    height: 10px;
  }

  .loader-progress {
    width: 150px;
    height: 3px;
  }

  .loader-text {
    font-size: 1rem;
    letter-spacing: 1px;
  }

  .loader-container {
    gap: 25px;
  }
}

/* Extra Mobile Responsiveness for very small screens */
@media (max-width: 480px) {
  .contact-form-container {
    padding: 25px 15px;
    margin-bottom: 30px;
  }

  .contact-form-container h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }

  .form-group {
    margin-bottom: 15px;
  }

  .form-group label {
    font-size: 0.9rem;
    margin-bottom: 6px;
  }

  .form-group input,
  .form-group textarea {
    padding: 10px 15px;
    font-size: 0.9rem;
  }

  .submit-btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .error-message {
    font-size: 0.8rem;
  }

  .loader-logo {
    width: 50px;
    height: 50px;
  }

  .loader-logo::before {
    font-size: 1.2rem;
  }

  .loader-progress {
    width: 120px;
  }

  .loader-text {
    font-size: 0.9rem;
  }

  .loader-container {
    gap: 20px;
  }

  .geo-element {
    width: 8px;
    height: 8px;
  }
}

/* -------------------------------
   RESUME OPTIONS MODAL STYLES
---------------------------------*/
.resume-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.resume-modal.active {
  display: flex;
  opacity: 1;
  align-items: center;
  justify-content: center;
}

.resume-modal-content {
  position: relative;
  width: 90%;
  max-width: 600px;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transform: scale(0.8);
  transition: transform 0.3s ease;
  border: 1px solid rgba(0, 246, 255, 0.3);
}

.resume-modal.active .resume-modal-content {
  transform: scale(1);
}

.resume-modal-header {
  background: linear-gradient(135deg, #00f6ff 0%, #0078ff 100%);
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.resume-modal-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
}

.resume-close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: all 0.3s ease;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.resume-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.resume-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 30px 25px;
}

.resume-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 246, 255, 0.2);
  border-radius: 15px;
  padding: 25px 20px;
  text-align: center;
  transition: all 0.3s ease;
  color: white;
}

.resume-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 246, 255, 0.5);
  box-shadow: 0 10px 25px rgba(0, 246, 255, 0.1);
}

.card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: linear-gradient(135deg, #00f6ff 0%, #0078ff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

.resume-card h4 {
  font-size: 1.2rem;
  margin: 0 0 10px 0;
  color: #00f6ff;
}

.resume-card p {
  font-size: 0.9rem;
  color: #94a3b8;
  margin: 0 0 20px 0;
  line-height: 1.4;
}

.card-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.view-btn {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
}

.view-btn:hover {
  background: linear-gradient(135deg, #5b21b6 0%, #7c3aed 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
}

.download-btn {
  background: linear-gradient(135deg, #00f6ff 0%, #0078ff 100%);
  color: white;
}

.download-btn:hover {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 246, 255, 0.4);
}

.details-btn {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
}

.details-btn:hover {
  background: linear-gradient(135deg, #047857 0%, #065f46 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
}

/* Mobile responsiveness for Resume modal */
@media (max-width: 768px) {
  .resume-modal-content {
    width: 95%;
    margin: 20px;
  }

  .resume-modal-header {
    padding: 15px 20px;
  }

  .resume-modal-title {
    font-size: 1.2rem;
  }

  .resume-options {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 25px 20px;
  }

  .resume-card {
    padding: 20px 15px;
  }

  .card-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
}

/* -------------------------------
   RESUME PREVIEW MODAL STYLES
---------------------------------*/
.resume-preview-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 10001;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.resume-preview-modal.active {
  display: flex;
  opacity: 1;
  align-items: center;
  justify-content: center;
}

.resume-preview-content {
  position: relative;
  width: 95%;
  max-width: 1000px;
  height: 90%;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  transform: scale(0.8);
  transition: transform 0.3s ease;
  border: 2px solid rgba(0, 246, 255, 0.3);
}

.resume-preview-modal.active .resume-preview-content {
  transform: scale(1);
}

.resume-preview-header {
  background: linear-gradient(135deg, #00f6ff 0%, #0078ff 100%);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
}

.resume-preview-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
}

.resume-preview-controls {
  display: flex;
  gap: 10px;
  align-items: center;
}

.preview-download-btn,
.preview-external-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 8px 16px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.preview-download-btn:hover,
.preview-external-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.resume-preview-close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: all 0.3s ease;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.resume-preview-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.resume-preview-container {
  height: calc(100% - 60px);
  position: relative;
}

.resume-preview-frame {
  width: 100%;
  height: 100%;
  border: none;
  background: #f5f5f5;
}

.resume-preview-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #666;
  text-align: center;
  padding: 40px;
  background: #f9f9f9;
}

.resume-preview-error i {
  font-size: 4rem;
  margin-bottom: 20px;
  color: #ddd;
}

.resume-preview-error h3 {
  margin-bottom: 10px;
  color: #333;
}

.resume-preview-error p {
  margin-bottom: 30px;
  color: #666;
}

.error-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.error-download-btn,
.error-external-btn,
.error-newtab-btn {
  background: linear-gradient(135deg, #00f6ff 0%, #0078ff 100%);
  color: white;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.error-download-btn:hover,
.error-external-btn:hover,
.error-newtab-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 246, 255, 0.3);
}

.error-external-btn {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.error-external-btn:hover {
  box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

.error-newtab-btn {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.error-newtab-btn:hover {
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

/* Mobile responsiveness for Resume Preview modal */
@media (max-width: 768px) {
  .resume-preview-content {
    width: 98%;
    height: 95%;
    margin: 10px;
  }

  .resume-preview-header {
    padding: 12px 15px;
  }

  .resume-preview-title {
    font-size: 1.1rem;
  }

  .resume-preview-controls {
    gap: 8px;
  }

  .preview-download-btn,
  .preview-external-btn {
    padding: 6px 12px;
    font-size: 0.8rem;
  }

  .resume-preview-error {
    padding: 20px;
  }

  .resume-preview-error i {
    font-size: 3rem;
  }

  .error-actions {
    flex-direction: column;
    gap: 10px;
  }
}

/* -------------------------------
   RESUME DETAILS MODAL STYLES
---------------------------------*/
.resume-details-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1001;
  backdrop-filter: blur(5px);
}

.resume-details-modal.active {
  display: flex;
  justify-content: center;
  align-items: center;
}

.resume-details-content {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-radius: 20px;
  width: 90%;
  max-width: 1000px;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid rgba(0, 246, 255, 0.3);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.3s ease;
}

.resume-details-modal.active .resume-details-content {
  transform: scale(1);
  opacity: 1;
}

.resume-details-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  border-bottom: 1px solid rgba(0, 246, 255, 0.2);
  background: linear-gradient(
    135deg,
    rgba(0, 246, 255, 0.1) 0%,
    rgba(0, 120, 255, 0.05) 100%
  );
}

.resume-details-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  color: #00f6ff;
}

.resume-details-close-btn {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.resume-details-close-btn:hover {
  color: #00f6ff;
  background: rgba(0, 246, 255, 0.1);
}

.resume-details-body {
  padding: 30px;
}

.resume-section {
  margin-bottom: 35px;
}

.resume-section:last-child {
  margin-bottom: 0;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 246, 255, 0.2);
}

.section-header i {
  font-size: 1.2rem;
  color: #00f6ff;
}

.section-header h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
  color: white;
}

/* Resume Skills Grid - Card Layout */
.resume-skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.resume-skill-category-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 246, 255, 0.2);
  border-radius: 15px;
  padding: 20px;
  transition: all 0.3s ease;
}

.resume-skill-category-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 246, 255, 0.4);
  transform: translateY(-2px);
}

.resume-category-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.resume-category-icon {
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #00f6ff 0%, #0078ff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: white;
}

.resume-category-header h5 {
  margin: 0;
  font-size: 1rem;
  color: white;
  font-weight: 600;
}

.resume-skills-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.resume-skill-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}

.resume-skill-info {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 120px;
}

.resume-skill-info i {
  font-size: 1.2rem;
  color: #00f6ff;
  width: 20px;
  text-align: center;
}

.resume-skill-info .resume-adobe-logo {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(64%) sepia(89%) saturate(3847%)
    hue-rotate(180deg) brightness(101%) contrast(101%);
}

.resume-skill-info span {
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
}

.resume-skill-bar {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  margin-left: 15px;
  overflow: hidden;
}

.resume-skill-progress {
  height: 100%;
  background: linear-gradient(90deg, #00f6ff 0%, #0078ff 100%);
  border-radius: 3px;
  width: 0%;
  animation: resumeSkillLoad 2s ease-in-out forwards;
  animation-delay: 0.5s;
}

@keyframes resumeSkillLoad {
  to {
    width: 100%;
  }
}

/* Different progress widths for variety */
.resume-skill-item:nth-child(1) .resume-skill-progress {
  animation-delay: 0.2s;
}
.resume-skill-item:nth-child(2) .resume-skill-progress {
  animation-delay: 0.4s;
}
.resume-skill-item:nth-child(3) .resume-skill-progress {
  animation-delay: 0.6s;
}
.resume-skill-item:nth-child(4) .resume-skill-progress {
  animation-delay: 0.8s;
}

.resume-skill-item:nth-child(1) .resume-skill-progress {
  width: 100%;
}
.resume-skill-item:nth-child(2) .resume-skill-progress {
  width: 100%;
}
.resume-skill-item:nth-child(3) .resume-skill-progress {
  width: 100%;
}
.resume-skill-item:nth-child(4) .resume-skill-progress {
  width: 100%;
}

.resume-skill-tag {
  background: rgba(0, 246, 255, 0.1);
  border: 1px solid rgba(0, 246, 255, 0.3);
  border-radius: 20px;
  padding: 6px 12px;
  font-size: 0.8rem;
  color: #00f6ff;
  transition: all 0.3s ease;
}

.resume-skill-tag:hover {
  background: rgba(0, 246, 255, 0.2);
  transform: translateY(-1px);
}

/* Resume Education Grid - Card Layout */
.resume-education-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.resume-education-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 246, 255, 0.2);
  border-radius: 15px;
  padding: 20px;
  transition: all 0.3s ease;
  cursor: default;
}

.resume-education-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 246, 255, 0.4);
  transform: translateY(-2px);
}

.resume-education-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.resume-education-icon {
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #00f6ff 0%, #0078ff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: white;
}

.resume-education-year {
  font-size: 0.9rem;
  color: #00f6ff;
  font-weight: 600;
  background: rgba(0, 246, 255, 0.1);
  padding: 5px 12px;
  border-radius: 15px;
}

.resume-education-content h5 {
  font-size: 1rem;
  margin: 0 0 8px 0;
  color: white;
  font-weight: 600;
}

.resume-institution {
  color: #94a3b8;
  margin: 5px 0 12px 0;
  font-size: 0.85rem;
  line-height: 1.4;
}

.resume-education-mark {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 5px;
}

.resume-education-mark.good {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
}

.resume-education-mark.excellent {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: white;
}

.resume-education-status.graduated {
  display: inline-block;
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 5px;
}

/* Resume Actions Section */
.resume-actions-section {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(0, 246, 255, 0.2);
}

.action-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(0, 246, 255, 0.2);
  transition: all 0.3s ease;
}

.action-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 246, 255, 0.4);
  transform: translateY(-2px);
}

.action-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #00f6ff 0%, #0078ff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
}

.action-content h5 {
  margin: 0 0 5px 0;
  font-size: 1rem;
  color: white;
}

.action-content p {
  margin: 0;
  font-size: 0.8rem;
  color: #94a3b8;
}

.action-btn {
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.download-action {
  background: linear-gradient(135deg, #00f6ff 0%, #0078ff 100%);
  color: white;
}

.download-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 246, 255, 0.4);
}

.view-action {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
}

.view-action:hover {
  cursor: pointer;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
}

/* Mobile responsiveness for Resume Details modal */
@media (max-width: 768px) {
  .resume-details-content {
    width: 95%;
    margin: 10px;
    max-height: 95vh;
  }

  .resume-details-header {
    padding: 15px 20px;
  }

  .resume-details-title {
    font-size: 1.2rem;
  }

  .resume-details-body {
    padding: 20px;
  }

  /* Resume Skills Grid Mobile */
  .resume-skills-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .resume-skill-category-card {
    padding: 15px;
  }

  .resume-category-header {
    gap: 10px;
  }

  .resume-category-icon {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }

  .resume-category-header h5 {
    font-size: 0.9rem;
  }

  .resume-skill-tag {
    padding: 5px 10px;
    font-size: 0.75rem;
  }

  /* Resume Education Grid Mobile */
  .resume-education-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .resume-education-card {
    padding: 15px;
  }

  .resume-education-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
  }

  .resume-education-icon {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }

  .resume-education-year {
    font-size: 0.8rem;
    padding: 4px 10px;
  }

  .resume-education-content h5 {
    font-size: 0.9rem;
  }

  .resume-institution {
    font-size: 0.8rem;
  }

  .resume-actions-section {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .action-card {
    padding: 15px;
  }
}
