/* ========================================
   SKILL MARATHI AI - Custom Styles
   ======================================== */



/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    /* Hidden by default until JS takes over */
}

.cursor-dot {
    width: 10px;
    height: 10px;
    background-color: #FF4500;
    box-shadow: 0 0 15px #FF4500, 0 0 30px rgba(255, 69, 0, 0.5);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 69, 0, 0.6);
    background: transparent;
}

/* Hide default cursor */
body {
  cursor: none;
}

/* Cursor dot */
.cursor-dot {
  width: 8px;
  height: 8px;
  background: #FF6A00;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

/* Cursor outline */
.cursor-outline {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(255, 106, 0, 0.6);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.08s ease-out;
}


/* Hover State for Links/Buttons */
body.hovering .cursor-outline {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 69, 0, 0.15);
    border-color: #FF4500;
}

/* Base Styles */
body {
    background-color: #030303;
    overflow-x: hidden;
    cursor: none;
    /* Hide default cursor */
}

/* Show normal cursor on touch devices */
@media (hover: none) and (pointer: coarse) {

    .cursor-dot,
    .cursor-outline {
        display: none !important;
    }

    body {
        cursor: pointer !important;
    }
}

/* Text Selection */
::selection {
    background: #FF4500;
    color: #fff;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FF4500;
}

/* Utility Classes */
.reveal-text {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.char {
    display: inline-block;
}

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 50;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Marquee Animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.33%);
    }
}

.animate-marquee {
    animation: marquee 20s linear infinite;
}

.timeline-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1.25rem;
  padding: 1.75rem 2rem;
  max-width: 420px;
}

.day-badge {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #ff6a00;
  background: rgba(255,106,0,0.15);
}

.icon-box {
  width: 42px;
  height: 42px;
  border-radius: 0.75rem;
  background: linear-gradient(135deg,#ff6a00,#4fb6ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #000;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg,#ff6a00,#4fb6ff);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
