
:root {
  --blue-primary: #1B6EF3;
  --blue-dark: #0D3B8C;
  --blue-light: #EAF1FF;
  --blue-mid: #4F8EF7;
  --cyan-accent: #38D8C8;
  --text-dark: #0E1E3D;
  --text-muted: #6B7A99;
  --card-bg: #FFFFFF;
  --bg-page: #EEF3FC;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg-page);
  color: var(--text-dark);
  overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Sora', sans-serif; }

/* ── NAV ── */
.navbar {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(27,110,243,0.08);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar-brand {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--blue-primary) !important;
  letter-spacing: -0.5px;
}
.navbar-brand span { color: var(--cyan-accent); }
.nav-link {
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--text-muted) !important;
  padding: 6px 14px !important;
  border-radius: 20px;
  transition: all 0.2s;
}
.nav-link:hover, .nav-link.active {
  color: var(--blue-primary) !important;
  background: var(--blue-light);
}
.btn-nav {
  background: var(--blue-primary);
  color: #fff !important;
  border-radius: 20px;
  padding: 8px 20px !important;
  font-size: 0.88rem;
  font-weight: 600;
}
.btn-nav:hover { background: var(--blue-dark); color: #fff !important; }

/* ── HERO ── */
.hero-section {
  background: linear-gradient(135deg, #f0f5ff 0%, #e8f0fe 50%, #eef6ff 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(27,110,243,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(56,216,200,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-avatar {
  width: 120px; height: 120px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; color: #fff;
  margin-bottom: 24px;
  box-shadow: 0 20px 60px rgba(27,110,243,0.25);
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff;
  border: 1px solid rgba(27,110,243,0.15);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue-primary);
  margin-bottom: 20px;
}
.hero-tag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan-accent); }
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--text-dark);
  margin-bottom: 18px;
}
.hero-title .highlight { color: var(--blue-primary); }
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.btn-primary-custom {
  background: var(--blue-primary);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 13px 28px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary-custom:hover {
  background: var(--blue-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(27,110,243,0.3);
}
.btn-outline-custom {
  background: #fff;
  color: var(--blue-primary);
  border: 1.5px solid rgba(27,110,243,0.25);
  border-radius: 14px;
  padding: 13px 28px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline-custom:hover {
  border-color: var(--blue-primary);
  color: var(--blue-primary);
  box-shadow: 0 8px 20px rgba(27,110,243,0.1);
}
.hero-stats {
  display: flex; gap: 32px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.stat-item {}
.stat-number {
  font-family: 'Sora', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--blue-primary);
  line-height: 1;
}
.stat-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; margin-top: 4px; }
.stat-divider { width: 1px; background: rgba(27,110,243,0.15); }

/* ── CARDS ── */
.card-custom {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(27,110,243,0.08);
  box-shadow: 0 4px 24px rgba(14,30,61,0.06);
  padding: 28px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.card-custom:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(14,30,61,0.1);
}

/* ── SECTION HEADINGS ── */
section { padding: 80px 0; }
.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-primary);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.section-desc { color: var(--text-muted); font-size: 0.97rem; max-width: 480px; line-height: 1.7; }

/* ── SKILLS ── */
#skills { background: #fff; }
.skill-card {
  background: var(--blue-light);
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  border: 1px solid rgba(27,110,243,0.1);
  transition: all 0.25s;
}
.skill-card:hover { background: var(--blue-primary); }
.skill-card:hover .skill-icon, .skill-card:hover .skill-title { color: #fff; }
.skill-card:hover .skill-tag { background: rgba(255,255,255,0.2); color: #fff; }
.skill-icon { font-size: 1.8rem; color: var(--blue-primary); margin-bottom: 14px; display: block; transition: color 0.25s; }
.skill-title { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 1rem; margin-bottom: 12px; color: var(--text-dark); transition: color 0.25s; }
.skill-tag {
  display: inline-block;
  background: #fff;
  color: var(--blue-primary);
  border-radius: 8px;
  padding: 3px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  margin: 3px 3px 3px 0;
  transition: all 0.25s;
}

/* ── EXPERIENCE ── */
#experience { background: var(--bg-page); }
.timeline { position: relative; padding-left: 28px; }
.timeline::before {
  content: '';
  position: absolute; left: 0; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue-primary), var(--cyan-accent));
  border-radius: 2px;
}

.timeline-item { position: relative; margin-bottom: 36px; }
.timeline-item::before {
  content: '';
  position: absolute; left: -35px; top: 8px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--blue-primary);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--blue-primary);
}
.tl-date {
  font-size: 0.76rem; font-weight: 600; color: var(--blue-primary);
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 6px;
}
.tl-role { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--text-dark); }
.tl-company { font-size: 0.88rem; color: var(--text-muted); font-weight: 500; margin-bottom: 10px; }
.tl-desc { font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; }
.tl-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--blue-light);
  color: var(--blue-primary);
  border-radius: 8px;
  padding: 4px 12px;
  font-size: 0.75rem; font-weight: 600;
  margin-bottom: 10px;
}

 ── PROJECTS ── 
