/* Navbar styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10;
    border-bottom: 1px solid rgba(163, 198, 170, 0.3);
    transition: opacity 0.5s ease; /* Smooth fade effect */
  }
  
  /* Desktop view (above 768px) */
  @media (min-width: 769px) {
    .navbar {
      opacity: 0; /* Initially invisible */
      pointer-events: none; /* Prevents interaction when hidden */
    }
  
    .navbar.visible {
      opacity: 1; /* Fades in when visible class is added */
      pointer-events: auto; /* Restores interaction */
    }
  }
  
  /* Mobile view remains unchanged */
  @media (max-width: 768px) {
    .navbar {
      opacity: 1; /* Always visible on mobile */
      pointer-events: auto;
    }
  }
  
  .nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-family: 'Sacramento', cursive;
    font-size: 2rem;
    color: #4d4d4d;
    text-decoration: none;
    transition: color 0.3s ease;
  }


  
  .logo:hover {
    color: #88b398;
  }
  
  /* Hamburger Menu (unchanged for mobile) */
  .hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 11;
  }
  
  .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #4d4d4d;
    margin: 5px 0;
    transition: all 0.4s ease;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    transition: all 0.8s ease;
  }
  
  .nav-links li {
    margin-left: 30px;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #3b3b3b;
    font-family: 'Marcellus', serif;
    font-size: 1rem;
    position: relative;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
  }
  
  .nav-links a:hover {
    color: #88b398;
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #a3c6aa;
    transition: width 0.3s ease;
  }
  
  .nav-links a:hover::after {
    width: 100%;
  }
  
  /* Font Awesome Icons */
  .nav-links a i {
    margin-right: 10px;
    font-size: 1.2rem;
    color: #4d4d4d;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover i {
    color: #88b398;
  }
  
  /* Mobile View (unchanged) */
  @media (max-width: 768px) {
    .hamburger {
      display: block;
    }
  
    .nav-links {
      position: fixed;
      top: 0;
      right: -100%;
      width: 100%;
      height: 100vh;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(5px);
      flex-direction: column;
      justify-content: center;
      align-items: center;
      margin: 0;
      padding: 0;
      opacity: 0;
      visibility: hidden;
    }
  
    .nav-links.open {
      right: 0;
      opacity: 1;
      visibility: visible;
    }
  
    .nav-links li {
      margin: 20px 0;
    }
  
    .nav-links a {
      font-size: 1.5rem;
    }
  
    .nav-links a i {
      font-size: 1.5rem;
    }
  
    .hamburger.active .bar:nth-child(2) {
      opacity: 0;
    }
  
    .hamburger.active .bar:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }
  
    .hamburger.active .bar:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }
  
    body.no-scroll {
      overflow: hidden;
    }
  }





























   /* Hero Section Styling */
   body {
    margin: 0;
    padding: 0;
    font-family: 'Marcellus', serif;
    overflow-x: hidden;
    background: #f5f3e7;
    color: #3b3b3b;
}

section {
    position: relative;
    height: auto;
    min-height: 100vh;
    padding: 80px 0;
    overflow: hidden;
}

.ghibli-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #d0e6df, #f9f5ea);
    background-size: cover;
    z-index: -2;
    animation: subtleShift 20s infinite ease-in-out;
}

