
/* style.css */

/* Global Styles */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0b0b0f;
    color: #e0e0e0;
    background-image: url('5056413.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    cursor: url('assets/cursor_default.png'), auto;
}

/* Hide cursor on mobile */
@media (max-width: 768px) {
  body {
    cursor: auto !important;
  }
  
  a {
    cursor: pointer !important;
  }
  
  .menu-icon {
    cursor: pointer !important;
  }
  
  .sira-dot {
    display: none !important;
  }

  .navbar {
    padding: 15px 20px !important;
  }

  .menu-icon {
    display: block !important;
    font-size: 32px !important;
    color: #00ffe1 !important;
  }

  .nav-links {
    display: none !important;
    flex-direction: column !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    width: 100% !important;
    background-color: #000000f9 !important;
    padding: 25px !important;
    border-top: 1px solid #00ffe1 !important;
    gap: 20px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5) !important;
  }

  .nav-links.active {
    display: flex !important;
  }

  .nav-links a {
    font-size: 18px !important;
    padding: 12px 0 !important;
    border-bottom: 1px solid rgba(0, 255, 225, 0.2) !important;
    text-align: center !important;
  }

  .nav-links a:last-child {
    border-bottom: none !important;
  }
}
@media (max-width: 768px) {
  .project-card {
    padding: 15px;
  }

  .project-card h3 {
    font-size: 18px;
  }

  .project-card ul {
    padding-left: 15px;
    font-size: 14px;
  }

  .project-card .visit-btn {
    font-size: 14px;
    padding: 6px 12px;
  }
}

body {
  cursor: none;
}

a {
    text-decoration: none;
    color: #00ffe1;
    transition: 0.3s;
    /* --- Custom Pointer (for clickable items) --- */
    /* This sets the pointer for all links. */
    cursor: url('assets/cursor_pointer.png'), pointer;
}

a:hover {
    color: #ff00c8;
}

/* Container */
.container {
    max-width: 1000px;
    margin: auto;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 12px;
    box-shadow: 0 0 20px #6f00ff;
    backdrop-filter: blur(5px);
}

/* Heading Styles */
h1, h2, h3 {
    color: #ffffff;
    text-shadow: 0 0 5px #ff00c8;
}

/* Image styling */
.profile-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 3px solid #00ffe1;
    box-shadow: 0 0 20px #00ffe1;
    object-fit: cover;
}

/* Section spacing */
.section {
    margin-top: 40px;
}

/* Optional: Animated cursor sparkle or glow */
@keyframes pulse {
    0% {
        box-shadow: 0 0 5px #00ffe1;
    }
    50% {
        box-shadow: 0 0 15px #ff00c8;
    }
    100% {
        box-shadow: 0 0 5px #00ffe1;
    }
}
.glow {
    animation: pulse 2s infinite;
}
/* Base style for all cursor dots */
.sira-dot {
  position: fixed;
  pointer-events: none;
  border-radius: 50%;
  z-index: 9999;
  background-color: #00ffe1;
  box-shadow: 0 0 10px #00ffe1, 0 0 20px #00ffe1;
  transition: transform 0.1s linear;
}

/* Different sizes */
.big-dot {
  width: 12px;
  height: 12px;
}
.med-dot {
  width: 8px;
  height: 8px;
}
.sm-dot {
  width: 5px;
  height: 5px;
}
/* Navbar - works for both desktop and mobile */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: black;
  padding: 12px 30px;
  border-bottom: 1px solid #00ffe1;
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.nav-links a {
  color: #00ffe1;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
}

.menu-icon {
  display: none;
  font-size: 28px;
  color: #00ffe1;
  cursor: pointer;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .navbar {
    padding: 15px 20px !important;
    justify-content: flex-end !important;
  }

  .menu-icon {
    display: block !important;
    font-size: 32px !important;
    color: #00ffe1 !important;
  }

  .nav-links {
    display: none !important;
    flex-direction: column !important;
    position: absolute !important;
    top: 100% !important;
    right: 0 !important;
    width: 250px !important;
    background-color: #000000f9 !important;
    padding: 25px !important;
    border-top: 1px solid #00ffe1 !important;
    border-left: 1px solid #00ffe1 !important;
    gap: 20px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5) !important;
  }

  .nav-links.active {
    display: flex !important;
  }

  .nav-links a {
    font-size: 18px !important;
    padding: 12px 0 !important;
    border-bottom: 1px solid rgba(0, 255, 225, 0.2) !important;
    text-align: center !important;
  }

  .nav-links a:last-child {
    border-bottom: none !important;
  }
}

