/* -------------------------
   FOLKLANE - RED & BLACK THEME
   Replaces colors + adds advanced animations
   Author: ChatGPT for Manish
   ------------------------- */

/* ---------- THEME TOKENS ---------- */
:root{
  --red-primary: #FF4F4F;    /* primary coral-red */
  --red-deep:    #B12D2D;    /* deeper red accents */
  --black-base:  #0A0505;    /* main almost-black */
  --black-grad-1:#120808;    /* background gradient start */
  --white:       #FFFFFF;
  --subtext:     #B7B7B7;
  --stroke:      #3C3C3C;
  --glass:       rgba(255,255,255,0.04);
  --glass-strong: rgba(255,255,255,0.07);
  --transition:  250ms;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* keep custom cursor hidden - we'll set cursor visuals separately */
    cursor: none;
}

html,body { height:100%; }

body {
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    background: linear-gradient(180deg, var(--black-grad-1) 0%, var(--black-base) 100%);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}

/* -------------------------
   CUSTOM CURSOR (RED)
   ------------------------- */
.cursor {
    width: 12px;
    height: 12px;
    background: var(--red-primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 99999;
    transition: transform 0.12s linear, background 120ms linear, opacity 120ms;
    mix-blend-mode: normal;
    box-shadow: 0 0 12px rgba(255,79,79,0.35), 0 0 4px rgba(177,45,45,0.15);
}

.cursor-ring {
    width: 44px;
    height: 44px;
    border: 2px solid rgba(255,79,79,0.22);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: transform 160ms ease-out, opacity 160ms;
    mix-blend-mode: normal;
    backdrop-filter: blur(2px);
}

/* When hovering interactive items we grow ring */
.hover-grow .cursor { transform: translate(-50%, -50%) scale(1.6); }
.hover-grow .cursor-ring { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }

/* -------------------------
   GLOBAL BUTTONS
   ------------------------- */
.btn {
    padding: 12px 25px;
    border-radius: 32px;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: transform var(--transition) ease, box-shadow var(--transition) ease;
    position: relative;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
}

/* primary button with layered glow and shine pseudo */
.btn.primary,
.primary {
    background: linear-gradient(90deg, var(--red-primary) 0%, var(--red-deep) 100%);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(255,79,79,0.12), inset 0 -4px 18px rgba(177,45,45,0.06);
    border: 1px solid rgba(255,79,79,0.06);
}

.btn.primary::after,
.primary::after {
    content: "";
    position: absolute;
    left: -80%;
    top: -10%;
    width: 40%;
    height: 220%;
    background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.02));
    transform: skewX(-18deg) translateX(0);
    transition: transform 650ms cubic-bezier(.2,.9,.1,1);
    opacity: 0.25;
    pointer-events: none;
}

.btn.primary:hover::after,
.primary:hover::after {
    transform: translateX(300%) skewX(-18deg);
    opacity: 0.35;
}

.btn.primary:hover,
.primary:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 50px rgba(177,45,45,0.16);
}

/* outline button: subtle red border */
.btn.outline,
.outline {
    border: 1px solid rgba(255,79,79,0.16);
    color: var(--white);
    background: transparent;
    transition: background var(--transition), transform var(--transition);
}

.btn.outline:hover,
.outline:hover {
    background: linear-gradient(180deg, rgba(255,79,79,0.06), rgba(255,79,79,0.03));
    transform: translateY(-4px);
}

/* talk button (header CTA) */
.talk-btn {
    background: linear-gradient(90deg, var(--red-primary), var(--red-deep));
    color: var(--white);
    padding: 10px 22px;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease;
    box-shadow: 0 8px 26px rgba(177,45,45,0.10);
}
.talk-btn:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(177,45,45,0.18); }

/* -------------------------
   HEADER
   ------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    padding: 18px 0;
    backdrop-filter: blur(8px);
    background: linear-gradient(180deg, rgba(10,5,5,0.35), rgba(10,5,5,0.12));
    border-bottom: 1px solid rgba(255,255,255,0.03);
    animation: fadeDown 0.7s ease-out forwards;
}

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-18px); }
    to { opacity: 1; transform: translateY(0); }
}

.header-container {
    width: 92%;
    max-width: 1400px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo image sizing */
.logo img { height: 48px; width: auto; display:block; object-fit:contain; }

/* Desktop navigation */
.nav-links {
    display:flex;
    gap:22px;
    align-items:center;
}
.nav-links a {
    color: var(--subtext);
    text-decoration:none;
    font-size:16px;
    transition: color 180ms ease;
    position:relative;
}
.nav-links a:hover { color: var(--white); }

/* underline hover bar using red */
.nav-links a::after{
    content:"";
    position:absolute;
    left:0; bottom:-6px;
    width:0; height:2px;
    background: linear-gradient(90deg, var(--red-primary), var(--red-deep));
    transition: width 220ms ease;
}
.nav-links a:hover::after { width:100%; }

/* ---------- HERO ---------- */
.hero {
    position: relative;
    padding: 160px 10% 140px;
    min-height: 100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
    background: radial-gradient(1200px 500px at 50% 30%, rgba(177,45,45,0.06), transparent 10%),
                linear-gradient(180deg, var(--black-grad-1) 0%, var(--black-base) 100%);
}

/* subtle grid overlay like the reference */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(to right, rgba(255,255,255,0.012) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(255,255,255,0.012) 1px, transparent 1px);
    background-size: 120px 120px;
    pointer-events: none;
    mix-blend-mode: overlay;
    opacity: 0.55;
}

/* vignette */
.hero::after {
    content:"";
    position:absolute;
    inset:0;
    background: radial-gradient(60% 60% at 50% 40%, rgba(255,79,79,0.02), transparent 20%, rgba(0,0,0,0.6));
    pointer-events:none;
}

/* reveal animation */
@keyframes fadeUp { 0%{ opacity:0; transform: translateY(28px);} 100%{ opacity:1; transform: translateY(0);} }

.hero-content > * { animation: fadeUp 900ms cubic-bezier(.2,.9,.2,1) both; }
.badge { animation-delay: 150ms; }
.hero-title { animation-delay: 300ms; }
.hero-subtext { animation-delay: 450ms; }
.hero-buttons { animation-delay: 600ms; }

/* badge */
.badge {
    display:inline-block;
    padding:10px 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius:20px;
    color: var(--subtext);
    font-weight:600;
    letter-spacing:0.6px;
    margin-bottom:18px;
}

/* BIG HERO TITLE */
.hero-title {
    font-size: 84px;
    font-weight: 900;
    line-height: 0.95;
    margin: 8px 0 10px;
    color: var(--white);
    text-shadow: 0 8px 40px rgba(177,45,45,0.04);
    letter-spacing: -1px;
    max-width: 1100px;
}

