/* ============================================================
   AJINA PORTFOLIO — Dark Theme Stylesheet
   Bootstrap 4.6 · Manrope · Lime #C9F83A accent
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --bg:           #0d0d0d;
  --bg-alt:       #111111;
  --card:         #181818;
  --card-hover:   #1e1e1e;
  --border:       rgba(255,255,255,0.07);
  --accent:       #c9f83a;
  --accent-dark:  #a8d420;
  --white:        #ffffff;
  --text:         rgba(255,255,255,0.88);
  --muted:        rgba(255,255,255,0.45);
  --label:        rgba(255,255,255,0.35);
  --nav-h:        72px;
  --trans:        all 0.3s ease;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  font-size: 0.95rem;
  line-height: 1.7;
}

a { text-decoration: none; transition: var(--trans); }

img { max-width: 100%; display: block; }

h1, h2, h3, h4, h5, h6 {
  color: var(--white);
  font-weight: 800;
  line-height: 1.15;
}

.text-accent { color: var(--accent) !important; }
.font-weight-700 { font-weight: 700 !important; }
.contact-icon-2{
 
}
.contact-icon-2 {
  height: 50px;
  padding: 0 20px;
  min-width: 50px;
  border-radius: 10%;
  border: 1px solid var(--accent);
  background-color: transparent;
  color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition);
}
.contact-icon-2:hover {
  background: var(--accent);
  color: var(--accent-dark);
}
/* Spacer util */
.mt-6 { margin-top: 5rem !important; }
.section-pad { padding: 6rem 0; }
.section-alt  { background: var(--bg-alt); }
.csv  { background-color:var(--bg-alt);}
/* ============================================================
   SECTION LABELS & HEADINGS
   ============================================================ */
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.section-heading {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-accent {
  background: var(--accent);
  color: #0d0d0d;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  transition: var(--trans);
}
.btn-accent:hover {
  background: var(--accent-dark);
  color: #0d0d0d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,248,58,0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  font-weight: 700;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 6px;
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNav {
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  transition: var(--trans);
}
#mainNav.scrolled {
  background: rgba(13,13,13,0.98);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}
.navbar-brand {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--white) !important;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.5px;
}
.brand-dot {
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}
.nav-link {
 
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--muted) !important;
  padding: 0.5rem 0.9rem !important;
  letter-spacing: 0.3px;
  transition: color 0.2s;
   background-color: rgba(13,13,13,0.92) !important;
}
.nav-link:hover,
.nav-link.active-link { color: var(--white) !important; }

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  min-height: 100vh;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero-text { padding-top: 2rem; }