/* Navbar for multi-page layout */
.navbar {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}
.navbar a {
    font-size: 18px;
    font-weight: bold;
}

/* Certificate Styling */
.certificate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.certificate-img {
    width: 100%;
    border: 2px solid #00ffe1;
    border-radius: 8px;
    transition: 0.3s;
}

.certificate-img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #ff00c8;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 20px;
    }
    .navbar {
        flex-direction: column;
        gap: 15px;
    }
}

/* Mobile-specific fixes for index.html */
@media (max-width: 768px) {
  .container {
    padding: 20px 15px;
    margin: 10px;
  }
  
  .profile-img {
    width: 120px;
    height: 120px;
  }
  
  h1 {
    font-size: 24px;
    margin: 15px 0;
  }
  
  h2 {
    font-size: 20px;
    margin: 20px 0 15px 0;
  }
  
  .section {
    margin-top: 25px;
  }
  
  .section div[style*="line-height"] {
    font-size: 15px !important;
    line-height: 1.6 !important;
    padding: 5px 10px !important;
  }
  
  .section p {
    margin: 15px 0;
    word-wrap: break-word;
  }
  
  .section p[style*="margin-top: 30px"] {
    margin-top: 20px !important;
  }
  
  .section p[style*="margin-top: 20px"] {
    margin-top: 15px !important;
  }
  
  /* Fix for the highlighted quote */
  .section p[style*="border-left"] {
    padding-left: 8px !important;
    font-size: 14px !important;
    margin: 15px 0 !important;
  }
  
  /* Links styling for mobile */
  .section a {
    word-break: break-all;
    font-size: 14px;
  }
  
  /* Strong text sizing */
  .section strong {
    font-size: 15px;
  }
}

/* About content styling */
.about-content {
    line-height: 1.8;
    font-size: 17px;
}

.highlight-quote {
    margin-top: 30px !important;
    color: #00ffe1 !important;
    font-style: italic !important;
    border-left: 4px solid #ff00c8 !important;
    padding-left: 12px !important;
}

.contact-links {
    margin-top: 30px !important;
}

.contact-info {
    margin-top: 20px !important;
}

/* Mobile overrides for new classes */
@media (max-width: 768px) {
  .about-content {
    font-size: 13px !important;
    line-height: 1.4 !important;
    padding: 5px !important;
  }
  
  .highlight-quote {
    padding-left: 8px !important;
    font-size: 12px !important;
    margin-top: 15px !important;
  }
  
  .contact-links, .contact-info {
    margin-top: 15px !important;
    font-size: 12px !important;
  }
}

/* Floating Menu Button */
.floating-menu {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.floating-menu-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00ffe1, #ff00c8);
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 255, 225, 0.4);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-card {
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid #00ffe1;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 0 12px #00ffe1;
  color: white;
}

.project-card h3 {
  color: #00ffe1;
  margin-bottom: 10px;
}

.project-card ul {
  padding-left: 20px;
  margin: 10px 0;
}

.project-card .visit-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 15px;
  background-color: #00ffe1;
  color: black;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
}

.project-card .visit-btn:hover {
  background-color: #ff00c8;
  color: white;
}

.floating-menu-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 255, 225, 0.6);
}

.floating-menu-options {
  position: absolute;
  bottom: 70px;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  border: 2px solid #00ffe1;
  border-radius: 15px;
  padding: 15px;
  min-width: 200px;
  display: none;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
}

.floating-menu-options.active {
  display: block;
  animation: slideUp 0.3s ease;
}

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

.floating-menu-options a {
  display: block;
  color: #00ffe1;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: 500;
}

.floating-menu-options a:hover {
  background: rgba(0, 255, 225, 0.1);
  color: #ff00c8;
  transform: translateX(-5px);
}

/* Hide original navbar on mobile */
@media (max-width: 768px) {
  .navbar {
    display: none !important;
  }
}

/* Desktop navbar remains unchanged */
@media (min-width: 769px) {
  .floating-menu {
    display: none;
  }
  
  .navbar {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  .navbar a {
    font-size: 18px;
    font-weight: bold;
    color: #00ffe1;
    text-decoration: none;
  }
}