/* gradient text uses red palette */
.gradient-text {
    background: linear-gradient(90deg, var(--red-primary), var(--red-deep));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display:inline-block;
}

/* subtext */
.hero-subtext {
    margin-top: 22px;
    max-width: 720px;
    color: var(--subtext);
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.95;
}

/* hero buttons placement */
.hero-buttons { margin-top: 34px; display:flex; gap:18px; justify-content:center; align-items:center; }

/* subtle hover emphasis on primary already defined above */

/* ---------- FLOATING SHAPES (RED) ---------- */
.shape {
    position: absolute;
    border-radius: 22px;
    filter: blur(20px);
    opacity: 0.45;
    animation: floatAnim 7.5s ease-in-out infinite;
    pointer-events: none;
    transform-origin:center;
}

/* float animation */
@keyframes floatAnim {
    0% { transform: translateY(0px) rotate(0deg) scale(1); }
    45% { transform: translateY(-36px) rotate(6deg) scale(1.05); }
    100% { transform: translateY(0px) rotate(0deg) scale(1); }
}

.shape1 { width: 200px; height:200px; top:10%; left:8%; background: linear-gradient(180deg, rgba(255,79,79,0.22), rgba(177,45,45,0.12)); }
.shape2 { width:150px; height:150px; top:40%; right:12%; background: linear-gradient(180deg, rgba(177,45,45,0.16), rgba(255,79,79,0.06)); animation-delay:1.1s; }
.shape3 { width:220px; height:220px; bottom:-6%; left:40%; background: linear-gradient(180deg, rgba(189,78,56,0.16), rgba(255,79,79,0.06)); animation-delay:1.9s; }

/* ---------- SERVICES SECTION ---------- */
.services-section {
    padding: 120px 8%;
    text-align:center;
    background: transparent;
    color: var(--white);
}

/* Big Services Title */
.services-title {
    font-size: 72px;
    font-weight: 900;
    color: var(--white);
    letter-spacing:-1px;
    margin-bottom:12px;
    animation: slideUp 800ms ease-out both;
}

/* small tag */
.section-tag { color: var(--red-deep); letter-spacing:3px; font-weight:700; margin-bottom:12px; }

/* grid */
.services-grid {
    max-width: 1200px;
    margin: 60px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    justify-items: center;
}

/* SERVICE CARD - cleaner with soft red glow but no layout shift */
.service-card {
    width:100%;
    max-width:360px;
    padding: 36px 28px;
    background: rgba(255,255,255,0.02);
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.04);
    text-align:left;
    transition: transform 320ms cubic-bezier(.2,.9,.1,1), box-shadow 320ms, background 320ms;
    position:relative;
    overflow:hidden;
}