#projects { background: #fff; }
.project-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(27,110,243,0.1);
  overflow: hidden;
  transition: all 0.25s;
  height: 100%;
  display: flex; flex-direction: column;
}

.project-card-2{
  transform: translateY(-5px); box-shadow: 0 20px 50px rgba(14,30,61,0.1);

}


.project-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(14,30,61,0.1); }
.project-header {
  padding: 28px 28px 0;
  display: flex; align-items: flex-start; gap: 16px;
}
.project-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.project-body { padding: 16px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.project-title { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--text-dark); margin-bottom: 8px; }
.project-desc { font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; flex: 1; }
.project-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--blue-primary); font-weight: 600; font-size: 0.85rem;
  text-decoration: none; margin-top: 16px;
  transition: gap 0.2s;
}
.project-link:hover { gap: 10px; color: var(--blue-dark); }
.project-tech { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.tech-pill {
  background: var(--blue-light);
  color: var(--blue-primary);
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 0.73rem;
  font-weight: 600;
}

/*-------------------------------------------------*/

/* ── CV REQUEST SECTION ── */
#cv-request { background: var(--bg-page); }
.cv-section-wrap {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(27,110,243,0.1);
  box-shadow: 0 8px 40px rgba(14,30,61,0.07);
}
.cv-left {
  background: linear-gradient(145deg, var(--blue-primary) 0%, #0D5BD6 100%);
  padding: 56px 48px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cv-left::before {
  content: '';
  position: absolute; bottom: -60px; right: -40px;
  width: 220px; height: 220px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
}
.cv-left::after {
  content: '';
  position: absolute; top: -30px; left: -30px;
  width: 140px; height: 140px;
  background: rgba(56,216,200,0.12);
  border-radius: 50%;
}
.cv-icon-wrap {
  width: 72px; height: 72px;
  border-radius: 20px;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin-bottom: 24px;
}
.cv-left h3 { font-size: 1.6rem; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.3px; }
.cv-left p { opacity: 0.85; font-size: 0.93rem; line-height: 1.7; margin-bottom: 0; }
.cv-highlight {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 12px 16px;
  margin-top: 24px;
  font-size: 0.85rem;
}
.cv-right {
  padding: 56px 48px;
  display: flex; flex-direction: column; justify-content: center;
}
.cv-right h4 { font-size: 1.2rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.cv-right p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 28px; }
.btn-cv-request {
  background: var(--blue-primary);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.25s;
  width: fit-content;
}
.btn-cv-request:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(27,110,243,0.3);
}
.cv-perks { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.cv-perk {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.82rem; font-weight: 600; color: var(--text-muted);
}
.cv-perk i { color: var(--cyan-accent); font-size: 1rem; }

/* ── MODAL ── */
.modal-content {
  border: none;
  border-radius: 24px;
  overflow: hidden;
}
.modal-header-custom {
  background: linear-gradient(135deg, var(--blue-primary), #0D5BD6);
  padding: 28px 32px 24px;
  color: #fff;
}
.modal-header-custom h5 { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.3rem; margin: 0; }
.modal-header-custom p { opacity: 0.8; font-size: 0.87rem; margin: 6px 0 0; }
.modal-body-custom { padding: 32px; }
.form-label-custom {
  font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.8px;
  color: var(--text-muted); margin-bottom: 6px;
}
.form-control-custom {
  border: 1.5px solid rgba(27,110,243,0.15);
  border-radius: 12px;
  padding: 11px 16px;
  font-size: 0.9rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  outline: none;
  background: #fff;
}
.form-control-custom:focus {
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 4px rgba(27,110,243,0.1);
}
select.form-control-custom { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7A99' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.modal-footer-custom { padding: 0 32px 32px; display: flex; gap: 12px; }
.btn-submit-cv {
  background: var(--blue-primary);
  color: #fff; border: none;
  border-radius: 12px; padding: 12px 28px;
  font-weight: 700; font-size: 0.9rem;
  cursor: pointer; transition: all 0.25s;
  display: flex; align-items: center; gap: 8px; flex: 1; justify-content: center;
}
.btn-submit-cv:hover { background: var(--blue-dark); }
.btn-cancel-cv {
  background: var(--blue-light); color: var(--blue-primary);
  border: none; border-radius: 12px; padding: 12px 24px;
  font-weight: 600; font-size: 0.9rem; cursor: pointer; transition: all 0.25s;
}
.btn-cancel-cv:hover { background: rgba(27,110,243,0.15); }
.success-state {
  text-align: center; padding: 20px 0 8px;
  display: none;
}
.success-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #38D8C8, #1B6EF3);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: #fff;
  margin: 0 auto 20px;
}

/* ── CONTACT ── */
#contact { background: #fff; }
.contact-card {
  background: linear-gradient(135deg, var(--blue-primary) 0%, #0D5BD6 100%);
  border-radius: 24px;
  padding: 56px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
}
.contact-card::after {
  content: '';
  position: absolute; bottom: -60px; left: -30px;
  width: 250px; height: 250px;
  background: rgba(56,216,200,0.1);
  border-radius: 50%;
}
.contact-title { font-size: 2rem; font-weight: 700; letter-spacing: -0.5px; }
.contact-sub { opacity: 0.8; font-size: 0.97rem; line-height: 1.7; margin-top: 10px; }
.contact-info-item {
  display: flex; align-items: center; gap: 14px;
  margin-top: 24px;
}
.contact-info-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-info-text a { color: #fff; text-decoration: none; font-size: 0.9rem; }
.contact-info-text a:hover { text-decoration: underline; }
.contact-info-label { font-size: 0.72rem; opacity: 0.7; text-transform: uppercase; letter-spacing: 1px; }
.btn-white {
  background: #fff;
  color: var(--blue-primary);
  border: none;
  border-radius: 14px;
  padding: 13px 28px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.25s;
}
.btn-white:hover { background: var(--blue-light); color: var(--blue-dark); transform: translateY(-2px); }

/* ── FOOTER ── */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.6);
  padding: 28px 0;
  font-size: 0.83rem;
}
footer a { color: rgba(255,255,255,0.6); text-decoration: none; }
footer a:hover { color: #fff; }

/* ── FLOATING SIDEBAR ICONS (hero) ── */
.hero-float-card {
  background: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(14,30,61,0.12);
  border: 1px solid rgba(27,110,243,0.08);
  display: flex; align-items: center; gap: 12px;
  max-width: 200px;
}
.float-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.float-label { font-size: 0.75rem; color: var(--text-muted); }
.float-value { font-weight: 700; font-size: 0.9rem; color: var(--text-dark); }

/* ANIMATIONS */
@keyframes floatUp {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.float-anim { animation: floatUp 4s ease-in-out infinite; }
.float-anim-delay { animation: floatUp 4s ease-in-out 2s infinite; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeIn 0.6s ease forwards; }
.fade-in-1 { animation-delay: 0.1s; opacity: 0; }
.fade-in-2 { animation-delay: 0.25s; opacity: 0; }
.fade-in-3 { animation-delay: 0.4s; opacity: 0; }
.fade-in-4 { animation-delay: 0.55s; opacity: 0; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-section { padding: 60px 0 50px; }
  .contact-card { padding: 32px 24px; }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }
}

/*----------------------------------------------*/


/* <!-- -----Tabs Nav---- --> */

  
