/* Default color variables (light mode) */
html {
  scroll-behavior: smooth;
}
:root {
  --bg-color: #ffffff;
  --text-color: #222222;
  --sidebar-bg: #f8f9fa;
  --link-color: #222222;
  --link-hover: #0056b3;
  --icon-color: #0056b3;
}

/* Dark mode variables */
body.dark-mode {
  --bg-color: #121212;          /* Charcoal dark background */
  --text-color: #ffffff;        /* White text */
  --sidebar-bg: #1E1E1E;        /* Slightly lighter sidebar */
  --link-color: #ffffff;        /* White links */
  --link-hover: #FFD700;        /* Gold highlight */
  --icon-color: #FFD700;        /* Gold icons */
}


/* Global styling */
body {
  font-family: Arial, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  margin: 0;
}

/* Sidebar default (desktop) */
#sidebar {
  width: 250px;
  min-height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  background-color: var(--sidebar-bg);
  color: var(--text-color);
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
}

#sidebar .logo img {
  max-width: 120px;
}

#sidebar .nav-link {
  color: var(--link-color);
  font-size: 1rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

#sidebar .nav-link i {
  color: var(--icon-color);
}

#sidebar .nav-link.active,
#sidebar .nav-link:hover {
  color: var(--link-hover);
}

/* Theme toggle button */
.theme-toggle {
  margin-top: 30px;
  text-align: center;
}
.theme-toggle button {
  background: none;
  border: 1px solid var(--icon-color);
  padding: 6px 12px;
  color: var(--icon-color);
  cursor: pointer;
  border-radius: 5px;
}

/* Content area */
#content {
  margin-left: 250px; /* create space for sidebar */
  flex-grow: 1;
  transition: margin-left 0.3s ease-in-out;
}

/* Mobile view adjustments */
@media (max-width: 991px) {
  #sidebar {
    transform: translateX(-100%);
  }
  #sidebar.active {
    transform: translateX(0);
  }
  #content {
    margin-left: 0; /* full width when sidebar hidden */
  }
}

/* Extra gap before skills section */
.skills-section {
  margin-top: 120px;  /* Increase gap */
}

/* Apply vertical spacing between all sections */
section {
  padding-top: 80px;
  padding-bottom: 80px;
  scroll-margin-top: 100px; /* keeps section visible when navigated via sidebar */
}


/* Base styles for hero-subtitle */
.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 500;
}

/* Dynamic text */
#role-text {
  color: var(--role-color);
  transition: opacity 0.4s ease-in-out, color 0.4s ease-in-out;
}
.fade {
  opacity: 0;
}

/* Light theme colors */
body.light #role-text {
  --role-color: #d63384; /* pink/magenta accent for light mode */
}

/* Dark theme colors */
body.dark #role-text {
  --role-color: #66d9ef; /* soft blue accent for dark mode */
}

@media (max-width: 375px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-section {
    padding: 2rem 1rem;
  }

  header .logo {
    font-size: 1.2rem;
  }
}

/* Default nav link style */
.nav-link {
  text-decoration: none;
  color: inherit;
  padding: 5px 10px;
  transition: color 0.3s, background-color 0.3s;
}

/* Active link style */
.nav-link.active {
  font-weight: bold;
  border-bottom: 2px solid var(--accent);
}

/* Theme colors */
body.light {
  --accent: #d63384; /* light theme pink accent */
}

body.dark {
  --accent: #66d9ef; /* dark theme blue accent */
}


/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  background-color: var(--bg-color);
  color: var(--text-color);
  overflow: hidden;
}

.hero-content {
  z-index: 2;
  position: relative;
}

.hero-content .avatar img {
  width: 120px;
  height: 120px;
  border: 3px solid var(--icon-color);
}

.hero-title {
  font-size: 2rem;
  font-weight: bold;
  margin-top: 15px;
}

.hero-subtitle {
  font-size: 1.2rem;
}
.hero-subtitle span {
  color: var(--icon-color);
  font-weight: bold;
}

.hero-social a {
  color: var(--link-color);
  margin: 0 10px;
  font-size: 1.5rem;
}
.hero-social a:hover {
  color: var(--link-hover);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  color: var(--text-color);
  font-size: 0.9rem;
}

.mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--icon-color);
  border-radius: 12px;
  margin: 8px auto 0;
  position: relative;
}

.mouse .wheel {
  width: 4px;
  height: 8px;
  background: var(--icon-color);
  border-radius: 4px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-wheel 1s linear infinite;
}

@keyframes scroll-wheel {
  0% { opacity: 1; transform: translate(-50%, 0); }
  100% { opacity: 0; transform: translate(-50%, 12px); }
}

/* Floating shapes */
.floating-shapes {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  overflow: hidden;
  z-index: 1;
}