.hero-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.2rem;
}
.hero-heading {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.hero-desc {
  font-size: 1rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-actions .btn { padding: 0.75rem 2rem; font-size: 0.92rem; }

/* Stats */
.hero-stats { border-top: 1px solid var(--border); padding-top: 2rem; }
.stat-item { display: flex; flex-direction: column; }
.stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
  margin-top: 4px;
}

/* Hero photo */
.hero-photo-wrap {
  position: relative;
  display: inline-block;
  max-width: 480px;
}
.hero-photo {
  width: 100%;
  max-width: 420px;
  height: 540px;
  object-fit: cover;
  object-position: top;
  border-radius: 20px;
  border: 1px solid var(--border);
  filter: grayscale(10%);
  transition: filter 0.4s;
}
.hero-photo:hover { filter: grayscale(0%); }

/* Floating tags */
.floating-tag {
  position: absolute;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 30px;
  white-space: nowrap;
}
.tag-top  { top: 28px; left: -24px; }
.tag-bottom {
  bottom: 32px; right: -24px;
  background: rgba(201,248,58,0.12);
  border-color: rgba(201,248,58,0.25);
  color: var(--accent);
}

/* Decorative shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.hero-shape-1 {
  width: 600px; height: 600px;
  right: -200px; top: -150px;
  background: radial-gradient(circle, rgba(201,248,58,0.05) 0%, transparent 70%);
}
.hero-shape-2 {
  width: 400px; height: 400px;
  left: -100px; bottom: -100px;
  background: radial-gradient(circle, rgba(201,248,58,0.04) 0%, transparent 70%);
}
.hero-text, .hero-photo-wrap { position: relative; z-index: 1; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-text {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.8;
}
.fact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.fact-icon {
  width: 32px; height: 32px;
  background: rgba(201,248,58,0.1);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.8rem;
  flex-shrink: 0;
}
.fact-text {
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 500;
}
/* Hero photo */
.hero-photo-wrapper {
  position: relative;
  display: inline-block;
  max-width: 420px;
}
.hero-photo {
  width: 380px;
  max-width: 100%;
  height: 440px;
  /* object-fit: cover; */
   background-size: 100% 100%;  /* Forces the image to stretch and fit the container exactly */
    background-position: center; /* Centers the image content */
    background-repeat: no-repeat;
  object-position: top;
  border-radius: 32px;
  box-shadow: 0 24px 64px rgba(37, 99, 235, 0.22);
  position: relative;
  z-index: 1;
}
.hero-photo-wrapper::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 38px;
  border: 3px dashed rgba(37, 99, 235, 0.25);
  z-index: 0;
}
/* About image mosaic */
.about-mosaic { width: 100%; }
.mosaic-row { display: flex; gap: 8px; height: 340px; }
.mosaic-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s;
}
.mosaic-cell:hover img { transform: scale(1.04); }
.mosaic-cell { overflow: hidden; border-radius: 12px; }
.mosaic-tall { flex: 1; }
.mosaic-col  { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.mosaic-short { flex: 1; }

/* ============================================================
   SERVICES
   ============================================================ */
.service-banner {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  min-height: 360px;
}
.service-banner img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
}
.service-banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}
.service-banner-quote {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
  margin: 0;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  height: 100%;
  transition: var(--trans);
  cursor: default;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,248,58,0.3);
  background: var(--card-hover);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.service-icon {
  width: 50px; height: 50px;
  background: rgba(201,248,58,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 1rem;
  transition: var(--trans);
}
.service-card:hover .service-icon {
  background: var(--accent);
  color: #0d0d0d;
}
.service-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.service-desc {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.7;
}

/* ============================================================
   PORTFOLIO — FILTER
   ============================================================ */
.portfolio-filter { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-btn {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--muted);
  font-family: 'Manrope', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--trans);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #0d0d0d;
}

/* PROJECT CARDS */
.project-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: var(--trans);
  height: 100%;
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.5);
  border-color: rgba(201,248,58,0.2);
}
.project-thumb {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.project-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.project-card:hover .project-thumb img { transform: scale(1.08); }

.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,13,13,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.project-card:hover .project-overlay { opacity: 1; }
.project-div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-link {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #0d0d0d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.project-link:hover { background: var(--accent-dark); color: #0d0d0d; }

.project-info { padding: 1.25rem 1.5rem; }
.project-cat {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.project-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin: 0.3rem 0 0.5rem;
}
.project-desc { font-size: 0.82rem; color: var(--muted); margin: 0; }

/* Project wide banner */
.project-banner {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 320px;
  border: 1px solid var(--border);
}
.project-banner img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.35);
}
.project-banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 3rem;
}
.project-banner-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
}

/* ============================================================
   RESUME
   ============================================================ */