@keyframes subtleShift {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.content {
    text-align: center;
    padding-top: 25vh;
    position: relative;
    z-index: 2;
}

.main-title {
    font-size: 3rem;
    font-family: 'Sacramento', cursive;
    color: #4d4d4d;
    opacity: 0;
    transform: translateY(20px);
    animation: slideFadeUp 0.8s ease forwards;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@keyframes slideFadeUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.subtitle {
    font-size: 1.2rem;
    margin: 10px 0 30px;
    opacity: 0.8;
    color: #666;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.enter-button, .get-site-button {
    padding: 10px 10px;
    width: 140px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    color: #fff;
    cursor: pointer;
    font-family: 'Marcellus', serif;
    transition: transform 0.3s ease, background-color 0.3s, box-shadow 0.3s;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.enter-button {
    background-color: #a3c6aa;
}

.enter-button:hover {
    background-color: #88b398;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(136, 179, 152, 0.5);
    text-decoration: underline;
}

.get-site-button {
    background-color: #4d4d4d;
}

.get-site-button:hover {
    background-color: #88b398;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(136, 179, 152, 0.5);
    text-decoration: underline;
}

.hero-icons i, .hero-icons span {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.7;
    transition: color 0.5s ease, transform 0.3s ease;
    z-index: 1;
}

.hero-icons i:hover, .hero-icons span:hover {
    color: #88b398;
    transform: scale(1.2);
}

/* Icon and text positioning */
.cloud-icon1 { top: 10%; left: 5%; color: #d0e6df; animation: float 6s infinite ease-in-out; }
.cloud-icon2 { top: 25%; right: 10%; color: #d0e6df; animation: float 8s infinite ease-in-out; }
.tech-icon1 { bottom: 20%; left: 15%; color: #a3c6aa; }
.tech-icon2 { bottom: 10%; right: 20%; color: #a3c6aa; }
.tech-icon3 { top: 15%; left: 25%; color: #f9f5ea; }
.tech-icon4 { bottom: 15%; right: 30%; color: #4d4d4d; }
.hero-icons .tech-text { font-family: 'Marcellus', serif; font-size: 1.5rem; white-space: nowrap; }
.html-text { top: 30%; left: 10%; color: #d0e6df; transform: rotate(-15deg); }
.css-text { bottom: 25%; right: 15%; color: #a3c6aa; transform: rotate(20deg); }
.reliable-text { top: 20%; left: 35%; color: #4d4d4d; transform: rotate(-10deg); }
.cleancode-text { top: 65%; left: 10%; color: #4d4d4d; transform: rotate(-60deg); }
.pixel-perfect-text { top: 45%; left: 80%; color: #4d4d4d; transform: rotate(-10deg); }

/* Floating animation for clouds */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Falling leaves */
.leaf {
    position: absolute;
    font-size: 1.5rem;
    color: #88b398;
    opacity: 0.6;
    z-index: 1;
    animation: fall linear infinite;
}

@keyframes fall {
    0% { opacity: 0.8; transform: translateY(-100vh) rotate(0deg); }
    100% { opacity: 0; transform: translateY(100vh) rotate(360deg); }
}

/* Cursor follower */
.cursor-follower {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(136, 179, 152, 0.5);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 3;
    transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
}

.cursor-follower.hover {
    width: 30px;
    height: 30px;
    background: rgba(136, 179, 152, 0.8);
}

/* Grass at the bottom */
.grass {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to top, #88b398, transparent);
    z-index: 0;
    overflow: hidden;
}

.grass::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 10"><path d="M0 10 L10 0 L20 10 L30 0 L40 10 L50 0 L60 10 L70 0 L80 10 L90 0 L100 10" fill="none" stroke="%2388b398" stroke-width="2"/></svg>') repeat-x;
    animation: sway 4s infinite ease-in-out;
}

@keyframes sway {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-10px); }
}

/* Tablet view (769px–1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    section.hero { padding: 60px 0; }
    .content { padding-top: 22vh; }
    .main-title { font-size: 2.5rem; }
    .subtitle { font-size: 1.1rem; margin: 10px 0 25px; }
    .cta-buttons { gap: 15px; }
    .enter-button, .get-site-button { width: 120px; font-size: 1rem; }
    .hero-icons i { font-size: 2rem; }
    .hero-icons .tech-text { font-size: 1.2rem; }
    .leaf { font-size: 1.2rem; }
}

/* Phone view (below 768px) */
@media (max-width: 768px) {
    section.hero { padding: 40px 0; }
    .content { padding-top: 20vh; }
    .main-title { font-size: 2rem; }
    .subtitle { font-size: 1rem; margin: 8px 0 20px; }
    .cta-buttons {  justify-content: center; gap: 10px; }
    .enter-button, .get-site-button { width: 200px; font-size: 0.95rem; padding: 8px 0; }
    .hero-icons i { font-size: 1.5rem; }
    .hero-icons .tech-text { font-size: 0.9rem; }
    .leaf { font-size: 1rem; }
    .grass { height: 30px; }
}



















/* About Us Section */
.about-us {
    position: relative;
    background: linear-gradient(to bottom, #f9f5ea, #e0ece4); /* Ghibli-inspired gradient */
    color: #3b3b3b;
    padding: 80px 0 40px; /* Reduced bottom padding */
    height: auto; /* Natural flow */
    min-height: 100vh; /* Fills viewport if content is short */
    overflow: hidden;
  }
  
  .about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
  }
  
  .about-sidebar { width: 25%; }
  
  .about-title {
    font-family: 'Sacramento', cursive;
    font-size: 2.5rem;
    color: #4d4d4d;
    margin-bottom: 30px;
    display: inline-block;
    overflow: hidden; /* For typewriter effect */
    white-space: nowrap;
    width: 0; /* Start with no width */
  }
  
  .about-title.animate {
    animation: typewriter 2s steps(10) forwards; /* Triggered by JS */
  }
  
  @keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
  }
  
  .quick-links { 
    list-style: none; 
    padding: 0; 
    margin-bottom: 40px; 
  }
  .quick-links li { 
    margin-bottom: 15px; 
    position: relative; 
    display: flex; /* Flex to keep ✿ with link */
    align-items: center; 
  }
  .quick-links li a {
    font-family: 'Marcellus', serif;
    font-size: 1.2rem;
    color: #a3c6aa;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .quick-links li a:hover { color: #88b398; }
  .quick-links li a::before {
    content: '✿';
    margin-right: 10px; /* Space between ✿ and text */
    color: #a3c6aa;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .quick-links li a:hover::before { color: #88b398; }
  
  .social-icons { 
    display: flex; 
    gap: 15px; 
  }
  .social-icons a { 
    color: #a3c6aa; 
    font-size: 1.5rem; 
    transition: color 0.3s ease; 
  }
  .social-icons a:hover { color: #88b398; }
  
  .about-content {
    width: 70%;
    font-family: 'Marcellus', serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4d4d4d;
  }
  .about-content p { margin-bottom: 20px; }
  
  /* Divider Styling */
  .divider {
    width: 50%;
    height: 1px;
    background: #a3c6aa;
    margin: 20px auto;
    opacity: 0.5;
  }
  
  /* Kodama Styling */
  .kodama {
    position: absolute;
    width: 30px;
    height: 30px;
    background: url('https://via.placeholder.com/30?text=👻') no-repeat center; /* Placeholder Kodama image */
    animation: float 6s ease-in-out infinite;
  }
  .kodama-1 { top: 20%; left: 10%; animation-delay: 0s; }
  .kodama-2 { bottom: 15%; right: 15%; animation-delay: 2s; }
  
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
  }
  
  /* Cursor-following effect */
  .about-us { --cursor-x: -1000px; --cursor-y: -1000px; }
  .about-us::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(163, 198, 170, 0.4) 10%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    left: var(--cursor-x);
    top: var(--cursor-y);
    transition: all 0.1s ease;
  }
  
  /* Tablet view (769px–1024px) */
  @media (min-width: 769px) and (max-width: 1024px) {
    .about-us { padding: 60px 0 30px; }
    .about-container { flex-direction: column; align-items: center; }
    .about-sidebar { width: 100%; text-align: center; margin-bottom: 40px; }
    .about-title { font-size: 2rem; }
    .quick-links li a { font-size: 1.1rem; }
    .quick-links li a::before { margin-right: 8px; }
    .social-icons a { font-size: 1.3rem; }
    .about-content { width: 100%; font-size: 1rem; }
    .kodama { width: 25px; height: 25px; }
    .about-us::before { width: 150px; height: 150px; }
  }
  
  /* Phone view (below 768px) */
  @media (max-width: 768px) {
    .about-us { padding: 40px 0 20px; min-height: auto; overflow-y: auto; }
    .about-container { flex-direction: column; align-items: center; padding: 0 15px; }
    .about-sidebar { 
      width: 100%; 
      text-align: center; 
      margin-bottom: 30px; 
    }
    .about-title { font-size: 1.8rem; }
    .quick-links { margin-bottom: 30px; }
    .quick-links li { 
      margin-bottom: 10px; 
      justify-content: center; /* Center the flex item */
    }
    .quick-links li a { 
      font-size: 1rem; 
    }
    .quick-links li a::before { 
      margin-right: 8px; /* Keep ✿ close to text */
    }
    .social-icons { 
      justify-content: center; /* Center icons */
    }
    .social-icons a { font-size: 1.2rem; }
    .about-content { 
      width: 100%; 
      font-size: 0.95rem; 
      line-height: 1.6; 
      text-align: center; /* Center content text */
    }
    .about-content p { margin-bottom: 15px; }
    .kodama { width: 20px; height: 20px; }
    .about-us::before { width: 100px; height: 100px; }
  }


 
  














/* Services Section */
.services {
    position: relative;
    background: linear-gradient(to bottom, #e0ece4, #d9e4dd); /* Ghibli-inspired gradient */
    color: #3b3b3b;
    padding: 80px 0 40px; /* Fixed typo from -10px, kept reduced bottom padding */
    height: auto; /* Natural flow */
    min-height: 100vh; /* Fills viewport if content is short */
    overflow: hidden;
  }
  
  .services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
  }
  
  .services-title {
    font-family: 'Sacramento', cursive;
    font-size: 2.5rem;
    color: #4d4d4d;
    margin-bottom: 40px;
    display: inline-block;
    overflow: hidden; /* For typewriter effect */
    white-space: nowrap;
    width: 0; /* Start with no width */
  }
  
  .services-title.animate {
    animation: typewriter 2s steps(10) forwards; /* Triggered by JS */
  }
  
  @keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .service-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 25px;
    border-radius: 15px;
    font-family: 'Marcellus', serif;
    font-size: 1.1rem;
    color: #4d4d4d;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(163, 198, 170, 0.4); /* Ghibli green shadow */
  }
  
  .service-card i {
    font-size: 2rem;
    color: #88b398;
    margin-bottom: 15px;
  }
  
  .service-card h3 {
    font-family: 'Sacramento', cursive;
    font-size: 1.8rem;
    color: #88b398;
    margin-bottom: 10px;
  }
  
  .service-card p {
    line-height: 1.6;
    font-size: 1rem;
  }
  
  /* Cursor-following effect */
  .services { --cursor-x: -1000px; --cursor-y: -1000px; }
  .services::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(136, 179, 152, 0.3) 10%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    left: var(--cursor-x);
    top: var(--cursor-y);
    transition: all 0.1s ease;
  }
  
  /* Tablet view (769px–1024px) */
  @media (min-width: 769px) and (max-width: 1024px) {
    .services { padding: 60px 0 30px; } /* Reduced bottom padding */
    .services-title { font-size: 2rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .service-card { padding: 20px; }
    .service-card i { font-size: 1.8rem; }
    .service-card h3 { font-size: 1.6rem; }
    .service-card p { font-size: 0.95rem; }
    .services::before { width: 150px; height: 150px; }
  }
  
  /* Phone view (below 768px) */
  @media (max-width: 768px) {
    .services { padding: 40px 0 20px; min-height: auto; overflow-y: auto; } /* Reduced bottom padding */
    .services-container { padding: 0 15px; }
    .services-title { font-size: 1.8rem; }
    .services-grid { grid-template-columns: 1fr; gap: 15px; }
    .service-card { padding: 15px; }
    .service-card i { font-size: 1.6rem; }
    .service-card h3 { font-size: 1.5rem; }
    .service-card p { font-size: 0.9rem; }
    .services::before { width: 100px; height: 100px; }
  }


















  /* Warning Section */
  .warning-section {
    position: relative;
    height: auto;
    min-height: 100vh;
    padding: 80px 0;
    overflow: hidden;
  }

  .ghibli-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #d0e6df, #f9f5ea);
    background-size: cover;
    z-index: -2;
    animation: subtleShift 20s infinite ease-in-out;
  }

  @keyframes subtleShift {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }

  .warning-container {
    text-align: center;
    padding-top: 25vh;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  .warning-title {
    font-size: 3rem;
    font-family: 'Sacramento', cursive;
    color: #a3c6aa; /* Ghibli green with warning hint */
    opacity: 0;
    transform: translateY(20px);
    animation: slideFadeUp 0.8s ease forwards;
    text-shadow: 0 2px 4px rgba(163, 198, 170, 0.3);
  }

  @keyframes slideFadeUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
  }

  .warning-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(163, 198, 170, 0.2);
    opacity: 0;
    transform: translateY(50px);
    animation: contentRise 1s ease-out forwards 0.5s;
  }

  @keyframes contentRise {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .warning-content p {
    font-family: 'Marcellus', serif;
    font-size: 1.2rem;
    color: #4d4d4d;
    line-height: 1.7;
    margin: 0 0 20px;
  }

  .warning-content p:first-child::before {
    content: '⚠️ '; /* Warning emoji */
    font-size: 1.3rem;
    color: #88b398;
    animation: pulse 1.5s ease-in-out infinite;
  }

  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
  }

  .warning-cta {
    padding: 10px 20px;
    width: 140px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    color: #fff;
    cursor: pointer;
    font-family: 'Marcellus', serif;
    background-color: #a3c6aa;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s, box-shadow 0.3s;
    opacity: 0;
    transform: scale(0.9);
    animation: buttonPop 1s ease-out forwards 1s;
  }

  .warning-cta:hover {
    background-color: #88b398;
    transform: translateY(-3px) scale(1);
    box-shadow: 0 5px 15px rgba(136, 179, 152, 0.5);
    text-decoration: underline;
  }

  @keyframes buttonPop {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
  }

  /* Floating Icons */
  .hero-icons i {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.7;
    transition: color 0.5s ease, transform 0.3s ease;
    z-index: 1;
    color: #88b398; /* Warning in Ghibli green */
  }

  .hero-icons i:hover {
    color: #a3c6aa;
    transform: scale(1.2);
  }

  .cloud-icon1 { top: 10%; left: 5%; animation: float 6s infinite ease-in-out; }
  .cloud-icon2 { top: 25%; right: 10%; animation: float 8s infinite ease-in-out; }

  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
  }

  /* Grass */
  .grass {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to top, #88b398, transparent);
    z-index: 0;
    overflow: hidden;
  }

  .grass::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 10"><path d="M0 10 L10 0 L20 10 L30 0 L40 10 L50 0 L60 10 L70 0 L80 10 L90 0 L100 10" fill="none" stroke="%2388b398" stroke-width="2"/></svg>') repeat-x;
    animation: sway 4s infinite ease-in-out;
  }

  @keyframes sway {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-10px); }
  }

  /* Responsive Adjustments */
  @media (min-width: 769px) and (max-width: 1024px) {
    .warning-section { padding: 60px 0; }
    .warning-container { padding-top: 22vh; }
    .warning-title { font-size: 2.5rem; }
    .warning-content { padding: 30px; }
    .warning-content p { font-size: 1.1rem; }
    .warning-cta { width: 120px; font-size: 1rem; }
    .hero-icons i { font-size: 2rem; }
    .grass { height: 40px; }
  }

  @media (max-width: 768px) {
    .warning-section { padding: 40px 0; }
    .warning-container { padding-top: 20vh; padding-left: 15px; padding-right: 15px; }
    .warning-title { font-size: 2rem; }
    .warning-content { padding: 20px; }
    .warning-content p { font-size: 1rem; }
    .warning-cta { width: 200px; font-size: 0.95rem; padding: 8px 0; }
    .hero-icons i { font-size: 1.5rem; }
    .grass { height: 30px; }
  }





























/* Featured Work / Portfolio Preview Section */
.portfolio {
    position: relative;
    background: linear-gradient(to bottom, #d9e4dd, #f5f3e7); /* Ghibli-inspired gradient */
    color: #3b3b3b;
    padding: 80px 0 40px; /* Reduced bottom padding for consistency */
    height: auto; /* Natural flow */
    min-height: 100vh; /* Fills viewport if content is short */
    overflow: hidden;
  }
  
  .portfolio-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
  }
  
  .portfolio-title {
    font-family: 'Sacramento', cursive;
    font-size: 2.5rem;
    color: #4d4d4d;
    margin-bottom: 40px;
    display: inline-block;
    overflow: hidden; /* For typewriter effect */
    white-space: nowrap;
    width: 0; /* Start with no width */
  }
  
  .portfolio-title.animate {
    animation: typewriter 2s steps(12) forwards; /* Triggered by JS */
  }
  
  @keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
  }
  
  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .portfolio-card {
    display: block; /* Ensure <a> behaves as block */
    text-decoration: none; /* Remove underline */
    color: inherit; /* Inherit text color */
  }
  
  .portfolio-card-inner {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0; /* Start hidden for scroll reveal */
    transform: translateY(50px); /* Initial position for reveal */
  }
  
  .portfolio-card-inner.reveal {
    opacity: 1;
    transform: translateY(0); /* Animate to visible position */
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  
  .portfolio-card:hover .portfolio-card-inner {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(163, 198, 170, 0.4); /* Ghibli green shadow */
  }
  
  .portfolio-card-inner img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
  }
  
  .portfolio-card-inner h3 {
    font-family: 'Sacramento', cursive;
    font-size: 1.8rem;
    color: #88b398;
    margin-bottom: 10px;
  }
  
  .portfolio-card-inner .hover-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(136, 179, 152, 0.9); /* Ghibli green overlay */
    color: #fff;
    padding: 20px;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  
  .portfolio-card:hover .hover-content {
    opacity: 1;
    transform: translateY(0);
  }
  
  .hover-content p {
    font-family: 'Marcellus', serif;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
  }
  
  .portfolio-cta {
    margin-top: 40px;
  }
  
  .cta-button {
    padding: 10px 0;
    width: 200px;
    background-color: #a3c6aa;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    color: #fff;
    cursor: pointer;
    font-family: 'Marcellus', serif;
    transition: transform 0.3s ease, background-color 0.3s;
    text-align: center;
  }
  
  .cta-button:hover {
    background-color: #88b398;
    transform: translateY(-3px);
    text-decoration: underline;
  }
  
  /* Cursor-following background effect */
  .portfolio {
    --cursor-x: -1000px;
    --cursor-y: -1000px;
  }
  
  .portfolio::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(163, 198, 170, 0.3) 10%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    left: var(--cursor-x);
    top: var(--cursor-y);
    transition: all 0.1s ease;
  }
  
  /* Tablet view (769px–1024px) */
  @media (min-width: 769px) and (max-width: 1024px) {
    .portfolio { padding: 60px 0 30px; } /* Reduced bottom padding */
    .portfolio-title { font-size: 2rem; }
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .portfolio-card-inner { padding: 15px; }
    .portfolio-card-inner img { height: 120px; }
    .portfolio-card-inner h3 { font-size: 1.6rem; }
    .hover-content p { font-size: 0.85rem; }
    .cta-button { width: 180px; font-size: 1rem; }
    .portfolio::before { width: 150px; height: 150px; }
  }
  
  /* Phone view (below 768px) */
  @media (max-width: 768px) {
    .portfolio { padding: 40px 0 20px; min-height: auto; overflow-y: auto; } /* Reduced bottom padding */
    .portfolio-container { padding: 0 15px; }
    .portfolio-title { font-size: 1.8rem; }
    .portfolio-grid { grid-template-columns: 1fr; gap: 15px; }
    .portfolio-card-inner { padding: 15px; }
    .portfolio-card-inner img { height: 100px; }
    .portfolio-card-inner h3 { font-size: 1.5rem; }
    .hover-content p { font-size: 0.8rem; }
    .cta-button { width: 160px; font-size: 0.95rem; padding: 8px 0; }
    .portfolio::before { width: 100px; height: 100px; }
  }






  



 /* Why Clients Trust Us Section */
.trust {
  position: relative;
  background: linear-gradient(to bottom, #f5f3e7, #e0ece4); /* Ghibli-inspired gradient */
  color: #3b3b3b;
  padding: 80px 0 40px; /* Reduced bottom padding for consistency */
  height: auto; /* Natural flow */
  min-height: 100vh; /* Fills viewport if content is short */
  overflow: hidden;
}

.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.trust-title {
  font-family: 'Sacramento', cursive;
  font-size: 2.5rem;
  color: #4d4d4d;
  margin-bottom: 40px;
  display: inline-block;
  overflow: hidden; /* For typewriter effect */
  white-space: nowrap;
  width: 0; /* Start with no width */
}

.trust-title.animate {
  animation: typewriter 2s steps(18) forwards; /* Triggered by JS */
}

@keyframes typewriter {
  from { width: 0; }
  to { width: 100%; }
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.trust-item {
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 15px;
  font-family: 'Marcellus', serif;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(163, 198, 170, 0.4); /* Ghibli green shadow */
}

.trust-item i {
  font-size: 2rem;
  color: #88b398;
  margin-bottom: 15px;
}

.trust-item h3 {
  font-family: 'Sacramento', cursive;
  font-size: 1.8rem;
  color: #88b398;
  margin-bottom: 10px;
}

.trust-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #4d4d4d;
}

/* Decorative Elements */
.leaf, .code-text {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

.leaf {
  font-size: 1.5rem;
  color: #88b398;
}

.code-text {
  font-family: 'Marcellus', serif;
  font-size: 1.5rem;
  color: #4d4d4d;
  opacity: 0.7;
  transform: rotate(-15deg);
}

/* Positioning along edges, tops, and bottoms */
.leaf-1 { top: 5%; left: 5%; animation-delay: 0s; }
.leaf-2 { top: 10%; right: 5%; animation-delay: 1s; }
.leaf-3 { bottom: 5%; left: 10%; animation-delay: 2s; }
.leaf-4 { bottom: 10%; right: 10%; animation-delay: 3s; }
.code-text-1 { top: 15%; left: 2%; animation-delay: 4s; }
.code-text-2 { bottom: 15%; right: 2%; animation-delay: 5s; }

/* Floating animation */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-15deg); }
  50% { transform: translateY(-20px) rotate(-15deg); }
}

/* Cursor-following background effect */
.trust {
  --cursor-x: -1000px;
  --cursor-y: -1000px;
}

.trust::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(163, 198, 170, 0.3) 10%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  left: var(--cursor-x);
  top: var(--cursor-y);
  transition: all 0.1s ease;
}

/* Tablet view (769px–1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .trust {
    padding: 60px 0 30px; /* Reduced bottom padding */
  }
  .trust-title {
    font-size: 2rem;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .trust-item {
    padding: 15px;
  }
  .trust-item i {
    font-size: 1.8rem;
  }
  .trust-item h3 {
    font-size: 1.6rem;
  }
  .trust-item p {
    font-size: 0.95rem;
  }
  .leaf { font-size: 1.3rem; }
  .code-text { font-size: 1.3rem; }
  .trust::before {
    width: 150px;
    height: 150px;
  }
}

/* Phone view (below 768px) */
@media (max-width: 768px) {
  .trust {
    padding: 40px 0 20px; /* Reduced bottom padding */
    min-height: auto;
    overflow-y: auto;
  }
  .trust-container {
    padding: 0 15px;
  }
  .trust-title {
    font-size: 1.8rem;
  }
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .trust-item {
    padding: 15px;
  }
  .trust-item i {
    font-size: 1.6rem;
  }
  .trust-item h3 {
    font-size: 1.5rem;
  }
  .trust-item p {
    font-size: 0.9rem;
  }
  .leaf { font-size: 1rem; }
  .code-text { font-size: 1rem; }
  .trust::before {
    width: 100px;
    height: 100px;
  }
}