/* pseudo-element for soft border glow (doesn't move content) */
.service-card::before{
    content:"";
    position:absolute;
    inset:0;
    padding:2px;
    border-radius:inherit;
    pointer-events:none;
    background: linear-gradient(135deg, rgba(255,79,79,0.08), rgba(177,45,45,0.06));
    opacity:0;
    transition: opacity 240ms ease;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.service-card:hover::before{ opacity:1; }

/* hover lift */
.service-card:hover {
    transform: translateY(-8px) scale(1.01);
    background: rgba(255,255,255,0.03);
    box-shadow: 0 20px 60px rgba(177,45,45,0.08);
}

/* ICONS */
.icon-box {
    width:60px; height:60px; border-radius:14px;
    display:flex; align-items:center; justify-content:center; margin-bottom:18px;
}

/* use red-ish gradient for primary icon */
.icon1 { background: linear-gradient(135deg, var(--red-primary), var(--red-deep)); }
.icon2 { background: linear-gradient(135deg, #ff9b6a, #ff5f4a); }
.icon3 { background: linear-gradient(135deg, #ffd38a, #ff7b4a); }

.service-icon { font-size:26px; color:var(--white); }

/* Typography inside card */
.service-card h3 { font-size:28px; font-weight:800; color:var(--white); margin-bottom:12px; letter-spacing:-0.4px; }
.service-card p { color: var(--subtext); margin-bottom:18px; line-height:1.6; font-size:16px; }

/* bullets */
.service-card ul { list-style:none; padding-left:0; margin:0; }
.service-card ul li {
    font-size:15px; color: #efefef; margin-bottom:12px; padding-left:20px; position:relative;
}
.service-card ul li::before {
    content:"";
    width:8px; height:8px; border-radius:50%;
    background: var(--red-primary);
    position:absolute; left:0; top:7px;
    box-shadow:0 0 12px rgba(255,79,79,0.35);
}

/* ---------- WHY SECTION ---------- */
.why-section { width:100%; padding:120px 10%; text-align:center; color:var(--white); }
.why-badge { font-size:15px; color: var(--red-deep); letter-spacing:2px; margin-bottom:12px; font-weight:700; }
.why-title { font-size:4rem; font-weight:900; margin-bottom:10px; }
.why-subtext { font-size:1.1rem; opacity:0.85; margin-bottom:60px; }

/* why stats grid */
.why-stats {
    width:100%; max-width:950px; margin:0 auto 80px auto;
    display:grid; grid-template-columns: repeat(4,1fr); gap:20px; text-align:center;
}
.stat-box h3 {
    font-size:3rem; font-weight:700;
    background: linear-gradient(90deg, var(--red-primary), var(--red-deep));
    -webkit-background-clip:text; -webkit-text-fill-color:transparent;
}
.stat-box p { font-size:1rem; opacity:0.8; }

/* why features */
.why-features { display:grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap:30px; }
.why-card {
    background: rgba(255,255,255,0.02); border:1px solid rgba(255,255,255,0.04);
    padding:34px 28px; border-radius:18px; text-align:left; transition: transform 260ms, box-shadow 260ms;
    position:relative; overflow:hidden;
}
.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(177,45,45,0.08), 0 6px 18px rgba(0,0,0,0.4);
    border-color: rgba(177,45,45,0.25);
}

.icon-circle { width:60px; height:60px; border-radius:14px; display:flex; align-items:center; justify-content:center; margin-bottom:18px; font-size:28px; background: linear-gradient(135deg, #9122ff, var(--red-deep)); }
.why-card h4 { font-size:1.25rem; font-weight:800; margin-bottom:8px; }
.why-card p { opacity:0.78; line-height:1.6; }

/* ---------- PROJECTS ---------- */
.projects-section { background: transparent; padding: 60px 0 100px; color:var(--white); font-family: Inter, sans-serif; }
.container { width:90%; max-width:1300px; margin:auto; }
.subtitle { color: var(--red-deep); letter-spacing:2px; margin-bottom:8px; font-weight:700; }
.title { font-size:52px; font-weight:800; margin-bottom:34px; }
.title span { color: var(--red-primary); }

/* projects grid */
.projects-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap:34px; }
.project-card { position:relative; overflow:hidden; border-radius:18px; height:320px; cursor:pointer; transition: transform 350ms cubic-bezier(.2,.9,.2,1), box-shadow 350ms; }
.project-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(0,0,0,0.6); }

.project-card img { width:100%; height:100%; object-fit:cover; transition: transform 500ms ease, opacity 400ms ease; }
.project-card:hover img { transform: scale(1.06); opacity:0.85; }

.overlay { position:absolute; inset:0; background: linear-gradient(to top, rgba(10,5,5,0.72), transparent 30%); opacity:0; transition: opacity 320ms ease; }
.project-card:hover .overlay { opacity:1; }
.project-content { position:absolute; bottom:20px; left:20px; z-index:3; color:var(--white); }
.tag { color: var(--red-deep); margin-bottom:6px; font-weight:600; }

/* ---------- PRICING ---------- */
.pricing-section { background: transparent; padding:90px 0 120px; color:var(--white); font-family:Inter, sans-serif; }
.pricing-container { width:90%; max-width:1300px; margin:auto; text-align:center; }
.pricing-subtitle { color: var(--red-deep); font-size:14px; letter-spacing:2px; margin-bottom:10px; font-weight:700; }
.pricing-title { font-size:52px; font-weight:800; margin-bottom:12px; }
.pricing-title span { color: var(--red-primary); }
.pricing-desc { font-size:18px; color: var(--subtext); margin-bottom:70px; }

.pricing-grid { display:grid; grid-template-columns: repeat(3,1fr); gap:36px; }
.pricing-card { background: rgba(255,255,255,0.02); padding:36px; border-radius:20px; border:1px solid rgba(255,255,255,0.04); transition: transform 320ms, box-shadow 320ms; text-align:left; }
.pricing-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(0,0,0,0.5); }

.popular { border: 2px solid rgba(255,79,79,0.12); background: linear-gradient(180deg, rgba(10,10,10,0.6), rgba(9,7,7,0.8)); }
.popular-badge { position:absolute; top:-12px; left:50%; transform:translateX(-50%); background: var(--red-deep); color:#fff; padding:6px 18px; border-radius:20px; font-weight:700; }

/* ---------- FAQ ---------- */
.faq-section { background: transparent; padding:120px 0; color:var(--white); font-family:Inter, sans-serif; }
.faq-container { width:90%; max-width:1300px; margin:auto; display:grid; grid-template-columns: 1fr 1fr; gap:80px; }
.faq-subtitle { color: var(--red-deep); font-size:16px; letter-spacing:2px; font-weight:700; margin-bottom:10px; }
.faq-title { font-size:52px; font-weight:800; margin-bottom:20px; }
.faq-title span { color: var(--red-primary); }
.faq-desc { color: var(--subtext); font-size:18px; margin-bottom:40px; }

/* contact box */
.faq-contact-box { background: linear-gradient(135deg, rgba(255,79,79,0.06), rgba(177,45,45,0.04)); padding:30px; border-radius:12px; }
.faq-contact-box h4 { font-size:20px; font-weight:700; margin-bottom:6px; }
.faq-contact-box p { color: #f1f5f9; }

/* accordion */
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.03); padding:20px 0; }
.faq-question { display:flex; justify-content:space-between; align-items:center; font-size:20px; font-weight:600; color: #f8fafc; }
.faq-question:hover { color: var(--red-primary); }
.faq-answer { height:0; overflow:hidden; opacity:0; transition: height 260ms ease, opacity 240ms ease; color: #e6eef5; line-height:1.6; font-size:17px; }
.faq-item input:checked ~ .faq-answer { height:auto; opacity:1; margin-top:14px; }

/* ---------- CTA ---------- */
.cta-section { background: transparent; padding:140px 0; text-align:center; color:var(--white); }
.cta-title { font-size:64px; font-weight:900; margin-bottom:20px; }
.cta-title span { background: linear-gradient(90deg, var(--red-primary), var(--red-deep)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; }
.cta-subtitle { max-width:750px; margin: 0 auto 50px; color: var(--subtext); font-size:20px; }

/* CTA buttons - use same btn tokens */
.cta-btn-primary { padding:16px 38px; background: linear-gradient(90deg, var(--red-primary), var(--red-deep)); border-radius:40px; color:var(--white); font-weight:700; text-decoration:none; display:inline-block; }
.cta-btn-primary:hover { transform: translateY(-6px); box-shadow: 0 26px 50px rgba(177,45,45,0.12); }

/* contact boxes */
.cta-box { background: rgba(255,255,255,0.02); padding:32px; border-radius:16px; border:1px solid rgba(255,255,255,0.04); transition: transform 260ms, box-shadow 260ms; }
.cta-box:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.45); }

/* ---------- FOOTER ---------- */
.footer-section { background: linear-gradient(180deg, rgba(10,8,8,0.85), rgba(5,5,5,1)); color:var(--white); padding:80px 0 40px; border-top: 1px solid rgba(255,255,255,0.03); }
.footer-container { width:92%; max-width:1400px; margin:auto; display:flex; justify-content:space-between; gap:80px; flex-wrap:wrap; }
.footer-left { flex:1.2; min-width:260px; }
.footer-logo { width:160px; margin-bottom:20px; border-radius:6px; }
.footer-desc { color: var(--subtext); margin-bottom:24px; }
.footer-columns { flex:2; display:flex; gap:60px; justify-content:space-between; flex-wrap:wrap; }
.footer-col h4{ font-weight:700; margin-bottom:12px; }
.footer-col a{ color: var(--subtext); display:block; margin-bottom:10px; text-decoration:none; transition: color 180ms, transform 180ms; }
.footer-col a:hover{ color:var(--white); transform:translateX(6px); }

/* footer bottom */
.footer-bottom{ margin-top:60px; padding-top:30px; border-top:1px solid rgba(255,255,255,0.03); display:flex; justify-content:space-between; align-items:center; width:92%; max-width:1400px; margin-left:auto; margin-right:auto; flex-wrap:wrap; }
.footer-bottom p, .footer-bottom-links a{ color:var(--subtext); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) { .hero-title { font-size:64px; } .services-title { font-size:48px; } }
@media (max-width: 900px) { .nav-links{ display:none; } .hamburger{ display:flex; } .services-grid{ grid-template-columns: 1fr; } .projects-grid{ grid-template-columns:1fr; } .pricing-grid{ grid-template-columns:1fr; } .faq-container{ grid-template-columns:1fr; } }
@media (max-width: 768px) {
  .hero { padding: 120px 6% 100px; }
  .hero-title { font-size: 46px; line-height:1.06; }
  .gradient-text { font-size: 44px; }
  .badge { padding:8px 14px; font-size:13px; }
  .btn { width: 100%; }
  .projects-grid{ gap:24px; }
  .why-stats{ grid-template-columns: repeat(2,1fr); gap:18px; }
}
@media (max-width: 480px) {
  .hero-title { font-size:34px; }
  .gradient-text { font-size:30px; display:block; }
  .hero-subtext { font-size:16px; }
}

/* small helpful utilities */
.text-muted { color: var(--subtext); }

/* ---------- MAGNETIC HINT (CSS only fallback) ---------- */
/* If you want stronger magnetic behavior, add a GSAP mousemove handler in script.js */
.magnetic { transition: transform 220ms cubic-bezier(.2,.9,.2,1); }
.magnetic:hover { transform: translateY(-6px) scale(1.02); }

/* END of stylesheet */


/* --------------------------
   CLEAN PREMIUM HEADER FIXED
--------------------------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 0;
  background: rgba(10, 10, 10, 0.55);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 9999;
}

.header-container {
  width: 88%;
  max-width: 1400px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo img {
  height: 55px;
  width: auto;
  object-fit: contain;
  border-radius: 10px;
}

/* DESKTOP NAV */
.nav-links {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-links a {
  text-decoration: none;
  color: #d6d6d6;
  font-size: 16px;
  position: relative;
  transition: 0.3s;
}

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

/* underline effect */
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff4f4f;
  transition: 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* BUTTON */
.talk-btn {
  background: linear-gradient(90deg, #ff4f4f, #b12d2d);
  padding: 12px 26px;
  border-radius: 30px;
  color: #fff;
  font-weight: 600;
  border: none;
  transition: 0.3s ease;
}

.talk-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(255, 79, 79, 0.35);
}

/* HAMBURGER */
.hamburger {
  display: none;
  width: 28px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  background: white;
  border-radius: 5px;
}

/* MOBILE NAV */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(10,10,10,0.95);
  padding: 22px;
}

.mobile-nav.active {
  display: flex !important;
}

.mobile-nav a {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: white;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links {
      display: none;
  }
  .hamburger {
      display: flex;
  }
}

:root{
  --red-primary: #FF4F4F;
  --red-deep:    #B12D2D;
  --black-base:  #0A0505;
  --black-grad-1:#120808;
  --white:       #FFFFFF;
  --subtext:     #B7B7B7;
  --glass:       rgba(255,255,255,0.03);
  --transition: 250ms;
}

/* ---------- GLOBAL (keep your resets if present) ---------- */
*{box-sizing:border-box}
body{background:linear-gradient(180deg,var(--black-grad-1),var(--black-base)); color:var(--white); font-family:Inter,system-ui,Arial;}

/* ---------------- HEADER ---------------- */
.site-header{
  position:fixed; top:0; left:0; width:100%; z-index:9999;
  background: linear-gradient(180deg, rgba(10,10,10,0.6), rgba(10,10,10,0.2));
  backdrop-filter: blur(8px);
  border-bottom:1px solid rgba(255,255,255,0.03);
  padding:14px 0;
}
.header-container{ width:92%; max-width:1400px; margin:0 auto; display:flex; align-items:center; justify-content:space-between; gap:18px; }
.logo img{ height:50px; display:block; object-fit:contain; border-radius:8px; }

/* nav */
.nav-links{ display:flex; gap:30px; align-items:center; }
.nav-links a{ color:var(--subtext); text-decoration:none; font-size:16px; position:relative; transition: color var(--transition); }
.nav-links a:hover{ color:var(--white); }
.nav-links a::after{ content:""; position:absolute; left:0; bottom:-6px; width:0; height:2px; background:linear-gradient(90deg,var(--red-primary),var(--red-deep)); transition:width 240ms; }
.nav-links a:hover::after{ width:100%; }

/* talk btn */
.talk-btn{ background: linear-gradient(90deg,var(--red-primary),var(--red-deep)); color:var(--white); padding:10px 22px; border-radius:28px; border:none; font-weight:700; box-shadow:0 10px 30px rgba(177,45,45,0.12); transition: transform var(--transition); }
.talk-btn:hover{ transform:translateY(-3px); box-shadow:0 18px 44px rgba(177,45,45,0.18); }

/* mobile */
.hamburger{ display:none; width:34px; height:22px; flex-direction:column; justify-content:space-between; cursor:pointer; }
.hamburger span{ display:block; height:3px; width:100%; background:#fff; border-radius:4px; }

/* mobile nav */
.mobile-nav{ display:none; flex-direction:column; gap:10px; background: rgba(10,10,10,0.96); padding:20px; position:relative; top:0; }
.mobile-nav a{ color:#eee; padding:10px 0; text-decoration:none; border-bottom:1px solid rgba(255,255,255,0.04); }
.mobile-nav.active{ display:flex !important; }

/* ---------------- HERO ---------------- */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:160px 6% 120px;
  overflow:hidden;
  background: radial-gradient(1000px 400px at 50% 20%, rgba(177,45,45,0.04), transparent 10%), linear-gradient(180deg,var(--black-grad-1),var(--black-base));
}

/* canvas covers hero */
#hero-canvas{
  position:absolute; inset:0; width:100%; height:100%; z-index:1; pointer-events:none;
}

/* content sits above canvas */
.hero-content{ position:relative; z-index:5; max-width:1000px; text-align:center; padding:40px; }

/* badge */
.badge{ display:inline-block; padding:10px 20px; border-radius:30px; background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.06); color:var(--white); font-weight:600; letter-spacing:1px; }

/* title */
.hero-title{ font-size:86px; line-height:0.95; margin:18px 0; font-weight:900; color:var(--white); text-shadow: 0 8px 40px rgba(177,45,45,0.03); }
.gradient-text{ background:linear-gradient(90deg,var(--red-primary),var(--red-deep)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; display:inline-block; }

/* subtext */
.hero-subtext{ margin-top:20px; font-size:20px; max-width:720px; color:var(--subtext); line-height:1.6; }

/* buttons */
.hero-buttons{ margin-top:32px; display:flex; gap:18px; justify-content:center; z-index:6; }
.btn{ padding:12px 28px; border-radius:30px; font-weight:700; cursor:pointer; border:none; }
.primary{ background:linear-gradient(90deg,var(--red-primary),var(--red-deep)); color:var(--white); box-shadow:0 12px 48px rgba(177,45,45,0.12); transition:transform 220ms; }
.primary:hover{ transform:translateY(-6px) scale(1.03); box-shadow:0 20px 70px rgba(177,45,45,0.18); }
.outline{ background:transparent; border:1px solid rgba(255,255,255,0.08); color:var(--white); }
.outline:hover{ background:rgba(255,79,79,0.06); border-color:rgba(255,79,79,0.14); }

/* shapes */
.shape{ position:absolute; border-radius:18px; filter:blur(18px); opacity:0.5; z-index:3; pointer-events:none; transform-origin:center; }
.shape1{ width:200px; height:200px; top:10%; left:6%; background: linear-gradient(180deg, rgba(255,79,79,0.22), rgba(177,45,45,0.12)); }
.shape2{ width:150px; height:150px; top:38%; right:10%; background: linear-gradient(180deg, rgba(177,45,45,0.18), rgba(255,79,79,0.06)); }
.shape3{ width:220px; height:220px; bottom:-6%; left:40%; background: linear-gradient(180deg, rgba(189,78,56,0.14), rgba(255,79,79,0.06)); }

/* parallax simple animation fallback */
.parallax{ animation: floatAnim 7s ease-in-out infinite; }
@keyframes floatAnim{ 0%{ transform: translateY(0) } 50%{ transform: translateY(-36px)} 100%{ transform: translateY(0)} }

/* responsive */
@media (max-width: 1100px){ .hero-title{ font-size:64px;} }
@media (max-width: 768px){
  .nav-links{ display:none; }
  .hamburger{ display:flex; }
  .hero{ padding:120px 6% 100px; }
  .hero-title{ font-size:48px; }
  .gradient-text{ font-size:44px; display:block; }
  .hero-subtext{ font-size:17px; }
  .hero-buttons{ flex-direction:column; width:100% }
  .btn{ width:100% }
}
@media (max-width:420px){
  .hero-title{ font-size:34px; }
  .gradient-text{ font-size:30px; }
}

/* utilities */
.magnetic{ transition: transform 280ms cubic-bezier(.2,.9,.2,1); }

/* cursor styles (keep or adapt to your global) */
.cursor{ position:fixed; width:12px; height:12px; border-radius:50%; background:var(--red-primary); transform:translate(-50%,-50%); pointer-events:none; z-index:99999; mix-blend-mode:normal; box-shadow:0 0 10px rgba(255,79,79,0.5); }
.cursor-ring{ position:fixed; width:44px; height:44px; border-radius:50%; border:2px solid rgba(255,79,79,0.22); transform:translate(-50%,-50%); pointer-events:none; z-index:99998; }


/* Background glow */
.services-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255,50,50,0.2), transparent 70%);
  filter: blur(150px);
  z-index: 0;
}

/* Section */
.services-section {
  position: relative;
  padding: 150px 8%;
  text-align: center;
  background: #0a0a0c;
  overflow: hidden;
}

/* Title */
.services-title {
  font-size: 70px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  position: relative;
  z-index: 2;
}

/* Grid */
.services-grid {
  position: relative;
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  z-index: 2;
}

/* Service Card */
.service-card {
  background: rgba(255,255,255,0.04);
  padding: 45px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

/* Glow Border */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,70,70,0.9), rgba(120,30,30,0.8));
  opacity: 0;
  transition: 0.4s ease;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
}