.floating-shapes .shape {
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: transparent;
  border: 2px solid;
  border-radius: 2px;
  opacity: 0.8;
}

/* Different colors for shapes */
.floating-shapes .shape:nth-child(1) { border-color: #FFD700; top: 20%; left: 25%; }
.floating-shapes .shape:nth-child(2) { border-color: #FF4C60; top: 60%; left: 10%; }
.floating-shapes .shape:nth-child(3) { border-color: #4CD964; top: 30%; left: 70%; }
.floating-shapes .shape:nth-child(4) { border-color: #34AADC; top: 80%; left: 40%; }
.floating-shapes .shape:nth-child(5) { border-color: #FF9500; top: 50%; left: 80%; }
.floating-shapes .shape:nth-child(6) { border-color: #AF52DE; top: 15%; left: 55%; }
.floating-shapes .shape:nth-child(7) { border-color: #FF2D55; top: 75%; left: 65%; }
.floating-shapes .shape:nth-child(8) { border-color: #5AC8FA; top: 35%; left: 15%; }


.about-section {
  background-color: var(--background-color);
  color: var(--text-color);
  position: relative;
  z-index: 2;
}

.about-photo {
  width: 100%;
  max-width: 250px;
  aspect-ratio: 1 / 1;           /* Ensure square shape */
  object-fit: cover;             /* Crop image nicely */
  border-radius: 15px;           /* Rounded corners (adjust px if you want more/less) */
  border: 4px solid var(--icon-color);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}


.skills label {
  font-weight: 500;
  margin-bottom: 5px;
}

.skills .progress {
  background-color: #ddd;
  height: 8px;
  border-radius: 4px;
}

.skills .progress-bar {
  border-radius: 4px;
  width: 0%;
}

.about-box {
  background: #121212;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-box .lead {
  font-size: 1rem;
  line-height: 1.6;
}

.skills label {
  font-weight: bold;
  margin-bottom: 4px;
  display: block;
}

.progress {
  height: 8px;
  border-radius: 5px;
  overflow: hidden;
}
/* Light/Dark adaptive container */
.about-box {
  background-color: var(--bs-light);
  color: var(--bs-dark);
  transition: background-color 0.3s ease, color 0.3s ease;
}

body.dark-mode .about-box {
  background-color: #1e1e1e;
  color: #f1f1f1;
}

/* Labels and text inside box */
.about-box label {
  font-weight: 600;
  margin-bottom: 5px;
  display: inline-block;
}


/* ========== General Section Styling ========== */
.education-section {
  padding: 80px 20px;
  background-color: var(--bs-light);
  color: var(--bs-dark);
  transition: background-color 0.3s ease, color 0.3s ease;
}

body.dark-mode .education-section {
  background-color: #1e1e1e;
  color: #f1f1f1;
}

/* ========== Timeline Container ========== */
.education-section .timeline {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 30px;
  position: relative;
}

/* ========== Timeline Items ========== */
.timeline-item {
  position: relative;
  padding-left: 40px;
  margin-bottom: 40px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

body.dark-mode .timeline-item {
  background: rgba(30, 30, 30, 0.9);
  box-shadow: 0 2px 8px rgba(255,255,255,0.05);
}

/* ========== Timeline Line ========== */
.education-section .timeline-item::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  width: 2px;
  height: 100%;
  background: #ffb400;
}

/* ========== Timeline Icon ========== */
.education-section .timeline-icon {
  position: absolute;
  left: -5px;
  top: 0;
  background: #1f1f1f;
  border-radius: 50%;
  padding: 8px;
  font-size: 0.7rem;
  color: #d9534f;
}

body.dark-mode .timeline-icon {
  background: #333;
  color: #ff7675;
}

/* ========== Content Typography ========== */
.timeline-content h4,
.timeline-content h5,
.timeline-content h6,
.timeline-content ul li {
  color: inherit;
}

.timeline-content h5.timeline-date {
  font-size: 14px;
  margin-bottom: 5px;
  color: inherit;
}

.timeline-content h4.timeline-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}

.timeline-content h6.timeline-institute {
  font-size: 16px;
  margin-bottom: 10px;
}

/* ========== List Items ========== */
.education-section ul {
  padding-left: 18px;
  margin: 0;
}

.education-section ul li {
  margin-bottom: 5px;
  font-size: 15px;
}

.skills-section {
  background-color: var(--background-color);
  color: var(--text-color);
  position: relative;
  z-index: 2;
}

.skill-card {
  border-radius: 15px;
  color: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.skill-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.skill-icon i {
  color: #fff;
}

.contact-link {
  color: var(--icon-color);
  font-weight: bold;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

/* Wrapper for positioning glows */
.skills-section .row {
  position: relative;
  z-index: 1;
}

/* Shared styles for glow reflections */
.skill-glow {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.25; /* subtle */
  z-index: 0;
}

/* Individual glow colors, matching each card */
.glow-backend {
  background: #6C63FF;
  top: 50px;
  left: 5%;
}

.glow-app {
  background: #FF9800;
  top: 50px;
  left: 37%;
}

.glow-ml {
  background: #FF6F61;
  top: 50px;
  right: 5%;
}

/* Tool cards inherit colors from theme */
.tool-card {
  background-color: var(--card-bg);
  color: var(--text-color);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: background-color 0.3s, color 0.3s;
}

/* For light mode */
body.light-mode .tool-card {
  --card-bg: #ffffff;
  --text-color: #000000;
}

/* For dark mode */
body.dark-mode .tool-card {
  --card-bg: #1f1f1f;
  --text-color: #f5f5f5;
}
/* Smooth hover for skill/tool cards */
.tool-hover {
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.tool-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.projects-section {
  background-color: var(--background-color);
  padding: 100px 0;
}

.projects-section .section-title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--text-color);
  margin-bottom: 50px;
}

.project-item {
  position: relative;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.project-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #ff4d6d;
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 6px;
  z-index: 1;
}

.project-info {
  padding: 15px;
}

.project-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 5px;
}

.project-meta {
  font-size: 0.9rem;
  color: #bbb;
}

.courses-section {
  background-color: var(--background-color);
  padding: 100px 20px;
}

.courses-section .section-title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--text-color);
  margin-bottom: 50px;
}

/* ============================= */
/* COURSE CARD BASE STYLING      */
/* ============================= */
.course-card {
  position: relative;
  border-radius: 16px;
  padding: 20px;
  color: #fff;
  height: 100%;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.course-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 0;
}

.course-card > * {
  position: relative;
  z-index: 1;
}

.course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.5);
}

/* Title */
.course-card h5 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 15px;
  z-index: 1;
}

/* Description */
.course-card .course-desc {
  font-size: 0.95rem;
  opacity: 0.95;
  transition: opacity 0.3s ease;
}

/* ============================= */
/* CURL FOLD + LOGO              */
/* ============================= */

/* Logo */
.course-card .platform-logo {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 55px;
  height: 55px;
  object-fit: contain;
  opacity: 0;
  transform: rotate(-15deg) scale(0.7);
  transition: opacity 0.6s ease, transform 0.6s ease;
  z-index: 6;
}

/* Curl effect (::after) */
.course-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 83px;
  height: 83px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3), rgba(0,0,0,0.5));
  border-radius: 0 0 100% 0;
  transform: scale(0);
  transform-origin: top left;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  z-index: 5;
}

