/* ============================================================
   FUTURISTIC.CSS — Premium futuristic redesign (white theme)
   Touches every section EXCEPT the hero (left alone per spec).
   Design tokens:
     - Surface     : rgba(255,255,255,0.6) glass
     - Text Hi     : #0a0a14
     - Text Lo     : #5a6275
     - Accent      : linear-gradient(135deg,#007bff,#00d4ff)
     - Dark accent : linear-gradient(135deg,#0a0a14,#1a1f2e)
     - Border      : rgba(0,120,255,0.10)
     - Glow        : rgba(0,180,255,0.35)
   Fonts: Playfair (display), Quicksand (body), Courier (mono).
   ============================================================ */

/* ── GLOBAL TYPOGRAPHY RESET (under our control) ───────── */
.fx-section { font-family: 'Quicksand', Arial, sans-serif; font-size: 16px; color: #2a2f3d; }
.fx-section h1, .fx-section h2, .fx-section h3, .fx-section h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #0a0a14;
  letter-spacing: -0.01em;
}

/* ─────────────────────────────────────────────────────────
   PAGE-WIDE: subtle dot-grid texture on body for tech vibe
   ───────────────────────────────────────────────────────── */
body {
  background:
    radial-gradient(circle at 20% 0%, rgba(0,180,255,0.04), transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(0,120,255,0.04), transparent 50%),
    #ffffff !important;
}

/* Default section wrapper override (kills legacy weirdness) */
.colorlib-narrow-content {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  position: relative;
}

/* ╔═════════════════════════════════════════════════════════╗
   ║ 1. INTRO SECTION — right under hero video               ║
   ╚═════════════════════════════════════════════════════════╝ */