.service-card:hover::before {
  opacity: 1;
}

/* Card Hover */
.service-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 50px rgba(255,50,50,0.25);
}

/* Icon Box */
.icon-box {
  width: 70px;
  height: 70px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 35px;
  color: #fff;
}

.icon1 { background: linear-gradient(135deg, #ff4f4f, #b12d2d); }
.icon2 { background: linear-gradient(135deg, #ff4f4f, #dd3a3a); }
.icon3 { background: linear-gradient(135deg, #ff4f4f, #cc2f2f); }

/* Text */
.service-card h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 16px;
  color: #d9d9d9;
  line-height: 1.6;
}

/* List */
.service-card li {
  font-size: 15px;
  color: #f0f0f0;
  margin-bottom: 10px;
  padding-left: 18px;
  position: relative;
}

.service-card li::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #ff4f4f;
  position: absolute;
  left: 0;
  top: 7px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255,40,40,0.9);
}

/* Tilt Effect */
.service-tilt {
  transform: perspective(600px) rotateX(0deg) rotateY(0deg);
  transition: transform 0.25s ease;
}

/* ================================
   SERVICES SECTION – ANIMATIONS (NO JS)
================================ */

/* Reveal Animation */
@keyframes fadeUp {
  0% {
      opacity: 0;
      transform: translateY(40px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Apply to items */
.services-section .section-tag,
.services-title,
.services-subtext,
.service-card {
  opacity: 0;
  animation: fadeUp 1s ease forwards;
}

/* Delay each */
.services-section .section-tag {
  animation-delay: 0.1s;
}
.services-title {
  animation-delay: 0.2s;
}
.services-subtext {
  animation-delay: 0.35s;
}
.service-card:nth-child(1) {
  animation-delay: 0.4s;
}
.service-card:nth-child(2) {
  animation-delay: 0.55s;
}
.service-card:nth-child(3) {
  animation-delay: 0.7s;
}

/* ================================
 HOVER EFFECTS (NO JS)
================================ */

/* Neon Glow Hover */
.service-card {
  transition: 0.35s ease;
  cursor: pointer;
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 0 30px rgba(255, 60, 60, 0.35),
              inset 0 0 10px rgba(255, 60, 60, 0.2);
  border-color: rgba(255, 70, 70, 1);
}

/* Glow Border */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, rgba(255,50,50,0.9), rgba(180,20,20,0.7));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: 0.35s ease;
}

.service-card:hover::before {
  opacity: 1;
}

/* ================================
 CSS-ONLY Tilt Effect (2D)
================================ */

.service-card:hover {
  transform: translateY(-10px) rotateX(3deg) rotateY(3deg) scale(1.03);
}

/* Smooth Back on Leave */
.service-card {
  transform-style: preserve-3d;
}

/* ================================
   RESPONSIVE — MOBILE (max 768px)
================================ */
@media (max-width: 768px) {

  .services-section {
      padding: 100px 5%;
  }

  .services-title {
      font-size: 40px;
      line-height: 1.2;
  }

  .services-subtext {
      font-size: 16px;
      padding: 0 10px;
  }

  .services-grid {
      grid-template-columns: 1fr;
      gap: 25px;
  }

  .service-card {
      padding: 28px;
  }

  .icon-box {
      width: 60px;
      height: 60px;
      font-size: 28px;
  }

  .service-card h3 {
      font-size: 24px;
  }

  .service-card p,
  .service-card li {
      font-size: 15px;
  }
}

/* ================================
   RESPONSIVE — TABLET (max 992px)
================================ */
@media (max-width: 992px) {

  .services-section {
      padding: 120px 6%;
  }

  .services-title {
      font-size: 50px;
      line-height: 1.2;
  }

  .services-subtext {
      font-size: 17px;
      max-width: 550px;
      margin: auto;
  }

  .services-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
      margin-top: 50px;
  }

  .service-card {
      padding: 35px;
  }
}
/* ============================================
   RESPONSIVE — SMALL MOBILE (max 480px)
============================================== */
@media (max-width: 480px) {

  .services-section {
      padding: 80px 4%;
  }

  .services-title {
      font-size: 32px;
      line-height: 1.3;
      text-align: center;
  }

  .services-subtext {
      font-size: 15px;
      text-align: center;
  }

  .service-card {
      padding: 25px 22px;
      border-radius: 18px;
  }

  .icon-box {
      width: 52px;
      height: 52px;
      font-size: 24px;
      margin-bottom: 15px;
  }

  .service-card h3 {
      font-size: 22px;
  }

  .service-card p {
      font-size: 14px;
  }

  .service-card li {
      font-size: 14px;
  }
}
/* ============================================
   PERFECT MOBILE FIX (max-width: 768px)
=============================================== */
@media (max-width: 768px) {

  .services-section {
      padding: 70px 4% !important;
  }

  .services-grid {
      display: grid !important;
      grid-template-columns: 1fr !important;
      gap: 22px !important;
      width: 100%;
  }

  .service-card {
      width: 100% !important;
      max-width: 100% !important;
      padding: 24px 20px !important;
      border-radius: 18px !important;
      margin: 0 auto;
      transform: none !important;
  }

  .icon-box {
      width: 52px !important;
      height: 52px !important;
      margin-bottom: 14px !important;
  }

  .service-card h3 {
      font-size: 22px !important;
      line-height: 1.2;
  }

  .service-card p {
      font-size: 15px !important;
      line-height: 1.55;
      margin-bottom: 18px !important;
  }

  .service-card ul li {
      font-size: 15px !important;
      padding-left: 16px !important;
      margin-bottom: 10px !important;
  }

  /* bullet size reduce */
  .service-card ul li::before {
      width: 6px !important;
      height: 6px !important;
      top: 7px !important;
  }

  /* disable magnetic on mobile (fixes shifting issue) */
  .magnetic {
      transform: none !important;
  }
}

/* ============================================
   WHY SECTION — PREMIUM RED & BLACK THEME
=============================================== */

.why-section {
  width: 100%;
  padding: 140px 8%;
  text-align: center;
  color: #fff;
  position: relative;
}

/* Badge */
.why-badge {
  font-size: 15px;
  color: #ff4f4f;
  letter-spacing: 3px;
  margin-bottom: 10px;
  font-weight: 600;
}

/* Title */
.why-title {
  font-size: 60px;
  font-weight: 800;
  margin-bottom: 12px;
}

.why-title .gradient-text {
  background: linear-gradient(90deg, #ff4f4f, #ff8b8b, #ffffff);
  -webkit-background-clip: text;
  color: transparent;
}

/* Subtext */
.why-subtext {
  font-size: 20px;
  opacity: .8;
  margin-bottom: 60px;
}

/* ======================
 STATS SECTION
====================== */
.why-stats {
  max-width: 1100px;
  margin: 0 auto 80px auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  text-align: center;
}

.stat-box {
  padding: 20px;
  transition: 0.3s ease;
  border-radius: 14px;
}

.stat-box h3 {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(90deg, #ff4f4f, #ff8080);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-box p {
  font-size: 16px;
  opacity: .75;
}

/* Stat hover */
.stat-box:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 10px 30px rgba(255, 50, 50, 0.15);
}

/* ======================
 FEATURES GRID
====================== */
.why-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 30px;
}

/* Feature Card */
.why-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 35px 28px;
  border-radius: 20px;
  text-align: left;
  transition: all .35s ease;
  cursor: none;
  position: relative;
  overflow: hidden;
}

/* Glow border */
.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 20px;
  background: linear-gradient(135deg, #ff4f4f, #ff8080);
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
  mask: 
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
}

/* Hover effect */
.why-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 25px rgba(255, 50, 50, 0.2);
}

.why-card:hover::before {
  opacity: 1;
}

/* Icon */
.icon-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff4f4f, #ff7a7a);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 18px;
}

