
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --light-bg: #ffffff;
    --dark-bg: #0a0a0a;
    --light-text: #1a1a1a;
    --dark-text: #ffffff;
    --accent: #2563eb;
    --gray: #6b7280;
}

body {
    font-family: 'Bodoni Moda', serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--light-text);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

.section {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.light-section {
    background: var(--light-bg);
    color: var(--light-text);
}

.dark-section {
    background: var(--dark-bg);
    color: var(--dark-text);
}

.container {
    width: 100%;
    padding: 120px 5%;
    position: relative;
    z-index: 2;
}

.hero {
  width: 100vw;
    display: flex;
    align-items: center;
    position: relative;
  background: url('https://i.ibb.co/rGt16V1b/citify-tuve-47-41437.jpg') no-repeat 20% 60%/125%;
  padding: 0;
  margin:0;
   
}

.hero-content {
  width: 100%;
  height: 100vh;
  background: linear-gradient(90deg, oklch(90% 0 0 / .7) 0%, oklch(90% 0 0 /.97) 50%, oklch(80% 0 0 / .07) 51%, oklch(0% 0 0 / .01) 100%);
    margin: 0;
  display:flex;
  flex-direction: column;
  align-items:center;
  align-content: center;
 
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    padding: 9vh 53vw 0 2.3vw;
    font-weight: 900;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 400;
    opacity: 0.8;
              padding: 0 53vw 7vh 2.3vw;

}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }
}

.content-block {
    opacity: 0;
    transform: translateY(30px);
}

.content-block h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
}

.content-block p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.full-width-text {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.full-width-text h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 3rem;
}

.full-width-text p {
    font-size: 1.25rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 2rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 4rem auto 0;
}

.feature-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(20px);
}

.dark-section .feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.light-section .feature-card {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.clip-transition {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 120px;
    background: var(--dark-bg);
    clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
}

.dark-section .clip-transition {
    background: var(--light-bg);
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    opacity: 0.1;
    z-index: 1;
}

.cta-section {
    text-align: center;
    padding: 160px 5%;
}

.cta-section h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 2rem;
}

.cta-text {
    font-size: 1.5rem;
    opacity: 0.8;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .container {
        padding: 80px 5%;
    }
    
    .hero {
        min-height: 80vh;
    }
    
    .content-block p,
    .full-width-text p {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
}

  /* Footer */
  .ttc-footer {
    padding: 6rem 5% 3rem;
    background: var(--accent-dark);
    color: var(--primary-bg);
  }

  .ttc-footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
  }

  .ttc-footer-brand h3 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .ttc-footer-brand p {
    opacity: 0.8;
    margin-bottom: 1rem;
  }

  .ttc-footer-column h4 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
  }

  .ttc-footer-links {
    list-style: none;
  }

  .ttc-footer-links li {
    margin-bottom: 0.8rem;
  }

  .ttc-footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }

  .ttc-footer-links a:hover {
    color: var(--accent-green-light);
  }

  .ttc-footer-bottom {
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
  }

  .ttc-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
  }

  /* Magnetic button effect */
  .ttc-magnetic {
    position: relative;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  }

  /* Responsive */
  @media (max-width: 1024px) {
    .ttc-service-detail {
      grid-template-columns: 1fr;
      gap: 3rem;
    }

    .ttc-service-detail:nth-child(even) {
      direction: ltr;
    }

    .ttc-service-detail.tech-section {
      grid-template-columns: 1fr;
    }

    .ttc-testimonial-cta-wrapper {
      grid-template-columns: 1fr;
      gap: 4rem;
      text-align: center;
    }

    .ttc-testimonial-content,
    .ttc-cta-content {
      text-align: center;
    }

    .ttc-cta-buttons {
      justify-content: center;
    }

    .ttc-footer-content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  }

  @media (max-width: 768px) {
    .ttc-services-hero {
      height: 60vh;
    }

    .ttc-nav-links {
      display: none;
    }

    .ttc-services-grid {
      grid-template-columns: 1fr;
    }

    .ttc-stats-grid {
      grid-template-columns: 1fr;
    }

    .ttc-cta-buttons {
      flex-direction: column;
      align-items: center;
    }

    .ttc-cursor,
    .ttc-cursor-follower {
      display: none;
    }

    body {
      cursor: auto;
    }
  }

  /* Mobile Navigation Styles */
  :root {
    --primary-bg: #FFFFFF;
    --secondary-bg: #F8F7F4;
    --accent-gold: #D4AF37;
    --accent-dark: #1A1A2E;
    --accent-purple: #16213E;
    --text-dark: #0F0F0F;
    --text-medium: #4A4A4A;
    --text-light: #7A7A7A;
    --border-light: rgba(0, 0, 0, 0.08);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
  }

  /* Animations */
  @keyframes slideInRight {
    0% {
      transform: translate3d(100px, 0, 0);
      opacity: 0;
    }
    100% {
      transform: translate3d(0, 0, 0);
      opacity: 1;
    }
  }

  @keyframes slideOutRight {
    0% {
      transform: translate3d(0, 0, 0);
    }
    100% {
      transform: translate3d(350px, 0, 0);
      visibility: hidden;
    }
  }

  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }