@font-face {
    font-family: 'Dot-Font';
    src: url('../fonts/dot-font/dot-font.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  body {
    font-family: Inter, system-ui, sans-serif;
    color: #fff;
  }
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Header */
  .site-header {
    position: relative;
    background: #fff; /* if you’d like a white bar */
    z-index: 50;
  }
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
  }
  .logo {
    font-weight: 100;
    font-size: 2rem;
    color: #2663ea;
    text-decoration: none;
    font-family: 'Dot-Font', sans-serif;
  }
  
  /* Nav & Toggle */
  .nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.75rem;
    cursor: pointer;
    color: #2663ea;
  }
  .nav {
    display: block;
  }
  .nav-list {
    list-style: none;
    display: flex;
    gap: 1.5rem;
  }
  .nav-list a {
    text-decoration: none;
    color: #334155;
    font-size: 0.9rem;
  }
  
  /* Dropdown */
  .nav-list .dropdown {
    position: relative;
  }
  .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 0.5rem 0;
    list-style-type: none;
  }
  .dropdown:hover .dropdown-menu,
  .dropdown-menu:hover {
    display: block;
  }
  .dropdown-menu li + li {
    margin-top: 0.25rem;
  }
  .dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: #334155;
  }
  .dropdown-menu a:hover {
    background: rgba(0,0,0,0.05);
  }
  
  /* Buttons */
  .btn {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.1s, background 0.2s;
  }
  .btn-primary {
    background: #2663ea;
    color: #fff;
  }
  .btn-primary:hover {
    transform: translateY(-1px);
    background: #2a6bf8;
  }
  .btn-secondary {
    border: 1px solid #ffffff;
    color: #ffffff;
  }
  .btn-secondary:hover {
    background: rgba(51,65,85,0.1);
  }
  .btn-buy {
    background: #2663ea;
    color: #fff;
  }
  .btn-buy:hover {
    opacity: 0.9;
  }
  
  /* Hero */
  .hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #2663ea 0%, #651fff 100%);
    padding: 4rem 0;
  }
  .hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    height: 70vh;
  }
  .hero-text {
    flex: 1 1 400px;
    max-width: 500px;
  }
  .hero-text h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  .hero-text p {
    opacity: 0.8;
    margin-bottom: 2rem;
    line-height: 1.6;
  }
  .hero-buttons {
    display: flex;
    gap: 1rem;
  }
  .hero-image img {
    max-width: 100%;
    border-radius: 0.5rem;
  }
  
  /* SVG Wave */
  .wave-svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    pointer-events: none;
  }
  
  /* Services Section */
  .services-section {
    background: #f1f5f9;
    color: #1e293b;
    padding: 4rem 0;
  }
  .services-heading {
    text-align: center;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 0.5rem;
  }
  .services-subheading {
    text-align: center;
    font-size: 1.5rem;
    margin: 0 auto 3rem;
    max-width: 600px;
  }
  .services-grid {
    display: grid;
    gap: 2rem;
  }
  @media (min-width: 640px) {
    .services-grid {
      grid-template-columns: repeat(2,1fr);
    }
  }

    @media (max-width: 1200px) {
        .hero-inner{
            height: fit-content;
        }

  }
  @media (min-width: 1024px) {
    .services-grid {
      grid-template-columns: repeat(3,1fr);
    }
  }
  .service-card {
    display: block;
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 8px 16px rgba(0,0,0,0.08);
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    color: inherit;
  }
  .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
  }
  .service-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: grid;              /* ← grid centering */
    place-items: center;        /* ← both axes */
    background: var(--your-color);
  }
  .service-icon svg {
    width: 32px;
    height: 32px;
  }
  .service-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  .service-text {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
  }
  .service-icon--green  { background: #a7f3d0; }
  .service-icon--red    { background: #fecaca; }
  .service-icon--yellow { background: #fde68a; }
  .service-icon--purple { background: #e9d5ff; }
  .service-icon--blue   { background: #bfdbfe; }
  .service-icon--orange { background: #fed7aa; }
  
  /* Mobile Nav */
  @media (max-width: 767px) {
    .nav-toggle {
      display: inline-block;
    }
    .nav {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background: #fff;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      z-index: 40;
    }
    .site-header.nav-open .nav {
      display: block;
    }
    .nav-list {
      flex-direction: column;
      gap: 0;
    }
    .nav-list li {
      border-bottom: 1px solid #eee;
    }
    .nav-list li:last-child {
      border-bottom: none;
    }
    .nav-list a {
      display: block;
      padding: 1rem;
      color: #1e293b;
    }
    .nav-list a:hover {
      background: rgba(0,0,0,0.05);
    }
  }
  
/* container & positioning (unchanged) */
#koala-container {
    position: relative;
    display: inline-block;
    width: 400px;
  }
  
  #koala-container img {
    display: block;
    max-width: 100%;
    height: auto;
    user-select: none;
    pointer-events: none;
  
    /* make the image sit above the eye whites */
    position: relative;
    z-index: 2;
  }
  
  /* eye whites – behind img */
  .eye {
    position: absolute;
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 50%;
    pointer-events: none;
  
    /* sit under the PNG */
    z-index: 1;
  }
  
  /* pupils – above everything */
  .pupil {
    position: absolute;
    width: 16px;
    height: 16px;
    background: #000;
    border-radius: 50%;
    pointer-events: none;
  
    /* highest layer */
    z-index: 3;
  }
  
/* screen‐flash glows */
#glow-screen-top{
  position: absolute;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0;
  animation: pulseGlow 2s infinite ease-in-out;
  z-index: 2; /* sits above the img but below .pupil (z‑index:3) */
}

/* top edge of the laptop screen */
#glow-screen-top {
  /* tweak these to match your screen’s bounding box */
  top: 37%;      /* ~32% down from top of container */
  left: 18%;     /* start ~53% from left */
  width: 28%;    /* ~30% of container width */
  height: 10%;   /* ~18% of container height */
  background: radial-gradient(
    circle at center bottom,
    rgba(255,255,255,0.35),
    transparent 80%
  );
}


/* same pulse animation you already have */
@keyframes pulseGlow {
  0%, 100%   { opacity: 0.2; }
  10%, 90%   { opacity: 0.7; }
  50%        { opacity: 0.9; }
}

.service-icon i {
    font-size: 40px;
    margin: 0;
    justify-self: center;     /* make margin:auto or flex centering reliable */
  }

 /* —— CTA App Bar —— */
.cta-app {
    background: #fff;
    padding: 2rem 0;
  }
  .cta-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
  .cta-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
  }
  .cta-text p {
    color: #64748b;
  }
  .cta-buttons a {
    display: inline-block;
    margin-left: 1rem;
  }
  .cta-buttons img {
    height: 40px;
  }
  
  /* —— Wave Divider —— */
  .footer-wave-top {
    display: block;
    width: 100%;
    height: 80px;
    margin-bottom: -2px; /* eliminate gap */
  }
  
  /* —— Footer —— */
  .site-footer {
    background: #1e293b;
    color: #cbd5e1;
    font-size: 0.9rem;
  }
  .footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 2rem;
    padding: 3rem 0;
  }
  .footer-col h4,
  .footer-col h5 {
    color: #fff;
    margin-bottom: 1rem;
  }
  .footer-branding h4 {
    font-family: "Dot-Font", sans-serif;
    font-weight: 100;
    font-size: 30px;
    margin-bottom: 0.25rem;
  }
  .footer-branding p {
    margin-bottom: 1rem;
    color: #94a3b8;
  }
  .social-list {
    list-style: none;
    display: flex;
    gap: 1rem;
    padding: 0;
  }
  .social-list a {
    color: #cbd5e1;
    font-size: 1.25rem;
    transition: color 0.2s;
  }

  /* Normalize social icons so they all sit in the middle */
.social-list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;       /* remove extra built‑in descender space */
    height: 1em;          /* make the clickable box square */
    width: 1em;
  }
  
  /* If you need a little extra tweak just for Instagram: */
  .social-list a .fa-instagram {
    /* nudge it down by 1px */
    transform: translateY(8px);
  }
  

  .social-list a:hover {
    color: #fff;
  }
  .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-col ul li + li {
    margin-top: 0.5rem;
  }
  .footer-col a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-col a:hover {
    color: #fff;
  }
  
  /* —— Footer Bottom Bar —— */
  .footer-bottom {

    border-top: 1px solid #1e293b;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
  }
  .footer-bottom p {
    margin: 0;
  }
  .bottom-nav {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
  }
  .bottom-nav a {
    color: #94a3b8;
    text-decoration: none;
  }
  .bottom-nav a:hover {
    color: #fff;
  }
  
  /* —— Responsiveness —— */
  @media (max-width: 768px) {
    .cta-inner {
      flex-direction: column;
      text-align: center;
    }
    .cta-buttons {
      margin-top: 1rem;
    }
    .footer-top {
      grid-template-columns: 1fr;
      text-align: center;
    }
    .footer-bottom {
      flex-direction: column;
      gap: 0.5rem;
      text-align: center;
    }
  }

/* assume .site-footer wraps your real footer content */
.site-footer {
    position: relative;
    overflow: hidden;
  }
  
  /* place & flip the wave at the footer’s top */
  .footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;     /* matches your viewBox height */
    transform: scaleY(-1);
    pointer-events: none;
    display: block;
  }

  /* —— Animated Footer Wave (CSS background) —— */

/* 1) Make the footer itself a solid dark color */
.site-footer {
    position: relative;
    overflow: hidden;
    background: #1e293b;   /* your dark footer background */
    color: #cbd5e1;
  }
  
  /* 2) Wave at top via ::before */
  .site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    /* embed the two‑tone wave: light gray over dark blue */
    background: url("data:image/svg+xml;utf8,\
  <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'>\
    <path fill='%23f1f5f9' d='M0,50 C360,80 720,20 1080,50 C1260,80 1440,50 1440,50 L1440,0 L0,0 Z'/>\
    <path fill='%231e293b' d='M0,50 C360,20 720,80 1080,50 C1260,20 1440,50 1440,50 L1440,100 L0,100 Z'/>\
  </svg>") repeat-x bottom center;
    background-size: 1440px 100px;
    animation: footerWaveShift 20s linear infinite;
    pointer-events: none;
    z-index: 1;
  }
  
  /* 3) Push footer content below the wave */
  .site-footer .footer-top {
    position: relative;
    z-index: 2;
    padding-top: 100px;  /* exactly the wave’s height */
  }
  
  /* 4) Keyframe stays the same */
  @keyframes footerWaveShift {
    from { background-position-x: 0; }
    to   { background-position-x: -1440px; }
  }
  
  