/* Text */
.why-card h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 16px;
  opacity: .8;
  line-height: 1.65;
}

/* ======================
 ANIMATIONS (CSS ONLY)
====================== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Each card slight delay */
.why-card:nth-child(1) { animation-delay: .15s; }
.why-card:nth-child(2) { animation-delay: .25s; }
.why-card:nth-child(3) { animation-delay: .35s; }
.why-card:nth-child(4) { animation-delay: .45s; }
.why-card:nth-child(5) { animation-delay: .55s; }
.why-card:nth-child(6) { animation-delay: .65s; }

/* ======================
 MOBILE RESPONSIVE
====================== */
@media (max-width: 900px) {
  .why-title { font-size: 42px; }
  .why-subtext { font-size: 18px; }

  .why-stats {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
  }
}

@media (max-width: 600px) {
  .why-section {
      padding: 80px 5%;
  }

  .why-title {
      font-size: 32px;
  }

  .why-stats {
      grid-template-columns: 1fr;
      gap: 25px;
  }

  .why-features {
      grid-template-columns: 1fr;
      gap: 20px;
  }

  .why-card {
      padding: 28px 22px;
  }

  .icon-circle {
      width: 50px;
      height: 50px;
      font-size: 24px;
  }

  /* Disable magnetic on mobile */
  .magnetic {
      transform: none !important;
  }
}
/* WHY SECTION FIXED SPACING + DEPTH */
.why-section {
  width: 100%;
  padding: 100px 8% 80px; /* reduced top & bottom */
  text-align: center;
  color: #fff;
  position: relative;

  /* subtle gradient background */
  background: radial-gradient(circle at center,
      rgba(255, 60, 60, 0.12) 0%,
      rgba(0, 0, 0, 1) 70%
  );
}

/* Badge */
.why-badge {
  font-size: 14px;
  color: #ff4f4f;
  letter-spacing: 3px;
  margin-bottom: 10px;
  font-weight: 600;
}

/* Title */
.why-title {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 10px;
}

/* Subtext */
.why-subtext {
  font-size: 19px;
  opacity: .85;
  margin-bottom: 40px; /* reduced gap */
}

/* ======================
 STATS — FIXED SPACING
====================== */
.why-stats {
  max-width: 900px;
  margin: 0 auto;
  margin-top: 20px; /* stats move closer */
  margin-bottom: 50px; /* reduce empty space */
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.stat-box h3 {
  font-size: 46px;
  font-weight: 800;
  background: linear-gradient(90deg, #ff4f4f, #ff8080);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ======================
 RESPONSIVE FIX
====================== */
@media (max-width: 900px) {
  .why-title { font-size: 42px; }
  .why-subtext { font-size: 17px; }
}

@media (max-width: 700px) {
  .why-section {
      padding: 80px 6% 60px;
  }

  .why-stats {
      flex-direction: column;
      text-align: center;
      gap: 25px;
      margin-bottom: 30px; /* tighter spacing */
  }

  .stat-box h3 { font-size: 38px; }
}

/* ======================================================
   PRICING SECTION — PREMIUM RED & BLACK THEME
   (No JS Animation — CSS Only)
====================================================== */

.pricing-section {
  padding: 120px 8%;
  color: #fff;
  text-align: center;
}

/* Subheading */
.pricing-subtitle {
  font-size: 15px;
  color: #ff4f4f;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Title */
.pricing-title {
  font-size: 50px;
  font-weight: 800;
  margin-bottom: 15px;
}

.pricing-title span {
  background: linear-gradient(90deg, #ff4f4f, #ff9999);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Description */
.pricing-desc {
  max-width: 550px;
  margin: 0 auto 70px;
  font-size: 18px;
  opacity: 0.8;
}

/* Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* Each Card */
.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 79, 79, 0.18);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: left;
  position: relative;
  transition: 0.4s ease;
  transform: translateY(40px);
  opacity: 0;
  animation: fadeUp 1s ease forwards;
}

/* Fade-up animation */
@keyframes fadeUp {
  to {
      transform: translateY(0);
      opacity: 1;
  }
}

/* Delay effect — CSS only */
.pricing-card:nth-child(1) { animation-delay: 0.2s; }
.pricing-card:nth-child(2) { animation-delay: 0.35s; }
.pricing-card:nth-child(3) { animation-delay: 0.5s; }

/* Hover effect */
.pricing-card:hover {
  transform: translateY(-10px);
  border-color: #ff4f4f;
  box-shadow: 0 0 25px rgba(255, 79, 79, 0.25);
}

/* Most Popular Badge */
.popular {
  background: rgba(255, 79, 79, 0.08);
  border: 1px solid rgba(255, 79, 79, 0.5);
  transform: scale(1.04);
}

.popular .popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff4f4f;
  color: #fff;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Icons */
.pricing-icon {
  font-size: 50px;
  margin-bottom: 10px;
}

/* Title */
.pricing-card h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Description */
.card-desc {
  font-size: 16px;
  opacity: 0.8;
  margin-bottom: 20px;
}

/* Price */
.price {
  font-size: 34px;
  font-weight: 800;
  margin: 15px 0;
}

.price span {
  color: #ff4f4f;
}

/* Features List */
.pricing-features {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-features li {
  padding: 8px 0;
  font-size: 16px;
  opacity: 0.85;
  display: flex;
  align-items: center;
}

.pricing-features li::before {
  content: "•";
  color: #ff4f4f;
  font-size: 22px;
  margin-right: 10px;
}

/* Button */
.pricing-btn,
.pro-btn {
  display: inline-block;
  width: 100%;
  padding: 14px 0;
  margin-top: 25px;
  text-align: center;
  background: #ff4f4f;
  color: #fff;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 600;
  transition: 0.3s ease;
}

.pricing-btn:hover,
.pro-btn:hover {
  background: #ff1f1f;
}

/* ==============================
 RESPONSIVE
=============================== */
@media (max-width: 992px) {
  .pricing-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .pricing-title {
      font-size: 38px;
  }

  .pricing-grid {
      grid-template-columns: 1fr;
  }
}

/* Colors */
:root {
  --text-light: #ffffff;
  --text-muted: #bbbbbb;
  --highlight: #ff4b4b;
  --bg-dark: #0b0b0b;
  --card-dark: #151515;
}

/* Section */
.faq-section {
  padding: 80px 20px;
  background: var(--bg-dark);
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
}

.faq-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* Left Side */
.faq-left {
  flex: 1;
}

.faq-subtitle {
  color: var(--highlight);
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.faq-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

.faq-title span {
  color: var(--highlight);
}

.faq-desc {
  margin-top: 15px;
  color: var(--text-muted);
  max-width: 360px;
}

.faq-contact-box {
  margin-top: 40px;
  padding: 25px;
  border-radius: 14px;
  background: linear-gradient(145deg, #1d1d1d, #111);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.3s ease;
}

.faq-contact-box:hover {
  border-color: var(--highlight);
  box-shadow: 0 0 25px rgba(255, 75, 75, 0.2);
}

/* Right Side Accordion */
.faq-right {
  flex: 1;
}

.faq-item {
  margin-bottom: 18px;
  padding: 20px 24px;
  background: var(--card-dark);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.3s ease;
}

.faq-item:hover {
  border-color: var(--highlight);
  box-shadow: 0 0 20px rgba(255, 75, 75, 0.15);
}

/* Hide checkbox */
.faq-item input {
  display: none;
}

/* Question Row */
.faq-question {
  font-size: 18px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
}

/* + icon animation */
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  right: 0;
  width: 14px;
  height: 2px;
  background: var(--text-light);
  top: 50%;
  transition: 0.3s ease;
}

.faq-icon::after {
  transform: rotate(90deg);
}

/* Rotate when open */
.faq-item input:checked ~ .faq-question .faq-icon::after {
  transform: rotate(0deg);
}

/* Answer animation */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  color: var(--text-muted);
  padding-left: 2px;
  transition: all 0.4s ease;
}

/* Expand when checked */
.faq-item input:checked ~ .faq-answer {
  max-height: 200px;
  opacity: 1;
  margin-top: 12px;
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .faq-container {
    flex-direction: column;
  }

  .faq-title {
    font-size: 36px;
  }
}

/* Root Colors */
:root {
  --highlight: #ff4b4b;
  --text-light: #fff;
  --text-muted: #bbbbbb;
}

/* SECTION */
.cta-section {
  padding: 90px 20px;
  text-align: center;
  background: #0b0b0b;
  position: relative;
  overflow: hidden;
}

/* Soft glow background orb */
.cta-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 75, 75, 0.25), transparent 70%);
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(80px);
  animation: floatGlow 6s ease-in-out infinite alternate;
}

@keyframes floatGlow {
  from { transform: translateX(-50%) translateY(0px); }
  to   { transform: translateX(-50%) translateY(20px); }
}

/* Title */
.cta-title {
  font-size: 52px;
  color: var(--text-light);
  font-weight: 700;
}

.cta-title span {
  color: var(--highlight);
}

/* Subtitle */
.cta-subtitle {
  color: var(--text-muted);
  max-width: 600px;
  margin: 18px auto 40px;
  font-size: 18px;
}

/* BUTTONS */
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 50px;
}

.cta-btn-primary {
  padding: 14px 32px;
  background: var(--highlight);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s ease;
}

.cta-btn-primary:hover {
  background: #ff6565;
  box-shadow: 0 0 20px rgba(255, 75, 75, 0.5);
}

.cta-btn-secondary {
  color: var(--highlight);
  font-weight: 500;
  padding: 14px 24px;
  border-bottom: 1px solid transparent;
  transition: 0.3s ease;
}

.cta-btn-secondary:hover {
  border-bottom: 1px solid var(--highlight);
}

/* CONTACT BOXES */
.cta-box-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  flex-wrap: wrap;
}

