/* ===== RESET & GLOBAL ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0; 
  font-family: 'Inter', sans-serif;
  background: linear-gradient(90deg, #bca39c 0%, #c2b5b0 100%);
  color: #1a1a1a;
}

/* ===== NAVBAR ===== */
.navbar {
  width: 100%;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  background: #ffffff;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,.08);

}

.brand {
  color: #ffffff;
  a,
  a:link,
  a:visited,
  a:hover,
  a:active {
    color: inherit;
    text-decoration: none;
    font-weight: inherit;
  }
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.25rem;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #ff5b99;
}

/* ===== HERO ===== */
.hero {
  /* Allow hero to occupy the full viewport without hard limit */
  min-height: 1024px;
  margin-top: -6.5rem; /* offset navbar height so hero fits one screen */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 1rem 1rem; /* keep hero content spacing */
  text-align: center;
  /*background-repeat: no-repeat;*/
  /*background-size: contain;*/
}

.hero { position: relative; }


/* Fallback static background for browsers without canvas support */
.hero.static-bg {
  background: linear-gradient(90deg, #ff5b99 0%, #ffd07e 100%);
}

.hero-content {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.hero-heading {
  color: #fffce6;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.1rem, 6vw, 3.8rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 4rem;
}

.gradient-text {
  background: linear-gradient(90deg, #ff6078 0%, #d884ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ===== TERMINAL ===== */
.terminal {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: #1e1e1e;
  border-radius: 14px;
  padding: 1.8rem 1.1rem 1.1rem;
  text-align: left;
  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.12),   /* existing subtle layer */
    0 18px 36px rgba(0, 0, 0, 0.3);  /* NEW: soft depth */
  overflow: hidden;
}

.terminal-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 32px;
  background: #2b2b2b;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  display: flex;
  align-items: center;
  padding-left: 12px;
  gap: 6px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.red    { background: #ff6059; }
.yellow { background: #ffbd2e; }
.green  { background: #28c840; }

#terminal-text {
  font-family: 'Source Code Pro', monospace;
  color: #e5e5e5;
  font-size: 0.9rem;
  
  white-space: pre;        /* preserves every space */
  min-height: 6rem;
}

.cursor {
  animation: blink 1s step-end infinite;
}

/* ===== CTAs ===== */
.btn {
  display: inline-block;
  padding: 1rem 2.6rem;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.25s;
  font-size: 1rem;
  /* margin-bottom: 18.1rem; removed for tested */
}

.btn.solid {
  background: linear-gradient(90deg, #ff6078 0%, #d884ff 100%);
  color: #ffffff;
}


.cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn.outline {
  border: 2px solid #ffffff;
  color: #ffffff;
}

.btn:hover {
  transform: translateY(-3px);
  opacity: 0.85;
}

/* ===== SERVICES ===== */
.services {
  min-height: 1430px;
  background: #ffffff;
  padding: 6rem 1rem 7rem;
  display: flex;
  justify-content: center;
}

.container {
  width: min(1100px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3rem;
}

.section-title {
  color: #fffce6;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
}

.section-subtitle {
  color: #fffce6;
  max-width: 650px;
  line-height: 1.5;
  opacity: 0.9;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  width: 100%;
}

.service-card {
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s, box-shadow 0.25s, opacity 0.6s ease;
  opacity: 0;
  transform: translateY(40px);
}

.service-card.visible {
  opacity: 1;
  transform: none;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.08);
}

.card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.card-desc {
  font-size: 0.95rem;
  line-height: 1.45;
  opacity: 0.85;
}

/* ===== ANIMATIONS ===== */
@keyframes blink {
  0%, 50%   { opacity: 1; }
  50.01%,100% { opacity: 0; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .terminal { padding: 1.8rem 1rem 1rem; }
  #terminal-text { font-size: 0.8rem; }
  .hero {
    min-height: 100vh;
    margin-top: -5rem;
    background-size: cover;
  }
}

/* ===== PROCESS (light panels) =================================== */
.process{
  padding:6rem 1rem 7rem;
  display:flex;justify-content:center;
  background:linear-gradient(180deg,#0a0b10 10%,#0b023a 90%);
}

.process .container{
  width:min(900px,100%);
  display:flex;flex-direction:column;
  align-items:center;text-align:center;gap:3rem;
}

/* timeline layout stays identical */
.timeline{position:relative;display:grid;gap:2.5rem;width:100%;margin-top:1rem;}
.timeline::before{
  content:"";position:absolute;top:0;left:24px;width:2px;height:100%;
  background:#e0e0e0;
}

/* --- CARD STYLE CHANGES HERE --- */
.timeline-item{
  position:relative;padding:1.6rem 1.8rem 1.6rem 60px;
  background:rgba(255,255,255,.14);   /* light coloured panel */
  backdrop-filter:blur(4px);          /* subtle frost just for softness */
  border:1px solid rgba(255,255,255,.25);
  border-radius:16px;
  box-shadow:0 4px 14px rgba(0,0,0,.12);
  opacity:0;transform:translateY(40px);
  transition:
    opacity .6s ease,
    transform .6s ease,
    background .3s ease,
    box-shadow .3s ease;
}

/* hover tint & lift */
.timeline-item:hover{
  background:rgba(255,255,255,.19);
  transform:translateY(-6px);
  box-shadow:0 8px 22px rgba(0,0,0,.18);
}

.timeline-item.visible{opacity:1;transform:none;}

.step-number{
  position:absolute;left:9px;top:16px;
  width:30px;height:30px;border-radius:50%;
  background:linear-gradient(90deg,#ff5b99 0%,#ffd07e 100%);
  color:#1a1a1a;font-weight:700;
  display:flex;align-items:center;justify-content:center;
  font-family:'Poppins',sans-serif;
}

.step-title{
  font-family:'Poppins',sans-serif;
  font-size:1.15rem;font-weight:600;margin:.15rem 0 .35rem;
  color:#ffffff;          /* white text */
}
.step-desc{
  font-size:.95rem;line-height:1.45;opacity:.9;color:#ffffff;
}

/* mobile tweak */
@media(max-width:600px){
  .timeline::before{left:16px;}
  .timeline-item{padding-left:52px;}
}

@keyframes pulse {
  0%,100%{transform:scale(1)}
  50%   {transform:scale(1.15)}
}
.step-number{
  background:conic-gradient(#ff5b99,#ffd07e,#5b99ff,#ff5b99);
  animation:pulse 2.8s ease-in-out infinite;
}

.timeline-item{
  position:relative;           /* already true */
  overflow:hidden;             /* hide shine */
}

/* ===== PORTFOLIO NEW LAYOUT ================================== */
.portfolio{
  background: linear-gradient(180deg, #0b023a 0%, #080320 100%);               /* dark backdrop */
  padding:6rem 1rem 7rem;
  display:flex;justify-content:center;color:#fff;
}
.portfolio .container{
  width:min(1200px,100%);
  display:flex;flex-direction:column;gap:3.5rem;align-items:center;text-align:center;
}
.project-grid{
  display:grid;gap:2.5rem;width:100%;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
}

/* Card wrapper */
.project-card{display:flex;flex-direction:column;gap:0;border-radius:18px;overflow:hidden;}

/* Screenshot area */
.project-shot img{display:block;width:100%;height:220px;object-fit:cover;}

/* Info pane – frosted */
.project-info{
  backdrop-filter:blur(14px) saturate(180%);
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.22);
  border-top:none;                   /* seam with image */
  padding:2rem 1.8rem 2.4rem;
  display:flex;flex-direction:column;gap:1rem;flex:1;
  transition:transform .3s ease,box-shadow .3s ease,background .3s ease;
}
.project-card:hover .project-info{
  background:rgba(255,255,255,.14);
  transform:translateY(-6px);
  box-shadow:0 12px 28px rgba(0,0,0,.24);
}

/* tags */
.tag-row{display:flex;gap:.5rem;flex-wrap:wrap;}
.tag{
  background:rgba(255,255,255,.15);
  border-radius:999px;
  padding:.25rem .75rem;
  font-size:.8rem;
}
/* text */
.project-title{font-family:'Poppins',sans-serif;font-size:1.4rem;margin:.3rem 0 0;font-weight:700;}
.project-sub{font-family:'Poppins',sans-serif;font-size:1rem;margin:0;opacity:.85;}
.project-desc{font-size:.95rem;line-height:1.55;margin:0;opacity:.9;}
.project-link{
  margin-top:auto;align-self:flex-start;
  color:#ffd07e;font-weight:600;text-decoration:none;font-size:1rem;
}
.project-link:hover{opacity:.75;}


/* ===== IMPACT SECTION ========================================= */
.impact{
  background:linear-gradient(180deg,#080320 0%,#280420 100%);
  padding:6rem 1rem 7rem;
  display:flex;justify-content:center;
  color:#ffffff;
}
.impact .container{
  width:min(1100px,100%);
  display:flex;flex-direction:column;align-items:center;text-align:center;
  gap:3rem;
}

/* headings */
.impact-kicker{
  font-size:.9rem;font-weight:600;letter-spacing:1px;color:#ff45e9;margin:0;
}
.impact-title{
  font-family:'Poppins',sans-serif;font-size:clamp(2.2rem,6vw,3rem);
  font-weight:700;margin:.3rem 0;
}
.impact-sub{max-width:560px;margin:0 auto;font-size:1.05rem;opacity:.85}

/* grid */
.impact-grid{
  display:grid;gap:2rem;width:100%;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
}

/* card */
.impact-card{
  backdrop-filter:blur(14px) saturate(180%);
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.22);
  border-radius:18px;
  box-shadow:0 8px 22px rgba(0,0,0,.18);
  padding:2.2rem 1.8rem;
  display:flex;flex-direction:column;gap:.6rem;align-items:flex-start;
  transition:transform .3s ease,box-shadow .3s ease,background .3s ease;
}
.impact-card:hover{
  background:rgba(255,255,255,.14);
  transform:translateY(-6px);
  box-shadow:0 12px 28px rgba(0,0,0,.24);
}

/* icon block */
.impact-icon{
  width:52px;height:52px;border-radius:14px;
  display:grid;place-items:center;
  font-size:1.8rem;
  background:rgba(255,255,255,.12);
}

/* metric & labels */
.impact-metric{
  font-family:'Poppins',sans-serif;font-size:2.2rem;font-weight:700;margin:.8rem 0 0;
}
.impact-label{
  font-family:'Poppins',sans-serif;font-size:1.05rem;font-weight:600;margin:0;
}
.impact-desc{font-size:.95rem;margin:0;opacity:.9}


/* ===== FAQ ===== */
.faq {
  padding: 6rem 1rem 7rem;
  display: flex;
  justify-content: center;
  background:linear-gradient(180deg,#280420 0%,#280408 100%);
}

.faq .container {
  width: min(800px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3rem;
}

.accordion {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item {
  
  border-radius: 14px;
  overflow: hidden;
  
  opacity: 0;                       /* for scroll reveal */
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.accordion-item.visible {
  opacity: 1;
  transform: none;
}

.accordion-header {
  width: 100%;
  padding: 1.2rem 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.accordion-icon {
  transition: transform 0.25s ease;
  font-size: 1.3rem;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.4rem;
  transition: max-height 0.35s ease;
}

.accordion-body p {
  padding: 1rem 0 1.4rem;
  text-align: left;
  line-height: 1.55;
}

/* open state */
.accordion-item.open {
  border-color: transparent;
  box-shadow: 0 0 0 3px #ff5b99 inset,
              0 0 0 6px #ffd07e inset;
}

.accordion-item.open .accordion-icon { transform: rotate(45deg); }

.accordion-item.open .accordion-body { max-height: 260px; }

/* mobile tweak */
@media (max-width: 600px) {
  .accordion-header { padding: 1rem 1.2rem; }
  .accordion-body p { padding: 0.8rem 0 1.2rem; }
}

/* ===== PRICING ===== */
.pricing {
  padding: 6rem 1rem 7rem;
  display: flex;
  justify-content: center;
  background:linear-gradient(180deg,#280408 0%,rgb(15, 5, 31) 100%);
}

.pricing .container {
  width: min(1100px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3rem;
}

.pricing-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.price-card {
  border-radius: 20px;
  padding: 2.5rem 1.8rem 3rem;
  box-shadow: 0 10px 22px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  transform: translateY(40px);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
  margin-bottom: 2rem;
}

.price-card.visible {
  transform: none;
  opacity: 1;
}

.plan-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #ffffff;
}

.plan-price {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
}

.plan-price span { letter-spacing: 1px; }

.plan-features {
  color: #ffffff;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.4;
  opacity: 0.85;
  margin-bottom: 0.8rem;
}

.plan-features li::before {
  content: "✔";
  color: #28c840;
  margin-right: 6px;
}

.price-card .btn {
  margin-top: auto;
  width: 100%;
  text-align: center;
}

/* ===== BLOG / TIPS ===== */
.blog {
  background:linear-gradient(180deg,#0f051f 0%,#051a1f 100%);
  padding: 6rem 1rem 7rem;
  display: flex;
  justify-content: center;
}

.blog .container {
  width: min(1100px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3rem;
}

.blog-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.blog-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0,0,0,0.05);
  transform: translateY(40px);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
  display: flex;
  flex-direction: column;
}

.blog-card.visible {
  opacity: 1;
  transform: none;
}

.blog-card.hidden { display: none; }

.blog-card img { width: 100%; height: auto; }

.blog-content { padding: 1.4rem 1.4rem 2rem; display: flex; flex-direction: column; gap: 0.8rem; }

.blog-title {
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
}

.blog-excerpt { font-size: 0.95rem; opacity: 0.9; text-align: left; color: #ffffff;}

.blog-read {
  margin-top: auto;
  align-self: flex-start;
  font-weight: 600;
  color: #ff5b99;
  text-decoration: none;
  transition: opacity 0.25s;
}
.blog-read:hover { opacity: 0.7; }

.blog-load {
  padding: 0.9rem 2.4rem;
  border-radius: 9999px;
  border: 2px solid #1a1a1a;
  background: none;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}

.blog-load:hover {
  background: #1a1a1a;
  color: #ffffff;
}
/* ===== CONTACT & NEWSLETTER (v2) ===== */
.contact {
  background:linear-gradient(180deg,#051a1f 0%,#8d288f 100%);
  padding: 6rem 1rem 7rem;
  display: flex;
  justify-content: center;
}

.contact .container {
  width: min(700px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3rem;
}

/* ---------- Contact form: vertical stack ---------- */
.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;                       /* scroll reveal */
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.field.visible { opacity: 1; transform: none; }

.field label { font-weight: 600; text-align: left; }

.field .opt { font-weight: 400; font-size: 0.85rem; opacity: 0.7; }

.contact input,
.contact textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #cccccc;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  resize: vertical;
}

.contact input:focus,
.contact textarea:focus {
  outline: none;
  border-color: #ff5b99;
  box-shadow: 0 0 0 3px rgba(255,91,153,0.25);
}

/* ---------- Newsletter ---------- */
.newsletter {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
}

/* Glowing RGB outline */
@keyframes glowRGB {
  0%   { border-color: #ff5b99; }
  33%  { border-color: #ffd07e; }
  66%  { border-color: #5b99ff; }
  100% { border-color: #ff5b99; }
}

.newsletter input,
.newsletter .btn.rainbow {
  border: 2px solid #ff5b99;
  animation: glowRGB 6s linear infinite;
}

/* Input & button shape */
.newsletter input {
  border-right: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  padding: 0.9rem 1rem;
}

.newsletter .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  padding: 0.9rem 1.8rem;
  white-space: nowrap;
}

/* Divider */
.contact-divider {
  width: 100%;
  border: none;
  border-top: 1px solid #e6e6e6;
  margin: 2rem 0;
  opacity: 0;                       /* scroll reveal */
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.contact-divider.visible { opacity: 1; transform: none; }

/* ---------- Responsive tweaks ---------- */
@media (max-width: 600px) {
  .newsletter { grid-template-columns: 1fr; }
  .newsletter input {
    border-right: 2px solid #ff5b99;
    border-radius: 10px;
    margin-bottom: 0.8rem;
  }
  .newsletter .btn {
    border-radius: 10px;
  }
}
/* ===== FOOTER ===== */
.footer {
  background: #000000;
  color: #ffffff;
  padding: 4rem 1rem 2rem;
  opacity: 0;                          /* scroll reveal */
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.footer.visible { opacity: 1; transform: none; }

.footer-grid {
  width: min(1100px, 100%);
  margin-inline: auto;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.footer-brand h3 { font-family: 'Poppins', sans-serif; font-size: 1.5rem; margin-bottom: 0.5rem; }

.footer-nav h4,
.footer-contact h4 { font-size: 1.1rem; margin-bottom: 0.6rem; }

.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }

.footer-nav a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s;
}
.footer-nav a:hover { color: #ffd07e; }

.footer-contact a { color: #ffd07e; text-decoration: none; }

.social { display: flex; gap: 0.8rem; margin-top: 0.8rem; }

.social a {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  font-weight: 700;
  transition: background 0.25s, color 0.25s;
}
.social a:hover { background: #ffd07e; color: #1a1a1a; }

.footer-copy {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.8;
}

/* small screens */
@media (max-width: 500px) {
  .footer-grid { text-align: center; }
  .social      { justify-content: center; }
}
@media (max-width: 600px) {
  .nav-links { flex-wrap: wrap; gap: 0.8rem; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }

  html { scroll-behavior: auto; }
}
/* SECTION BACKGROUND */
.appointment-section {
  display: flex;
  justify-content: center;
  padding: 4rem 2rem;
  background-color: #d2d2d2; /* Light peach tone */
}

/* CONTAINER */
.appointment-container {
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  width: 100%;
}

/* LEFT SIDE */
.appointment-left, .appointment-right {
  flex: 1;
  min-width: 300px;
}

.appointment-left h2 {
  font-size: 2.8rem;
  font-weight: 900;
  font-family: 'Poppins', sans-serif;  /* Match your modern theme */
  color: #222;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.appointment-left p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 1.5rem;
}

.appointment-left img {
  width: 90%;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.3);
}

/* RIGHT SIDE */
.appointment-right h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #333;
}

.appointment-option {
  background: #fff;
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* BOOK BUTTON ANIMATION */
.book-btn {
  background-color: black;
  color: white;
  padding: 0.6rem 1.2rem;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 rgba(0,0,0,0);
}

.book-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  background-color: #222;
  letter-spacing: 0.5px;
}

.powered-by {
  font-size: 1rem;
  color: #444;
  text-align: center;
  margin-top: 3rem;
}

/* ===== Frosted-glass navbar experiment ===== */
.navbar.glass {
  border-radius: 20px;                       /* rounded edges */
  margin: 0 auto;                       /* lift off top edge */
  width: calc(100% - 100px);                   /* center & contain */
  padding: 0.8rem 1.5rem;
  top: 0.8rem;

  background: rgba(255, 255, 255, 0.06);     /* translucent */
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);

  /* make links line up again */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 700px) {
  .navbar.glass {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.6rem;
  }
}

/* ===== Frosted-glass terminal ===== */
.terminal.glass {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);   /* softer shadow for glass */
  color: #ffffff;                                /* keep typewriter text bright */
}

/* Dark bar on top becomes translucent too */
.terminal.glass .terminal-bar {
  background: rgba(255, 255, 255, 0.10);
}

/* Make the three dots lighter so they pop */
.terminal.glass .dot.red    { background: #ff6059cc; }
.terminal.glass .dot.yellow { background: #ffbd2ecc; }
.terminal.glass .dot.green  { background: #28c840cc; }

/* ===== NEW SERVICES GRID ===================================== */
.services {
  padding: 6rem 1rem 7rem;
  display: flex;
  justify-content: center;
}

.services .container {
  width: min(1100px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3rem;
}

.services-grid {
  width: 100%;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* --- card wrapper (glass pane) --- */
.service-card.glass {
  position: relative;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  color: #ffffff;
  border-radius: 24px;
  padding: 2.5rem 2rem 2.8rem;
  box-shadow: 0 8px 26px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  opacity: 0;                        /* for scroll reveal */
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.service-card.glass.visible { opacity: 1; transform: none; }

/* icon */
.card-icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.12);
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 2rem;                   /* adjust for emoji / icon size */
}

/* content */
.card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
}
.card-desc {
  font-size: 1.05rem;
  line-height: 1.55;
  opacity: 0.95;
}

/* checklist */
.card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.card-list li {
  position: relative;
  padding-left: 1.8rem;
  font-size: 1.05rem;
}
.card-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #45a0ff;
  font-weight: 700;
}

/* learn more link */
.card-link {
  margin-top: auto;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #45a0ff;
  text-decoration: none;
  transition: opacity 0.25s;
}
.card-link:hover { opacity: 0.7; }

/* responsive padding */
@media (max-width: 600px) {
  .service-card.glass { padding: 2rem 1.5rem 2.4rem; }
}
/* === Compact, left-aligned glass cards ============================= */
.service-card.glass {
  padding: 2rem 1.6rem 2.4rem;       /* smaller */
  gap: 1.2rem;                       /* tighter vertical space */
}

/* row layout for icon + title */
.card-head {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* keep icon size; add no flex-shrink so emoji stays square */
.card-icon { flex-shrink: 0; }

.card-title {
  color: #fffce6;
  font-size: 1.3rem;                 /* slightly smaller */
  margin: 0;                         /* kill default h3 margin */
}

/* paragraph + list now left-aligned */
.card-desc,
.card-list,
.card-link { text-align: left; }

/* body copy smaller */
.card-desc { 
  font-size: 0.95rem; line-height: 1.5; 
  color: #fffce6;
}

/* checklist tweaks */
.card-list { 
  gap: 0.55rem; 
  color: #fffce6;
}         /* tighter */
.card-list li { font-size: 0.95rem; }
.card-list li::before { color: #ff5b99; } /* pink ticks */

/* pink CTA link */
.card-link { color: #f970ad; }

/* Mobile padding trim */
@media (max-width: 600px) {
  .service-card.glass { padding: 1.8rem 1.2rem 2.2rem; }
}
/* ===== Hover animation for glass service cards ================= */
.service-card.glass {
  transition:                       /* add more props to the existing transition */
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease;
}

.service-card.glass:hover {
  transform: translateY(-8px) scale(1.03);          /* gentle lift + zoom */

  /* brighter, slightly tinted frost */
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);

  /* deeper shadow for pop */
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.25);
}

/* ===== BASIC VERTICAL PROCESS ================================= */
.process {
  padding: 8rem 1rem 9rem;
  text-align: center;
  color: #ffffff;           /* white text matches glass theme */
}

.process-stack {
  width: min(900px, 100%);
  margin: 4rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* glass card */
.step.glass {
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
  padding: 1.8rem 2rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.ico {
  font-size: 2rem;
  flex-shrink: 0;
}

.txt h3 {
  margin: 0 0 0.3rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.txt p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* responsive tweak: tighten vertical gap on small screens */
@media (max-width: 600px) {
  .process-stack { gap: 2.2rem; }
}
/* === PROCESS ENHANCEMENTS ========================================== */

/* flowing neon line (7) */
.timeline::before{
  background:linear-gradient(180deg,#ff5b99,#ffd07e 50%,#5b99ff);
  background-size:100% 400%;
  animation:flow-line 8s linear infinite;
}
@keyframes flow-line{to{background-position:0 -300%;}}



/* icon pop-in (5) */
.ico{transform:scale(.85);transition:.3s ease;}
.timeline-item:hover .ico,
.step:hover .ico{transform:scale(1.15) rotate(-5deg);}

/* particle canvas (8) */
.process{position:relative;}
#proc-dots{
  position:absolute;inset:0;z-index:-1;
  pointer-events:none;
}

/* base & hover must keep tilt variable (for #9) */
.timeline-item,
.step{
  transform:var(--tilt,0deg) translateY(0);
  transition:opacity .6s ease,transform .6s ease,background .3s ease,box-shadow .3s ease;
}
.timeline-item:hover,
.step:hover{
  transform:var(--tilt,0deg) translateY(-6px) scale(1.03);
}
/* === ROUND-CORNER RGB OUTLINE ON HOVER (replaces border-image) === */
.timeline-item,
.step { position: relative; }   /* ensure positioning context */

/* --- simple lighten hover ------------------------------------ */
.timeline-item:hover,
.step:hover {
  background: rgba(255,255,255,0.16);  /* brighten panel */
  border: 1px solid rgba(255,255,255,0.28);
  box-shadow: 0 10px 24px rgba(0,0,0,0.24);   /* gentle lift */
  transform: translateY(-6px);                /* keep the lift */
}


/* === BIGGER HEADINGS ============================================ */
.txt h3 {
  font-size: 1.35rem;   /* was 1.15 → bump up */
  font-weight: 700;
  margin: 0 0 0.3rem;
  display: flex;
  gap: .6rem;
  align-items: center;  /* keep icon + text aligned */
}

/* optional: give icon a tiny right gap if needed */
.ico { margin-right: 0.25rem; }

/* ===== SERVICES PAGE =========================================== */

/* Hero */
.service-hero{
  background:linear-gradient(135deg,#ff5b99 0%,#ffd07e 100%);
  padding:6rem 1rem 5rem;
  text-align:center;color:#1a1a1a;
}
.hero-title{font-family:'Poppins',sans-serif;font-size:clamp(2.2rem,6vw,3rem);margin:0 0 1rem;font-weight:700;}
.hero-sub{font-size:1.1rem;max-width:600px;margin:0 auto;}

/* ===== SERVICE ARTICLES ===================================== */
.service-articles{
  padding: 5rem 1rem 7rem;
  max-width: 900px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  color: #ffffff;          /* white on gradient hero backdrop */
}

.svc-heading{
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 1rem;
}

.svc-body{
  font-size: 1.05rem;
  line-height: 1.6;
  opacity: 0.92;
  margin: 0;
}

@media (max-width: 600px){
  .svc-heading{ font-size: 1.6rem; }
  .svc-body   { font-size: 1rem;  }
}

/* === Frosted-glass accordion cards ========================= */
.accordion-item{
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  background: rgba(255,255,255,0.08);          /* translucent panel */
  border: 1px solid rgba(255,255,255,0.22);    /* subtle outline */
  transition: background .3s ease, box-shadow .3s ease;
}

.accordion-item:hover{
  background: rgba(255,255,255,0.14);
  box-shadow: 0 8px 22px rgba(0,0,0,0.18);
}

/* === Frosted accordion + outer glow ======================= */

/* keep the glass look from the previous step */
.accordion-item{
  backdrop-filter: blur(14px) saturate(180%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 14px;
  transition: background .3s ease, box-shadow .3s ease;
}

/* brighten on hover */
.accordion-item:hover{
  background: rgba(255,255,255,0.14);
}

/* --- OPEN state: bright panel + coloured glow border --- */
.accordion-item.open{
  background: rgba(255,255,255,0.14);
  border: 2px solid rgba(255,91,153,0.65);          /* pink outline */
  box-shadow: 0 0 12px rgba(255,91,153,0.45);       /* outer glow */
}

/* text & icon colours */
.accordion-header,
.accordion-body p,
.accordion-icon{
  color: #ffffff;              /* pure white */
}

/* optional: soften body copy */
.accordion-body p{ opacity: 0.9; }

/* === Frosted-glass pricing cards =========================== */
.price-card{
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  background: rgba(255,255,255,0.08);            /* translucent panel */
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 18px;                           /* keep current radius */
  box-shadow: 0 8px 22px rgba(0,0,0,0.18);
  transition: background .3s ease, box-shadow .3s ease, transform .3s ease;
}

/* brighten + lift on hover */
.price-card:hover{
  background: rgba(255,255,255,0.14);
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.24);
}

/* === CTA button under grid ================================= */
.pricing-more{
  margin-top: 3.5rem;
  display: flex; justify-content: center;
}
.pricing-more a{
  display:inline-block;
  padding: 1rem 2.6rem;
  font-weight:600; font-size:1rem;
  border-radius: 9999px;
  background: linear-gradient(90deg,#ff6078 0%,#d884ff 100%);
  color:#1a1a1a; text-decoration:none;
  transition: transform .2s, opacity .25s;
}
.pricing-more a:hover{ transform:translateY(-3px); opacity:.85; }
/* === Make “View Other Options” a clear outline button ===== */
.pricing-more a{
  background: transparent !important;   /* wipe gradient */
  border: 2px solid #ffffff;
  color: #ffffff;
}

.pricing-more a:hover{
  background: rgba(255,255,255,0.08);   /* faint frosted fill on hover */
  transform: translateY(-3px);
  opacity: 1;                           /* keep full opacity */
}


/* Highlighted best plan styles */
.price-card.best-plan {
  border: 3px solid #F64A8A;
  box-shadow: 0 0 0 6px rgba(246,74,138,0.12), 0 14px 32px rgba(246,74,138,0.18);
  position: relative;
}
.plan-badge {
  position: absolute;
  top: -1.2rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #F64A8A 0%, #ffd07e 100%);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.4rem 1.2rem;
  border-radius: 9999px;
  box-shadow: 0 2px 8px rgba(246,74,138,0.18);
  letter-spacing: 0.5px;
  z-index: 2;
  border: 2px solid #fff;
}

/* === Frosted-glass Contact + Newsletter overrides ============= */

/* INPUT fields (Contact + Newsletter) */
.contact input,
.contact textarea,
.newsletter input{
  backdrop-filter: blur(12px) saturate(180%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.35);   /* white-ish edge */
  border-radius: 10px;                       /* keep current shape */
  color: #ffffff;
  transition: background .25s ease, border .25s ease;
}

.contact input::placeholder,
.contact textarea::placeholder,
.newsletter input::placeholder{
  color: rgba(255,255,255,0.65);             /* faint white placeholder */
}

/* focus outline */
.contact input:focus,
.contact textarea:focus,
.newsletter input:focus{
  outline: none;
  border-color: #ffd07e;
  background: rgba(255,255,255,0.14);
  box-shadow: 0 0 0 3px rgba(255,208,126,.25);
}

/* LABELS + helper text */
.field label,
.field .opt{ color:#ffffff; }

/* SEND button (inside contact form) maintains gradient but text now white */
.contact-form .btn{
  color:#ffffff;
}

/* --- Newsletter overrides ------------------------------------ */
/* kill old RGB animation + give white outline button */
.newsletter input,
.newsletter .btn{ animation:none; }

.newsletter .btn{
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 0.9rem 2.2rem;
  border-radius:10px;
  transition: background .25s ease, transform .2s;
}
.newsletter .btn:hover{
  background: rgba(255,255,255,0.08);
  transform: translateY(-3px);
}

/* mobile tweak keeps new border */
@media (max-width:600px){
  .newsletter input{ border:1px solid rgba(255,255,255,0.35); }
}

/* === Frosted glass blog cards + outline “Load more” button ===== */

/* card wrapper */
.blog-card{
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  background: rgba(255,255,255,0.08);          /* translucent panel */
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.18);
  transition: background .3s ease, box-shadow .3s ease, transform .3s ease;
}

/* lift + brighten on hover */
.blog-card:hover{
  background: rgba(255,255,255,0.14);
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.24);
}

/* keep image full-width but let glass show through */
.blog-card img{opacity:.95;}  /* optional subtle fade */

/* “Load More” button — clear outline version */
.blog-load{
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 0.9rem 2.4rem;
  border-radius: 9999px;
  font-weight: 600;
  cursor: pointer;
  transition: background .25s ease, transform .2s ease;
}
.blog-load:hover{
  background: rgba(255,255,255,0.08);
  transform: translateY(-3px);
}

/* ===== EXPERTISE SECTION ==================================== */
.expertise{
  
  padding: 6rem 1rem 7rem;
  display: flex; justify-content: center;
  background:linear-gradient(180deg,#280420 0%,#280420 100%);
  color: #ffffff;
}
.expertise .container{
  width: min(1100px,100%);
  display: flex; flex-direction: column;
  align-items: center; text-align: center; gap: 3rem;
}

/* headings */
.expertise-kicker{
  font-size: .9rem; font-weight: 600; letter-spacing: 1px;
  color: #ff45e9; margin: 0;
}
.expertise-title{
  font-family: 'Poppins',sans-serif;
  font-size: clamp(2.2rem,6vw,3rem);
  font-weight: 700; margin: .3rem 0;
}
.expertise-sub{
  max-width: 560px; margin: 0 auto;
  font-size: 1.05rem; opacity: .85;
}

/* grid */
.expertise-grid{
  display: grid; gap: 2.5rem; width: 100%;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
}

/* frosted card */
.expert-card{
  backdrop-filter: blur(14px) saturate(180%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.18);
  padding: 2.2rem 1.8rem 2.6rem;
  display: flex; flex-direction: column; gap: 1rem;
  text-align: left;
  transition: background .3s ease, box-shadow .3s ease, transform .3s ease;
}
.expert-card:hover{
  background: rgba(255,255,255,0.14);
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.24);
}

/* icon */
.expert-icon{
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  font-size: 1.8rem;
  background: rgba(255,255,255,0.12);
}

/* text styles */
.expert-heading{
  font-family: 'Poppins',sans-serif;
  font-size: 1.35rem; font-weight: 700; margin: 0;
}
.expert-lead{ font-size: .98rem; line-height: 1.55; opacity: .9; margin: 0; }
.expert-list{ margin: .5rem 0 0 0; padding-left: 1.2rem; display: flex; flex-direction: column; gap: .25rem; }
.expert-list li{ list-style: disc; font-size: .92rem; opacity: .9; }

/* link */
.expert-link{
  margin-top: auto; align-self: flex-start;
  color: #ffd07e; font-weight: 600; text-decoration: none; font-size: 1rem;
}
.expert-link:hover{ opacity: .75; }

/* ===== MOBILE NAVIGATION ===== */
.nav-toggle { display: none; }

@media (max-width: 600px) {
  .nav-toggle { display: block; background: none; border: none; color: #ffffff; font-size: 1.6rem; cursor: pointer; }
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    align-items: center;
    margin-top: 0.5rem;
  }
  .navbar.nav-open .nav-links {
    display: flex;
    justify-content: center;
  }
}