/* Have an Idea? Section */
.idea {
    position: relative;
    background: linear-gradient(to bottom, #e0ece4, #d9e4dd); /* Ghibli-inspired gradient */
    color: #3b3b3b;
    padding: 80px 0 40px; /* Reduced bottom padding for consistency */
    height: auto; /* Natural flow */
    min-height: 50vh; /* Shorter section */
    overflow: hidden;
    text-align: center;
    /* Dope UI: Subtle texture */
    background-image: linear-gradient(to bottom, #e0ece4, #d9e4dd),
                      url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="4" height="4" viewBox="0 0 4 4"%3E%3Cpath fill="%23a3c6aa" fill-opacity="0.1" d="M1 3h1v1H1V3zm2-2h1v1H3V1z"%3E%3C/path%3E%3C/svg%3E');
  }
  
  /* Container with a subtle card-like effect */
  .idea-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px; /* Increased internal padding for depth */
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.85); /* Slight white overlay */
    border-radius: 20px; /* Softer corners */
    box-shadow: 0 8px 30px rgba(163, 198, 170, 0.2); /* Ghibli green glow */
  }
  
  .idea-title {
    font-family: 'Sacramento', cursive;
    font-size: 2.5rem;
    color: #4d4d4d;
    margin-bottom: 20px;
    display: inline-block;
    overflow: hidden; /* For typewriter effect */
    white-space: nowrap;
    width: 0; /* Start with no width */
    /* Dope UI: Text shadow for depth */
    text-shadow: 2px 2px 4px rgba(163, 198, 170, 0.3);
  }
  
  .idea-title.animate {
    animation: typewriter 2s steps(11) forwards; /* Triggered by JS */
  }
  
  @keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
  }
  
  .idea-text {
    font-family: 'Marcellus', serif;
    font-size: 1.2rem;
    color: #4d4d4d;
    margin-bottom: 30px;
    line-height: 1.6;
    /* Dope UI: Slight gradient text */
    background: linear-gradient(to right, #4d4d4d, #88b398);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    max-width: 600px; /* Constrain width for readability */
    margin-left: auto;
    margin-right: auto;
  }
  
  .idea-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .cta-button {
    padding: 12px 0; /* Slightly thicker */
    width: 200px;
    background: linear-gradient(135deg, #a3c6aa, #88b398); /* Gradient button */
    border: 2px solid rgba(255, 255, 255, 0.8); /* White border for pop */
    border-radius: 12px; /* Softer corners */
    font-size: 1.1rem;
    color: #fff;
    cursor: pointer;
    font-family: 'Marcellus', serif;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    /* Dope UI: Inner shadow and glow */
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1), 0 4px 15px rgba(163, 198, 170, 0.3);
  }
  
  .cta-button:hover {
    background: linear-gradient(135deg, #88b398, #6f9c82); /* Darker gradient on hover */
    transform: translateY(-3px);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1), 0 6px 20px rgba(163, 198, 170, 0.5); /* Enhanced glow */
  }
  
  /* Cursor-following background effect */
  .idea {
    --cursor-x: -1000px;
    --cursor-y: -1000px;
  }
  
  .idea::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(163, 198, 170, 0.3) 10%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    left: var(--cursor-x);
    top: var(--cursor-y);
    transition: all 0.1s ease;
  }
  
  /* Tablet view (769px–1024px) */
  @media (min-width: 769px) and (max-width: 1024px) {
    .idea {
      padding: 60px 0 30px; /* Reduced bottom padding */
    }
    .idea-container {
      padding: 30px 20px;
      box-shadow: 0 6px 25px rgba(163, 198, 170, 0.2);
    }
    .idea-title {
      font-size: 2rem;
      text-shadow: 1px 1px 3px rgba(163, 198, 170, 0.3);
    }
    .idea-text {
      font-size: 1.1rem;
      margin-bottom: 25px;
    }
    .cta-button {
      width: 180px;
      font-size: 1rem;
      padding: 10px 0;
      box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 3px 12px rgba(163, 198, 170, 0.3);
    }
    .cta-button:hover {
      box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 5px 18px rgba(163, 198, 170, 0.5);
    }
    .idea::before {
      width: 150px;
      height: 150px;
    }
  }
  
  /* Phone view (below 768px) */
  @media (max-width: 768px) {
    .idea {
      padding: 40px 0 20px; /* Reduced bottom padding */
      min-height: auto;
      overflow-y: auto;
    }
    .idea-container {
      padding: 20px 15px;
      box-shadow: 0 4px 20px rgba(163, 198, 170, 0.2);
    }
    .idea-title {
      font-size: 1.8rem;
      text-shadow: 1px 1px 2px rgba(163, 198, 170, 0.3);
    }
    .idea-text {
      font-size: 1rem;
      margin-bottom: 20px;
    }
    .idea-cta {
      flex-direction: column;
      gap: 15px;
    }
    .cta-button {
      width: 160px;
      font-size: 0.95rem;
      padding: 8px 0;
      box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 2px 10px rgba(163, 198, 170, 0.3);
    }
    .cta-button:hover {
      box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 4px 15px rgba(163, 198, 170, 0.5);
    }
    .idea::before {
      width: 100px;
      height: 100px;
    }
  }