.colorlib-intro {
  padding: 130px 0 90px !important;
  background: #fff;
  position: relative;
  text-align: center;
}
.colorlib-intro::before {
  content:'';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(0,120,255,0.05), transparent 60%);
  pointer-events: none;
}
.intro-inner { max-width: 860px; margin: 0 auto; padding: 0 24px; position: relative; }
.intro-greeting {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Courier New', monospace;
  font-size: 13px; font-weight: 700; letter-spacing: 5px;
  color: #007bff;
  background: rgba(0,120,255,0.06);
  border: 1px solid rgba(0,120,255,0.18);
  padding: 8px 18px; border-radius: 30px;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.intro-greeting::before {
  content:''; width:8px; height:8px;
  background: linear-gradient(135deg,#007bff,#00d4ff);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(0,180,255,0.7);
  animation: fxPulse 1.5s ease-in-out infinite;
}
@keyframes fxPulse { 50% { opacity:.4; transform: scale(.85); } }

.intro-name {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(48px, 7vw, 92px) !important;
  font-weight: 800 !important;
  line-height: 0.95 !important;
  letter-spacing: -0.025em;
  color: #0a0a14;
  margin-bottom: 18px !important;
}
.intro-name span {
  background: linear-gradient(135deg, #007bff 0%, #00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.intro-role {
  font-family: 'Quicksand', sans-serif !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #2a2f3d !important;
  letter-spacing: 0.08em;
  margin-bottom: 22px !important;
}
.intro-tagline {
  font-size: 17px !important;
  line-height: 1.7 !important;
  color: #5a6275 !important;
  max-width: 640px;
  margin: 0 auto 36px !important;
}
.intro-cta { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.btn-primary-pill, .btn-ghost-pill {
  display: inline-flex; align-items: center;
  padding: 14px 32px;
  border-radius: 999px;
  font-family: 'Quicksand', sans-serif;
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none !important;
  transition: all 0.28s cubic-bezier(.4,0,.2,1);
}
.btn-primary-pill {
  background: linear-gradient(135deg, #007bff 0%, #00d4ff 100%);
  background-size: 200% 100%;
  color: #fff !important;
  box-shadow: 0 10px 28px rgba(0,120,255,0.35);
}
.btn-primary-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0,120,255,0.50);
  background-position: 100% 0;
}
.btn-ghost-pill {
  background: rgba(255,255,255,0.6);
  color: #0a0a14 !important;
  border: 1.5px solid rgba(0,120,255,0.2);
  backdrop-filter: blur(10px);
}
.btn-ghost-pill:hover {
  border-color: #007bff;
  color: #007bff !important;
  transform: translateY(-2px);
}

/* ╔═════════════════════════════════════════════════════════╗
   ║ 2. SECTION HEADERS (heading-meta + colorlib-heading)    ║
   ╚═════════════════════════════════════════════════════════╝ */
.heading-meta {
  display: inline-flex !important;
  align-items: center; gap: 10px;
  font-family: 'Courier New', monospace !important;
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #007bff !important;
  background: rgba(0,120,255,0.06);
  border: 1px solid rgba(0,120,255,0.18);
  padding: 7px 16px; border-radius: 30px;
  margin-bottom: 20px;
}
.heading-meta::before {
  content:''; width:7px; height:7px;
  background: linear-gradient(135deg,#007bff,#00d4ff);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0,180,255,0.6);
}
.colorlib-heading {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(36px, 4.2vw, 56px) !important;
  font-weight: 800 !important;
  line-height: 1.05 !important;
  color: #0a0a14 !important;
  letter-spacing: -0.02em;
  margin-bottom: 24px !important;
}

/* ╔═════════════════════════════════════════════════════════╗
   ║ 3. ABOUT SECTION                                        ║
   ╚═════════════════════════════════════════════════════════╝ */
.colorlib-about {
  padding: 100px 0 !important;
  position: relative;
  background: #fff;
  border-top: 1px solid rgba(0,120,255,0.06);
}
.colorlib-about .about-desc { max-width: 900px; margin: 0 auto 40px; }
.colorlib-about .about-desc p {
  font-size: 17px !important;
  line-height: 1.75 !important;
  color: #2a2f3d !important;
  margin-bottom: 18px !important;
  font-weight: 500;
}
.colorlib-about .about-desc p strong {
  background: linear-gradient(135deg, #007bff 0%, #00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}
/* About cards (Microsoft 365, Power BI, etc.) — glass grid */
.colorlib-about .services {
  background: rgba(255,255,255,0.6) !important;
  backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(0,120,255,0.10);
  border-radius: 18px;
  padding: 28px 18px !important;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 28px rgba(0,60,160,0.06);
  height: 100%;
  min-height: 160px;
}
.colorlib-about .services:hover {
  transform: translateY(-6px);
  border-color: rgba(0,180,255,0.4);
  box-shadow: 0 20px 50px rgba(0,120,255,0.18);
}
.colorlib-about .services .icon2 {
  display: inline-flex; align-items:center; justify-content:center;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #e8f3ff, #ffffff);
  border: 1px solid rgba(0,120,255,0.15);
  border-radius: 14px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0,120,255,0.10);
  font-size: 28px;
}
.colorlib-about .services h3 {
  font-family: 'Quicksand', sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #0a0a14 !important;
  margin: 0 !important;
  letter-spacing: 0.02em;
}
/* "Hire me" CTA */
.colorlib-about .hire {
  background:
    linear-gradient(135deg, rgba(0,120,255,0.07), rgba(0,212,255,0.05)),
    rgba(255,255,255,0.7);
  border: 1px solid rgba(0,120,255,0.15);
  border-radius: 24px;
  padding: 48px 40px !important;
  text-align: center;
  margin-top: 60px !important;
  position: relative;
  overflow: hidden;
}
.colorlib-about .hire::before {
  content:''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, #00d4ff, #007bff, transparent);
}
.colorlib-about .hire h2 {
  font-size: clamp(22px, 2.4vw, 32px) !important;
  font-weight: 700 !important;
  color: #0a0a14 !important;
  margin: 0 0 24px !important;
  line-height: 1.3 !important;
}
.colorlib-about .hire .btn-hire {
  display: inline-block;
  background: linear-gradient(135deg, #007bff 0%, #00d4ff 100%);
  color: #fff !important;
  padding: 14px 36px;
  border-radius: 999px;
  font-family: 'Quicksand', sans-serif;
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none !important;
  box-shadow: 0 10px 28px rgba(0,120,255,0.35);
  transition: all 0.25s;
}
.colorlib-about .hire .btn-hire:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(0,120,255,0.50);
}

/* ╔═════════════════════════════════════════════════════════╗
   ║ 4. SERVICES / EXPERTISE                                 ║
   ╚═════════════════════════════════════════════════════════╝ */
.colorlib-services {
  padding: 100px 0 !important;
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  border-top: 1px solid rgba(0,120,255,0.06);
  border-bottom: 1px solid rgba(0,120,255,0.06);
}
.colorlib-services .services {
  background: rgba(255,255,255,0.75) !important;
  backdrop-filter: blur(14px) saturate(150%);
  border: 1px solid rgba(0,120,255,0.10);
  border-radius: 20px;
  padding: 36px 28px !important;
  height: 100%;
  min-height: 280px;
  transition: all 0.35s cubic-bezier(.2,.8,.2,1);
  position: relative;
  overflow: hidden;
}
.colorlib-services .services::before {
  content:''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #007bff, #00d4ff);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.colorlib-services .services:hover {
  transform: translateY(-8px);
  border-color: rgba(0,180,255,0.4);
  box-shadow: 0 24px 60px rgba(0,120,255,0.18);
}
.colorlib-services .services:hover::before { transform: scaleX(1); }
.colorlib-services .services .icon2 {
  display: inline-flex; align-items: center; justify-content: center;
  width: 72px; height: 72px;
  background: linear-gradient(135deg, #e8f3ff, #ffffff);
  border: 1px solid rgba(0,120,255,0.15);
  border-radius: 18px;
  margin-bottom: 20px;
  font-size: 32px;
  box-shadow: 0 6px 16px rgba(0,120,255,0.12);
}
.colorlib-services .services h3 {
  font-family: 'Playfair Display', serif !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  color: #0a0a14 !important;
  margin-bottom: 12px !important;
}
.colorlib-services .services p {
  font-family: 'Quicksand', sans-serif !important;
  font-size: 14px !important;
  line-height: 1.65 !important;
  color: #5a6275 !important;
  margin: 0 !important;
}

/* ╔═════════════════════════════════════════════════════════╗
   ║ 5. COUNTER STRIP — parallax BG image + neon numbers     ║
   ╚═════════════════════════════════════════════════════════╝ */
#colorlib-counter {
  padding: 100px 0 !important;
  position: relative;
  overflow: hidden;
  /* Use the original image (inline-styled in HTML) but pin it like parallax */
  background-attachment: fixed !important;     /* parallax effect on scroll */
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}
/* Dark overlay so the futuristic numbers stay readable */
#colorlib-counter::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(10,10,20,0.78) 0%, rgba(19,26,46,0.72) 100%),
    radial-gradient(800px 400px at 20% 30%, rgba(0,120,255,0.18), transparent 60%),
    radial-gradient(700px 400px at 80% 70%, rgba(0,212,255,0.14), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
/* Subtle tech grid on top of the overlay */
#colorlib-counter::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(rgba(0,180,255,0.06) 1px, transparent 1px) 0 0/56px 56px,
    linear-gradient(90deg, rgba(0,180,255,0.06) 1px, transparent 1px) 0 0/56px 56px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.65;
}
#colorlib-counter > * { position: relative; z-index: 1; }
#colorlib-counter .overlay { display: none !important; }
/* Win over tech-style.css `#colorlib-counter .js-counter { text-shadow !important }` */
#colorlib-counter span.js-counter,
#colorlib-counter span.colorlib-counter,
#colorlib-counter .col-md-3 .js-counter,
#colorlib-counter .col-md-3 span.colorlib-counter {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(48px, 6vw, 84px) !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  color: #ffffff !important;
  background: transparent !important;      /* kill tech-style.css white bg */
  -webkit-text-fill-color: #ffffff !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  margin-bottom: 12px !important;
  padding: 0 !important;
  display: block;
  border-radius: 0 !important;
  text-shadow:
    0 0 24px rgba(0,200,255,0.65),
    0 0 60px rgba(0,180,255,0.45),
    0 4px 12px rgba(0,0,0,0.30) !important;
}
#colorlib-counter .colorlib-counter-label {
  font-family: 'Courier New', monospace !important;
  font-size: 13px !important;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #ffffff !important;
  display: block;
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}

/* Mobile: fixed attachment is broken on iOS — fall back to scroll */
@media (max-width: 768px) {
  #colorlib-counter { background-attachment: scroll !important; }
}

/* ╔═════════════════════════════════════════════════════════╗
   ║ 6. SKILLS — futuristic progress bars                    ║
   ╚═════════════════════════════════════════════════════════╝ */
.colorlib-skills {
  padding: 100px 0 !important;
  background: #fff;
}
.colorlib-skills .progress-wrap {
  margin-bottom: 26px;
}
.colorlib-skills .progress-wrap h3 {
  font-family: 'Quicksand', sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #0a0a14 !important;
  margin: 0 0 10px !important;
  letter-spacing: 0.02em;
}
.colorlib-skills .progress {
  height: 8px !important;
  background: rgba(0,120,255,0.08) !important;
  border-radius: 999px !important;
  overflow: hidden !important;
  box-shadow: inset 0 1px 3px rgba(0,30,80,0.05);
  position: relative;
}
.colorlib-skills .progress-bar {
  background: linear-gradient(90deg, #007bff 0%, #00d4ff 100%) !important;
  border-radius: 999px !important;
  position: relative;
  box-shadow: 0 0 12px rgba(0,180,255,0.45);
  overflow: visible !important;
}
.colorlib-skills .progress-bar span {
  position: absolute;
  right: 0; top: -28px;
  font-family: 'Courier New', monospace !important;
  font-size: 12px !important;
  font-weight: 800;
  color: #007bff !important;
  background: rgba(0,120,255,0.08);
  border: 1px solid rgba(0,120,255,0.18);
  padding: 2px 8px;
  border-radius: 6px;
}

/* ╔═════════════════════════════════════════════════════════╗
   ║ 7. EXPERIENCE / EDUCATION / PROJECTS — accordion panels║
   ╚═════════════════════════════════════════════════════════╝ */
.colorlib-experience,
.colorlib-education {
  padding: 100px 0 !important;
  background: #fff;
  border-top: 1px solid rgba(0,120,255,0.06);
}
.fancy-collapse-panel .panel {
  background: rgba(255,255,255,0.7) !important;
  backdrop-filter: blur(14px);
  border: 1px solid rgba(0,120,255,0.10) !important;
  border-radius: 16px !important;
  margin-bottom: 14px !important;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,60,160,0.05);
  transition: all 0.25s;
}
.fancy-collapse-panel .panel:hover {
  border-color: rgba(0,180,255,0.3) !important;
  box-shadow: 0 12px 32px rgba(0,120,255,0.12);
}
.fancy-collapse-panel .panel-heading {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}
.fancy-collapse-panel .panel-title a {
  display: block;
  padding: 22px 28px !important;
  font-family: 'Quicksand', sans-serif !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  color: #0a0a14 !important;
  text-decoration: none !important;
  letter-spacing: 0.01em;
  position: relative;
}
.fancy-collapse-panel .panel-title a::after {
  content: '+';
  position: absolute;
  right: 28px; top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: #007bff;
  font-weight: 300;
  transition: transform 0.3s;
}
.fancy-collapse-panel .panel-title a:not(.collapsed)::after { transform: translateY(-50%) rotate(45deg); }
.fancy-collapse-panel .panel-body {
  padding: 0 28px 26px !important;
  border: none !important;
  font-family: 'Quicksand', sans-serif !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
  color: #4a5168 !important;
}
.fancy-collapse-panel .panel-body ul { padding-left: 20px; }
.fancy-collapse-panel .panel-body ul li { margin-bottom: 8px; }
.fancy-collapse-panel .panel-body p { margin-bottom: 12px; }

/* ╔═════════════════════════════════════════════════════════╗
   ║ 8. TIMELINE (Certifications / Achievements)             ║
   ╚═════════════════════════════════════════════════════════╝ */
.timeline-centered { padding-top: 20px; position: relative; }
.timeline-centered::before {
  content:''; position: absolute;
  left: 30px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, #007bff, #00d4ff, transparent);
  opacity: 0.4;
}
.timeline-entry { padding-left: 0 !important; margin-bottom: 18px !important; }
.timeline-entry-inner { padding-left: 80px; position: relative; min-height: 56px; }
.timeline-icon {
  position: absolute !important;
  left: 8px !important; top: 8px !important;
  width: 44px !important; height: 44px !important;
  background: linear-gradient(135deg, #e8f3ff, #ffffff) !important;
  border: 1.5px solid #007bff !important;
  border-radius: 14px !important;
  display: inline-flex !important;
  align-items: center !important; justify-content: center !important;
  font-size: 18px !important;
  color: #007bff !important;
  box-shadow: 0 6px 18px rgba(0,120,255,0.22);
}
.timeline-icon i { color: #007bff !important; }
.timeline-label {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0,120,255,0.10);
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: 0 6px 20px rgba(0,60,160,0.05);
  transition: all 0.25s;
}
.timeline-label:hover {
  transform: translateX(4px);
  border-color: rgba(0,180,255,0.3);
  box-shadow: 0 12px 32px rgba(0,120,255,0.15);
}
.timeline-label h2 {
  font-family: 'Quicksand', sans-serif !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #0a0a14 !important;
  margin: 0 0 6px !important;
  line-height: 1.4 !important;
}
.timeline-label h2 a {
  color: #0a0a14 !important;
  text-decoration: none !important;
}
.timeline-label h2 span {
  display: inline-block;
  font-family: 'Courier New', monospace !important;
  font-size: 11px !important;
  font-weight: 700;
  color: #007bff !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ╔═════════════════════════════════════════════════════════╗
   ║ 9. WORK (project GIFs) — bento grid                     ║
   ╚═════════════════════════════════════════════════════════╝ */
.colorlib-work {
  padding: 100px 0 !important;
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  border-top: 1px solid rgba(0,120,255,0.06);
}
.colorlib-work .work-menu { text-align: center; margin-bottom: 40px; }
.colorlib-work .work-menu span a {
  display: inline-block;
  padding: 8px 18px;
  margin: 0 4px;
  font-family: 'Quicksand', sans-serif !important;
  font-size: 13px !important;
  font-weight: 700;
  color: #5a6275 !important;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(0,120,255,0.10);
  border-radius: 999px;
  text-decoration: none !important;
  transition: all 0.22s;
  letter-spacing: 0.04em;
}
.colorlib-work .work-menu span a.active,
.colorlib-work .work-menu span a:hover {
  background: linear-gradient(135deg, #007bff 0%, #00d4ff 100%);
  color: #fff !important;
  box-shadow: 0 6px 16px rgba(0,120,255,0.32);
  border-color: transparent;
}
.colorlib-work .project {
  position: relative;
  border-radius: 20px !important;
  overflow: hidden !important;
  margin-bottom: 24px !important;
  min-height: 280px;
  background-size: cover !important;
  background-position: center !important;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0,30,90,0.10);
  transition: all 0.4s cubic-bezier(.2,.8,.2,1);
  border: 1px solid rgba(0,120,255,0.06);
}
.colorlib-work .project::after {
  content:''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,10,20,0.85) 100%);
  z-index: 1;
}
.colorlib-work .project:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 30px 60px rgba(0,80,200,0.25);
  border-color: rgba(0,180,255,0.4);
}
.colorlib-work .project .desc {
  position: absolute !important;
  bottom: 0 !important; left: 0 !important; right: 0 !important;
  padding: 24px 26px !important;
  z-index: 2;
  background: transparent !important;
}
.colorlib-work .project h3 {
  font-family: 'Playfair Display', serif !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  margin: 0 0 6px !important;
  color: #fff !important;
}
.colorlib-work .project h3 a { color: #fff !important; text-decoration: none !important; }
.colorlib-work .project .con span:not(.icon) {
  font-family: 'Courier New', monospace !important;
  font-size: 11px !important;
  font-weight: 700;
  color: #00d4ff !important;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.colorlib-work .project .icon {
  margin-top: 12px !important;
  font-size: 12px !important;
  color: rgba(255,255,255,0.7) !important;
}
.colorlib-work .project .icon span a {
  color: rgba(255,255,255,0.7) !important;
  margin-right: 14px;
  text-decoration: none !important;
}
.btn-load-more {
  display: inline-block;
  background: linear-gradient(135deg, #0a0a14 0%, #1a1f2e 100%) !important;
  color: #fff !important;
  padding: 14px 32px !important;
  border-radius: 999px !important;
  font-family: 'Quicksand', sans-serif !important;
  font-size: 14px !important; font-weight: 700 !important;
  letter-spacing: 0.04em;
  text-decoration: none !important;
  box-shadow: 0 10px 28px rgba(10,10,20,0.25);
  transition: all 0.25s;
  border: 1px solid rgba(255,255,255,0.08) !important;
  margin-top: 30px;
}
.btn-load-more:hover {
  background: linear-gradient(135deg, #007bff 0%, #00d4ff 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0,120,255,0.40);
}

/* ╔═════════════════════════════════════════════════════════╗
   ║ 10. CONTACT                                             ║
   ╚═════════════════════════════════════════════════════════╝ */
.colorlib-contact {
  padding: 100px 0 60px !important;
  background: #fff;
  border-top: 1px solid rgba(0,120,255,0.06);
}
.colorlib-contact .colorlib-feature {
  display: flex; align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  padding: 18px 22px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0,120,255,0.10);
  border-radius: 16px;
  transition: all 0.25s;
}
.colorlib-contact .colorlib-feature:hover {
  border-color: rgba(0,180,255,0.35);
  transform: translateX(4px);
  box-shadow: 0 10px 26px rgba(0,120,255,0.15);
}
.colorlib-contact .colorlib-icon {
  display: inline-flex; align-items:center; justify-content:center;
  width: 48px; height: 48px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #e8f3ff, #ffffff);
  border: 1px solid rgba(0,120,255,0.15);
  border-radius: 12px;
  font-size: 20px;
  color: #007bff;
  box-shadow: 0 4px 12px rgba(0,120,255,0.10);
}
.colorlib-contact .colorlib-text p,
.colorlib-contact .colorlib-text p a {
  font-family: 'Quicksand', sans-serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #2a2f3d !important;
  margin: 0 !important;
  text-decoration: none !important;
}
.colorlib-contact .colorlib-text p a:hover { color: #007bff !important; }
/* Contact form */
.colorlib-contact .form-control {
  background: rgba(255,255,255,0.7) !important;
  border: 1.5px solid rgba(0,120,255,0.12) !important;
  border-radius: 12px !important;
  padding: 14px 18px !important;
  font-family: 'Quicksand', sans-serif !important;
  font-size: 15px !important;
  color: #0a0a14 !important;
  height: auto !important;
  box-shadow: none !important;
  transition: all 0.22s;
}
.colorlib-contact .form-control:focus {
  border-color: #007bff !important;
  background: #fff !important;
  box-shadow: 0 0 0 4px rgba(0,180,255,0.12) !important;
}
.colorlib-contact .form-control::placeholder { color: #98a0b3; }
.colorlib-contact textarea.form-control { min-height: 140px; resize: vertical; }
.btn-send-message {
  background: linear-gradient(135deg, #007bff 0%, #00d4ff 100%) !important;
  color: #fff !important;
  padding: 14px 36px !important;
  border-radius: 999px !important;
  font-family: 'Quicksand', sans-serif !important;
  font-size: 15px !important; font-weight: 700 !important;
  border: none !important;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 28px rgba(0,120,255,0.35);
  transition: all 0.25s;
  cursor: pointer;
}
.btn-send-message:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(0,120,255,0.50);
}

/* ╔═════════════════════════════════════════════════════════╗
   ║ 11. FOOTER & DIVIDERS                                   ║
   ╚═════════════════════════════════════════════════════════╝ */
#colorlib-footer {
  padding: 36px !important;
  background: #0a0a14 !important;
  color: rgba(255,255,255,0.55) !important;
  text-align: center;
  border-top: 1px solid rgba(0,180,255,0.10);
  font-family: 'Quicksand', sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
}
#colorlib-footer::before {
  content:''; display:block;
  width: 60px; height: 2px;
  margin: 0 auto 18px;
  background: linear-gradient(90deg, #007bff, #00d4ff);
  border-radius: 2px;
}
.tech-divider {
  height: 1px !important;
  background: linear-gradient(90deg, transparent, rgba(0,120,255,0.18), transparent) !important;
  border: none !important;
  margin: 0 !important;
}

/* ╔═════════════════════════════════════════════════════════╗
   ║ 12. RESPONSIVE                                          ║
   ╚═════════════════════════════════════════════════════════╝ */
@media (max-width: 768px) {
  .colorlib-intro     { padding: 80px 0 60px !important; }
  .colorlib-about,
  .colorlib-services,
  .colorlib-skills,
  .colorlib-experience,
  .colorlib-education,
  .colorlib-work,
  .colorlib-contact   { padding: 70px 0 !important; }
  #colorlib-counter   { padding: 60px 0 !important; }
  .colorlib-narrow-content { padding: 0 20px; }
  .timeline-centered::before { left: 22px; }
  .timeline-entry-inner { padding-left: 64px; }
  .timeline-icon { left: 0 !important; width: 38px !important; height: 38px !important; }
}
