/* ==========================================================================
   1. VARIABLES & BASE SETTINGS
   ========================================================================== */
:root {
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --dark-bg: #0f172a;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --card-bg: #ffffff;
  --gradient: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #60a5fa 100%);
}

html {
  /* Adjust this pixel value if your navbar is taller or shorter */
  scroll-padding-top: 90px;
  scroll-behavior: smooth;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--text-main);
  background-color: #f8fafc;
  overflow-x: hidden;
}

/* ==========================================================================
   2. GLOBAL UTILITIES & TYPOGRAPHY
   ========================================================================== */
.text-gradient-primary {
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-brand-accent {
  color: var(--primary);
}

.section-title-divider {
  width: 60px;
  height: 4px;
  background: var(--gradient);
  border-radius: 2px;
  margin-top: 10px;
}

/* Glassmorphism Reusable UI Card */
.ui-card-glass {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ui-card-glass:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
}

/* ==========================================================================
   3. NAVIGATION BAR (PREMIUM)
   ========================================================================== */
.navbar-premium {
  /* Advanced Glassmorphism */
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  /* Subtle borders and shadows */
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  padding: 1rem 0;
  transition: all 0.3s ease-in-out;
}
.navbar-premium .nav-link {
  color: var(--text-muted);
  font-weight: 600;
  position: relative;
  padding: 0.5rem 1.25rem !important; /* Slightly wider spacing */
  margin: 0 0.25rem;
  transition: color 0.3s ease;
  /* Animated underline element */
}
.navbar-premium .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 2px;
  left: 50%;
  background: var(--gradient);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform: translateX(-50%);
  border-radius: 2px;
}
.navbar-premium .nav-link {
  /* Hover State */
}
.navbar-premium .nav-link:hover, .navbar-premium .nav-link.active {
  color: var(--primary);
}
.navbar-premium .nav-link:hover::after, .navbar-premium .nav-link.active::after {
  width: 60%; /* Underline expands on hover */
}

/* ==========================================================================
   THEME OVERRIDES
   ========================================================================== */
[data-theme=emerald] {
  --primary: #10b981;
  --primary-hover: #059669;
  --gradient: linear-gradient(135deg, #10b981 0%, #34d399 50%, #6ee7b7 100%);
}

[data-theme=purple] {
  --primary: #8b5cf6;
  --primary-hover: #7c3aed;
  --gradient: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 50%, #c4b5fd 100%);
}

[data-theme=rose] {
  --primary: #e11d48;
  --primary-hover: #be123c;
  --gradient: linear-gradient(135deg, #e11d48 0%, #fb7185 50%, #fda4af 100%);
}

/* Ensure dynamic badge text contrasts well on lighter themes */
.badge.bg-primary {
  background-color: var(--primary) !important;
}

.btn-primary {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
}

.btn-primary:hover {
  background-color: var(--primary-hover) !important;
  border-color: var(--primary-hover) !important;
}

.text-primary {
  color: var(--primary) !important;
}

/* Premium Resume Button Hover Glow */
.btn-resume-glow {
  transition: all 0.3s ease;
}
.btn-resume-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -10px var(--primary) !important;
}

/* ==========================================================================
   4. HERO SECTION
   ========================================================================== */
.hero {
  min-height: 100vh;
  padding-top: 80px;
  background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.05), transparent);
}

.badge-availability {
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.indicator-pulse {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse 1.6s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}
/* Code Snippet Window in Hero */
.hero-code-panel .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.code-block-viewer {
  background: #0f172a;
  color: #f8fafc;
  padding: 1.5rem;
  border-radius: 12px;
  font-size: 0.9rem;
  white-space: nowrap;
  overflow-x: auto;
}
.code-block-viewer .keyword {
  color: #38bdf8;
}
.code-block-viewer .string {
  color: #4ade80;
}

/* ==========================================================================
   5. ABOUT SECTION
   ========================================================================== */
.about-profile-wrapper {
  background: rgba(255, 255, 255, 0.9);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-profile-wrapper .about-profile-image {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 4/5;
  transition: transform 0.5s ease;
}
.about-profile-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
}
.about-profile-wrapper:hover .about-profile-image {
  transform: scale(1.03);
}

.about-profile-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(37, 99, 235, 0.1), transparent);
  pointer-events: none;
  border-radius: inherit;
}

/* ==========================================================================
   6. SKILLS SECTION (CARDS & ACCORDION)
   ========================================================================== */
.skill-card-item {
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.skill-card-icon {
  width: 40px;
  height: 40px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.skill-card-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
  color: var(--text-main);
}

.accordion-premium .accordion-item {
  background: rgba(255, 255, 255, 0.4);
}
.accordion-premium .accordion-button {
  box-shadow: none !important;
  padding: 1.5rem;
  transition: all 0.3s ease;
}
.accordion-premium .accordion-button:not(.collapsed) {
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.05) !important;
}
.accordion-premium .accordion-button::after {
  background-size: 1.25rem;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.accordion-premium .accordion-body {
  padding: 0 1.5rem 1.5rem 1.5rem;
}

/* ==========================================================================
   7. PROJECTS SECTION
   ========================================================================== */
.project-card-item {
  background: #ffffff;
  border-radius: 12px; /* Slightly sharper corners */
  border: 1px solid #e2e8f0;
  padding: 1.25rem; /* Drastically reduced padding */
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}
.project-card-item:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}

.badge-technology {
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
  font-weight: 500;
  padding: 4px 8px; /* Reduced badge padding */
  border-radius: 6px;
  font-size: 0.75rem; /* Smaller font for a compact look */
}

/* ==========================================================================
   8. FORM STYLES & PLACEHOLDERS
   ========================================================================== */
.form-control::-moz-placeholder {
  color: #94a3b8; /* A subtle slate gray color */
  opacity: 0.4; /* Lowers the visibility so it's barely there */
  font-weight: 400;
  font-size: 1rem;
}
.form-control::placeholder {
  color: #94a3b8; /* A subtle slate gray color */
  opacity: 0.4; /* Lowers the visibility so it's barely there */
  font-weight: 400;
  font-size: 1rem;
}

/* ==========================================================================
   9. GLOBAL ELEMENTS (SCROLLBAR & FLOATING LOGO)
   ========================================================================== */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

.floating-brand-logo {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  z-index: 1050;
  border-radius: 14px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}
.floating-brand-logo img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  -o-object-fit: contain;
     object-fit: contain;
}
.floating-brand-logo:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 20px 30px -10px rgba(37, 99, 235, 0.5);
}
@media (max-width: 768px) {
  .floating-brand-logo {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

/* ==========================================================================
   10. FOOTER (PREMIUM)
   ========================================================================== */
.footer-premium {
  background-color: var(--dark-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-premium .text-brand-accent {
  color: var(--primary);
}
.footer-premium {
  /* Interactive Circular Social Icons */
}
.footer-premium .social-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.05);
  color: #f8fafc;
  border-radius: 50%;
  font-size: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.footer-premium .social-icon-link:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-5px); /* Lifts the icon up */
  box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.5); /* Blue glow */
  border-color: var(--primary);
}
.footer-premium .footer-divider {
  width: 60px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}
.footer-premium .footer-copy {
  letter-spacing: 0.5px;
}/*# sourceMappingURL=styles.css.map */