.resume-section { position: relative; overflow: hidden; }
.resume-watermark {
  position: absolute;
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  font-size: clamp(80px, 14vw, 180px);
  font-weight: 900;
  color: rgba(255,255,255,0.025);
  letter-spacing: 8px;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.resume-col-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.resume-col-title i { color: var(--accent); }

/* Education timeline */
.edu-timeline { position: relative; padding-left: 0; }

.edu-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.25rem;
  position: relative;
}
.edu-year {
  flex-shrink: 0;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent);
  background: rgba(201,248,58,0.08);
  border: 1px solid rgba(201,248,58,0.2);
  border-radius: 6px;
  padding: 4px 10px;
  height: fit-content;
  white-space: nowrap;
  margin-top: 4px;
}
.edu-body { flex: 1; padding-bottom: 2rem; border-bottom: 1px solid var(--border); }
.edu-item:last-child .edu-body { border-bottom: none; }
.edu-school {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 2px;
}
.edu-place {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.edu-desc {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.7;
}

/* Skill bars */
.skill-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}
.skill-pct { font-size: 0.85rem; font-weight: 700; }
.skill-bar {
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
}
.skill-bar .progress-bar {
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  border-radius: 3px;
  transition: width 1.2s ease;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  transition: var(--trans);
}
.testimonial-card:hover {
  border-color: rgba(201,248,58,0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}
.testimonial-featured {
  border-color: rgba(201,248,58,0.25);
  background: linear-gradient(145deg, #1a1a1a, #161616);
}
.testi-stars { color: var(--accent); font-size: 0.85rem; letter-spacing: 2px; }
.testi-text {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.8;
  font-style: italic;
}
.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(201,248,58,0.3);
}
.testi-name {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--white);
}
.testi-role {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-heading {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.contact-subhead {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 420px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: var(--trans);
}
.contact-item:hover {
  border-color: rgba(201,248,58,0.2);
  background: var(--card-hover);
}
.contact-icon {
  width: 36px; height: 36px;
  background: rgba(201,248,58,0.1);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.85rem;
  flex-shrink: 0;
}
.contact-label {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.contact-value {
  display: block;
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 600;
}

/* Contact form */
.dark-input {
  background: var(--card) !important;
  border: 1px solid var(--border) !important;
  color: var(--white) !important;
  font-family: 'Manrope', sans-serif;
  border-radius: 10px !important;
  padding: 0.85rem 1.1rem !important;
  font-size: 0.9rem;
  transition: border-color 0.2s;
}
.dark-input::placeholder { color: var(--muted); }
.dark-input:focus {
  background: #1c1c1c !important;
  border-color: rgba(201,248,58,0.4) !important;
  box-shadow: 0 0 0 3px rgba(201,248,58,0.08) !important;
  outline: none;
}
textarea.dark-input { resize: vertical; }

/* Contact visual */
.contact-visual {
  position: relative;
  height: 100%;
  min-height: 500px;
}
.contact-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid var(--border);
  min-height: 500px;
}
.contact-img-overlay {
  position: absolute;
  bottom: 24px;
  left: -24px;
}
.contact-img-float {
  width: 180px;
  border-radius: 12px;
  border: 3px solid var(--bg);
  box-shadow: 0 12px 32px rgba(0,0,0,0.5);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #080808;
  border-top: 1px solid var(--border);
  width:100%;
}
.footer-copy {
  font-size: 0.82rem;
  color: var(--muted);
}
.footer-socials { display: flex; gap: 12px; justify-content: flex-end; }
.footer-social-link {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.85rem;
  transition: var(--trans);
}
.footer-social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(201,248,58,0.06);
}

/* ============================================================
   REVEAL ON SCROLL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .section-heading { font-size: 2.1rem; }
  .hero-photo { height: 400px; }
  .mosaic-row  { height: 260px; }
  .tag-top     { left: 8px; }
  .tag-bottom  { right: 8px; }
  .resume-watermark { font-size: 80px; right: -2%; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .section-pad { padding: 4rem 0; }
  .section-heading { font-size: 1.8rem; }
  .hero-heading { font-size: 2.4rem; }
  .hero-photo { height: 320px; max-width: 300px; margin: 0 auto; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .project-thumb { height: 180px; }
  .project-banner { height: 220px; }
  .project-banner-content { padding: 1.5rem; }
  .project-banner-title { font-size: 1.5rem; }
  .contact-img-float { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .resume-watermark { display: none; }
  .footer-socials { justify-content: center; }
  .portfolio-filter { justify-content: flex-start; }
}

@media (max-width: 575px) {
  .hero-heading { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .floating-tag { display: none; }
  .mosaic-row { height: 200px; }
  .contact-heading { font-size: 2rem; }
  .testimonial-card { padding: 1.25rem; }
}
.marquee {
    overflow: hidden;
    width: 100%;
}

.marquee-content {
    display: flex;
    width: max-content;
    animation: scroll 20s linear infinite;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}