/* Footer Section */
.footer {
    position: relative;
    background: linear-gradient(to top, #d9e4dd, #e0ece4); /* Ghibli-inspired gradient */
    color: #3b3b3b;
    padding: 80px 0 40px; /* Top padding for content, bottom for copyright spacing */
    height: auto; /* Natural flow */
    overflow: hidden;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
  }
  
  .footer-contact, .footer-links {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
  }
  
  .footer-title {
    font-family: 'Sacramento', cursive;
    font-size: 2rem;
    color: #4d4d4d;
    margin-bottom: 20px;
    display: inline-block;
    overflow: hidden; /* For typewriter effect */
    white-space: nowrap;
    width: 0; /* Start with no width */
  }
  
  .footer-title.animate {
    animation: typewriter 2s steps(12) forwards; /* Triggered by JS, max steps for "Get in Touch" */
  }
  
  @keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
  }
  
  .footer-contact p {
    font-family: 'Marcellus', serif;
    font-size: 1.1rem;
    color: #4d4d4d;
    margin-bottom: 10px;
    line-height: 1.6;
  }
  
  .footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 15px;
  }
  
  .footer-socials a {
    color: #a3c6aa;
    font-size: 1.5rem;
    transition: color 0.3s ease;
  }
  
  .footer-socials a:hover {
    color: #88b398;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li {
    margin-bottom: 15px;
  }
  
  .footer-links a {
    font-family: 'Marcellus', serif;
    font-size: 1.1rem;
    color: #a3c6aa;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-links a:hover {
    color: #88b398;
    text-decoration: underline;
  }
  
  .footer-copyright {
    text-align: center;
    font-family: 'Sacramento', cursive;
    font-size: 1.2rem;
    color: #4d4d4d;
    opacity: 0.8;
    margin-top: 40px;
  }
  
  /* Cursor-following background effect */
  .footer {
    --cursor-x: -1000px;
    --cursor-y: -1000px;
  }
  
  .footer::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(163, 198, 170, 0.3) 10%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    left: var(--cursor-x);
    top: var(--cursor-y);
    transition: all 0.1s ease;
  }
  
  /* Tablet view (769px–1024px) */
  @media (min-width: 769px) and (max-width: 1024px) {
    .footer {
      padding: 60px 0 30px; /* Reduced bottom padding */
    }
    .footer-title {
      font-size: 1.8rem;
    }
    .footer-contact p, .footer-links a {
      font-size: 1rem;
    }
    .footer-socials a {
      font-size: 1.3rem;
    }
    .footer-copyright {
      font-size: 1.1rem;
    }
    .footer::before {
      width: 150px;
      height: 150px;
    }
  }
  
  /* Phone view (below 768px) */
  @media (max-width: 768px) {
    .footer {
      padding: 40px 0 20px; /* Reduced bottom padding */
    }
    .footer-container {
      padding: 0 15px;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-contact, .footer-links {
      margin-bottom: 25px;
    }
    .footer-title {
      font-size: 1.6rem;
    }
    .footer-contact p, .footer-links a {
      font-size: 0.95rem;
    }
    .footer-socials {
      justify-content: center;
    }
    .footer-socials a {
      font-size: 1.2rem;
    }
    .footer-copyright {
      font-size: 1rem;
    }
    .footer::before {
      width: 100px;
      height: 100px;
    }
  }