.glass {
  background: rgba(255, 255, 255, 0.05);
  padding: 28px 28px;
  border-radius: 16px;
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  flex: 1;
  min-width: 260px;
  transition: 0.4s ease;
  animation: fadeUp 1.1s ease forwards;
  transform: translateY(30px);
  opacity: 0;
}

.glass:hover {
  transform: translateY(-8px);
  border-color: var(--highlight);
  box-shadow: 0 0 25px rgba(255, 75, 75, 0.2);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

/* Icon */
.cta-icon {
  font-size: 32px;
  margin-bottom: 10px;
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}

.cta-box h4 {
  margin-top: 8px;
  color: var(--text-light);
  font-size: 20px;
}

.cta-box p {
  margin-top: 4px;
  color: var(--text-muted);
}

/* MOBILE RESPONSIVE */
@media (max-width: 850px) {
  .cta-title {
    font-size: 38px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-btn-primary,
  .cta-btn-secondary {
    width: 100%;
    text-align: center;
  }

  .cta-box-wrapper {
    flex-direction: column;
  }
}

.cta-btn-secondary {
  color: var(--highlight);
  font-weight: 500;
  padding: 14px 24px;
  border-bottom: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px; /* matches the primary button height */
  margin-top: 0; 
  transition: 0.3s ease;
}

.cta-btn-secondary:hover {
  border-bottom: 1px solid var(--highlight);
}


/* =======================================
   FOOTER STYLING — GLASSY + ANIMATED
======================================= */

.footer-section {
  padding: 80px 40px 30px;
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
  color: #fff;
}

/* Floating radial glow */
.footer-section::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(255,70,70,0.25), transparent 70%);
  top: -100px;
  right: -100px;
  filter: blur(120px);
  animation: footer-glow 6s ease-in-out infinite alternate;
}