/* On hover: Curl grows like a fold */
/* Hover: Curl grows like a fold */
.course-card:hover::after {
  transform: scale(1);
  box-shadow: -5px 5px 12px rgba(0,0,0,0.4);
}

/* Logo reveal */
.course-card:hover .platform-logo {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* ============================= */
/* GRADIENT BACKGROUNDS          */
/* ============================= */
.courses-section .row > div:nth-child(1) .course-card {
  background: linear-gradient(135deg, #007acc 0%, #0096c7 100%);
}

.courses-section .row > div:nth-child(2) .course-card {
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  color: #222;
}

.courses-section .row > div:nth-child(3) .course-card {
  background: linear-gradient(135deg, #9333ea 0%, #a855f7 100%);
}

.courses-section .row > div:nth-child(4) .course-card {
  background: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
}

.courses-section .row > div:nth-child(5) .course-card {
  background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.courses-section .row > div:nth-child(6) .course-card {
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
}

/* ============================= */
/* TEXT ANIMATIONS               */
/* ============================= */
.course-card h5,
.course-card p {
  opacity: 0;
  position: relative;
}

/* Align h5 text to the right */
.course-card h5 {
  text-align: right;
  width: 100%;
  margin-left: auto;
  margin-right: 0;
}


@keyframes slideDown {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.animate-title {
  animation: slideDown 0.6s forwards;
}

.animate-desc {
  animation: slideUp 0.6s forwards;
  animation-delay: 0.2s;
}
.course-card .course-desc {
  text-align: right;
}

/* Make simplilearn logo bigger and brighter */
.course-card .platform-logo.simplilearn {
  width: 70px;   /* bigger than default 55px */
  height: 70px;
  filter: brightness(1.5); /* make it more visible */
}

.course-card:hover .platform-logo.simplilearn {
  transform: rotate(0deg) scale(1.5); /* slightly larger on hover */
  filter: brightness(2);
}

.course-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.course-card img.platform-logo {
  display: block;
  margin: 0 auto 15px;
  max-height: 80px;
}
.course-title {
  font-weight: bold;
  margin-top: 10px;
}
.course-desc {
  font-size: 0.95rem;
  margin: 10px 0;
}
.img-txt {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 15px;
  position: relative;
  opacity: 0;
  transform: translateY(50px);
}

.img-txt img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

/* ========== Base Variables ========== */
:root {
  --bg-color: #f9f9f9;
  --text-color: #222;
  --accent-color: #007bff;
}

body.dark-mode {
  --bg-color: #1a1a1a;
  --text-color: #f5f5f5;
  --accent-color: #4dabf7;
}

/* ========== Contact Section ========== */
.contact-section {
  background: var(--bg-color);
  color: var(--text-color);
  transition: background-color 0.3s ease, color 0.3s ease;
  padding: 80px 20px;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

/* ========== Contact Info ========== */
.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.contact-info p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* ========== Contact Form ========== */
.contact-form .form-group {
  margin-bottom: 1.2rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem;
  border: none;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.05);
  color: var(--text-color);
  font-size: 1rem;
  outline: none;
  transition: background 0.3s ease, color 0.3s ease;
}

body.dark-mode .contact-form input,
body.dark-mode .contact-form textarea {
  background: rgba(255, 255, 255, 0.08);
}

.contact-form input:focus,
.contact-form textarea:focus {
  background: rgba(0, 0, 0, 0.1);
}

body.dark-mode .contact-form input:focus,
body.dark-mode .contact-form textarea:focus {
  background: rgba(255, 255, 255, 0.15);
}

/* ========== Submit Button ========== */
.btn-primary {
  background: var(--accent-color);
  color: #ffffff;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.btn-primary:hover {
  background: #0056b3;
  transform: translateY(-2px);
  color: #fff;
}

body.dark-mode .btn-primary:hover {
  background: #339af0;
  color: #fff;
}

/* ========== Form Status ========== */
#form-status {
  margin-top: 1rem;
  font-size: 0.95rem;
}

/* ========== Responsive Layout ========== */
@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

/* Loader Overlay */
#loader {
  position: fixed;
  inset: 0;
  background: #0e0e0e; /* dark background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Loader bar container */
.loader-bar {
  display: flex;
  gap: 10px;
}

/* Loader squares (same style as background squares but here static) */
.loader-square {
  width: 20px;
  height: 20px;
  background-color: #ff4757; /* default color, will animate */
  opacity: 0.3;
  transform: scale(0.8);
  border-radius: 4px;
  animation: loadSquares 2s infinite;
}

/* Different colors for each square */
.loader-square:nth-child(1) { background-color: #ff4757; animation-delay: 0s; }
.loader-square:nth-child(2) { background-color: #ffa502; animation-delay: 0.1s; }
.loader-square:nth-child(3) { background-color: #2ed573; animation-delay: 0.2s; }
.loader-square:nth-child(4) { background-color: #1e90ff; animation-delay: 0.3s; }
.loader-square:nth-child(5) { background-color: #5352ed; animation-delay: 0.4s; }
.loader-square:nth-child(6) { background-color: #ff6b81; animation-delay: 0.5s; }
.loader-square:nth-child(7) { background-color: #70a1ff; animation-delay: 0.6s; }
.loader-square:nth-child(8) { background-color: #7bed9f; animation-delay: 0.7s; }

@keyframes loadSquares {
  0%, 80%, 100% {
    transform: scale(0.8);
    opacity: 0.3;
  }
  40% {
    transform: scale(1.3);
    opacity: 1;
  }
}

/* When loader hides */
body.loaded #loader {
  display: none;
}
#loader {
  opacity: 1;
  transition: opacity 0.6s ease;
}

body.loaded #loader {
  opacity: 0;
  pointer-events: none;
}


/* Make sections occupy most of the viewport and give spacing */
section {
  scroll-margin-top: 80px; /* avoids header overlap when using nav links */
  min-height: 100vh;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* For sections with existing large padding, we keep their look */
.hero-section {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Scroll Indicator Container */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--text-color, #FFD700);
  font-size: 1rem;
  z-index: 10;
  pointer-events: auto;
}

.scroll-indicator p {
  margin-bottom: 10px;
  font-size: 1rem;
  opacity: 0.8;
}

/* Mouse shape */
.mouse {
  width: 28px;
  height: 45px;
  border: 2px solid #FFD700;
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 5px;
  transition: transform 0.3s ease;
}

.mouse:hover {
  transform: scale(1.1);
}

/* The wheel (inner moving part) */
.mouse .wheel {
  width: 6px;
  height: 6px;
  background-color: #FFD700;
  border-radius: 50%;
  animation: wheelMove 1.5s infinite;
}

/* Animation for wheel */
@keyframes wheelMove {
  0% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.5; }
  100% { transform: translateY(0); opacity: 1; }
}