@keyframes footer-glow {
  from { transform: translateY(0px); }
  to   { transform: translateY(20px); }
}

/* Layout */
.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

/* Left Section */
.footer-left {
  max-width: 340px;
}

.footer-logo {
  width: 130px;
  margin-bottom: 20px;
  border-radius: 12px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  50% { transform: translateY(-6px); }
}

.footer-desc {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 22px;
}

/* SOCIAL ICONS */
.footer-social a {
  color: #fff;
  font-size: 18px;
  margin-right: 14px;
  transition: 0.3s ease;
  display: inline-flex;
  width: 38px;
  height: 38px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(6px);
}

.footer-social a:hover {
  background: rgba(255,75,75,0.3);
  box-shadow: 0 0 15px rgba(255,75,75,0.4);
  transform: translateY(-3px);
}

/* Columns */
.footer-columns {
  display: flex;
  gap: 70px;
  flex-wrap: wrap;
}

.footer-col h4 {
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 600;
}

.footer-col a {
  display: block;
  margin-bottom: 12px;
  color: #bfbfbf;
  font-size: 15px;
  transition: 0.3s ease;
  position: relative;
}

.footer-col a:hover {
  color: #ff4b4b;
  padding-left: 6px;
}

/* Animated underline */
.footer-col a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: #ff4b4b;
  transition: 0.3s ease;
}

.footer-col a:hover::after {
  width: 100%;
}

/* BOTTOM BAR */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #bfbfbf;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  margin-left: 15px;
  color: #bfbfbf;
  transition: 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #ff4b4b;
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    gap: 40px;
  }

  .footer-columns {
    flex-direction: column;
    gap: 35px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-bottom-links a {
    margin-left: 10px;
  }
}
/* Pricing Section */
.pricing-section {
  padding: 80px 20px;
  background: #0b0b0b;
  color: #fff;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.pricing-subtitle {
  color: #ff5b5b;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 10px;
}

.pricing-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.pricing-title span {
  color: #ff5252;
}

.pricing-desc {
  max-width: 500px;
  margin: 0 auto 50px;
  color: #ccc;
  font-size: 15px;
  line-height: 1.6;
}

/* GRID */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  justify-content: center;
  align-items: stretch;
}

/* CARD */
.pricing-card {
  background: #161616;
  padding: 35px 30px;
  border-radius: 20px;
  border: 1px solid #2a2a2a;
  transition: 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: #ff4d4d;
}

.pricing-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

/* Popular (middle card highlight) */
.popular {
  background: #1e1e1e;
  border: 2px solid #ff5050;
  transform: scale(1.03);
}

.popular-badge {
  background: #ff4e4e;
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}

/* Price */
.price {
  font-size: 32px;
  font-weight: 600;
  margin: 20px 0;
}

.price span {
  color: #ff4c4c;
  font-weight: 700;
}

.price small {
  font-size: 14px;
  color: #bbb;
}

/* List */
.pricing-features {
  text-align: left;
  margin: 25px 0;
  line-height: 1.7;
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.pricing-features li {
  margin-bottom: 10px;
}

/* Button */
.pricing-btn {
  display: inline-block;
  width: 100%;
  background: #ff4b4b;
  color: white;
  padding: 14px 0;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.pricing-btn:hover {
  background: #ff2727;
}

/* Special Button (middle card) */
.pro-btn {
  background: #ff4040;
}
/* Smooth floating hover (NO JS) */
.service-card {
  transition: 
    transform 0.4s ease,
    box-shadow 0.4s ease;
  transform-style: preserve-3d;
}

/* Hover effect */
.service-card:hover {
  transform: translateY(-12px) scale(1.03) rotateX(2deg) rotateY(2deg);
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

/* Optional: soften it on mobile */
@media (max-width: 768px) {
  .service-card:hover {
    transform: translateY(-8px) scale(1.02);
  }
}
