/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

::selection {
    background: #00d4aa;
    color: #ffffff;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1400px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 0 30px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.brand-text {
    font-size: 1.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: nowrap;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}

.nav-link {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #667eea;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #667eea;
    transition: width 0.3s ease;
}

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


/* Keep underline hover inside dropdown too */
.nav-item.has-dropdown > .nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #667eea;
  transition: width 0.3s ease;
}

.nav-item.has-dropdown > .nav-link:hover::after {
  width: 100%;
}

/* Dropdown Menu Styles */

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item.has-dropdown {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.nav-item.has-dropdown > .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #4a5568;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.nav-item.has-dropdown > .nav-link:hover {
  color: #667eea;
}

.dropdown-toggle {
  display: none;
  background: none;
  border: none;
  color: #4a5568;
  font-size: 0.8rem;
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  list-style: none;
  padding: 10px 0;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.3s ease;
  min-width: 180px;
  z-index: 999;
}

.dropdown-link {
  display: block;
  padding: 10px 18px;
  color: #4a5568;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.2s ease;
}

.dropdown-link:hover {
  background: #f8f9fa;
  color: #667eea;
}

/* Hover for Desktop */
.nav-item:hover > .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

/* Mobile behavior */
@media (max-width: 768px) {
  .nav-item {
    width: 100%;
    text-align: center;
    padding: 0;
    margin: 0;
  }

  .nav-link {
    display: block;
    padding: 8px 0;
  }

  /* Dropdown items - make them inline */
  .nav-item.has-dropdown {
    display: block;
    width: 100%;
    text-align: center;
    position: relative;
    margin: 0;
  }

  .nav-item.has-dropdown > .nav-link {
    display: inline-block;
    width: auto;
    padding: 8px 4px 8px 0;
    margin: 0;
  }

  /* Show and position the arrow */
  .dropdown-toggle {
    display: inline-block;
    padding: 8px 0 8px 4px;
    margin: 0;
    background: none;
    border: none;
    color: #4a5568;
    font-size: 0.7rem;
    cursor: pointer;
    vertical-align: middle;
  }

  /* Dropdown menu styling */
  .dropdown-menu {
    position: static;
    box-shadow: none;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: none;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    background: rgba(248, 249, 250, 0.5);
    border-radius: 8px;
    margin: 4px 20px 0 20px;
    padding: 0;
  }

  .dropdown-menu.active {
    opacity: 1;
    max-height: 500px;
    padding: 8px 0;
  }

  .dropdown-link {
    display: block;
    padding: 6px 0;
    text-align: center;
  }
}


.nav-profile {
    display: flex;
    align-items: center;
    height: 60px;
}

.nav-profile img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #667eea;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #4a5568;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.floating-emojis {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.emoji {
    position: absolute;
    font-size: 2rem;
    opacity: 0;
    animation: floatEmoji 15s linear infinite;
}

@keyframes floatEmoji {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}


/* Responsive Design - Tablet & Mobile */
@media (max-width: 768px) {
    /* Navigation */
    .navbar {
        top: 10px;
        width: calc(100% - 40px);
        max-width: none;
        padding: 0 20px;
    }
    
    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 20px;
        flex-direction: column;
        padding: 12px 20px;
        gap: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s ease;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .nav-container {
        justify-content: space-between;
        gap: 12px;
    }

    .nav-profile {
        display: flex;
        align-items: center;
        padding: 0 6px;
    }

}


.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn {
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: #00d4aa;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.4);
}

.btn-primary:hover {
    background: #00c499;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

/* Section Styles */
.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    color: #6b7280;
    margin-bottom: 4rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Impact Section */
.impact {
    padding: 120px 0;
    background: white;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 20px;
    z-index: 0;
}

.benefit-card[data-gradient="blue"]::before {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.benefit-card[data-gradient="purple"]::before {
    background: linear-gradient(135deg, #764ba2 0%, #f093fb 100%);
}

.benefit-card[data-gradient="green"]::before {
    background: linear-gradient(135deg, #00d4aa 0%, #00c499 100%);
}

.benefit-card[data-gradient="orange"]::before {
    background: linear-gradient(135deg, #ff9a56 0%, #ff6b6b 100%);
}

.benefit-card[data-gradient="teal"]::before {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.benefit-card[data-gradient="pink"]::before {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

.benefit-card > * {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.benefit-card:hover > * {
    color: white;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.benefit-card p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 1rem;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 20px;
    z-index: 0;
}

.service-card[data-tool="sheets"]::before {
    background: linear-gradient(135deg, #0f9d58 0%, #0b7a42 100%);
}

.service-card[data-tool="airtable"]::before {
    background: linear-gradient(135deg, #fcb400 0%, #ff6900 100%);
}

.service-card[data-tool="zapier"]::before {
    background: linear-gradient(135deg, #ff4a00 0%, #ff7a00 100%);
}

.service-card[data-tool="make"]::before {
    background: linear-gradient(135deg, #6d4aff 0%, #9d72ff 100%);
}

.service-card[data-tool="n8n"]::before {
    background: linear-gradient(135deg, #ea4b71 0%, #ff6b95 100%);
}

.service-card[data-tool="apps-script"]::before {
    background: linear-gradient(135deg, #4285f4 0%, #5a9fff 100%);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

.service-card > * {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.service-card:hover > * {
    color: white;
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.service-btn {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(0, 0, 0, 0.05);
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}

.service-card:hover .service-btn {
    opacity: 1;
    transform: translateY(0);
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

/* Featured Projects */
.featured-projects {
    padding: 120px 0;
    background: white;
}

.featured-card-wrapper {
    max-width: 1200px;
    margin: 0 auto 3rem;
    position: relative;
}

.featured-card {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
    align-items: center;
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-card.slide-out-left {
    transform: translateX(-120%);
    opacity: 0;
}

.featured-card.slide-in-right {
    transform: translateX(120%);
    opacity: 0;
}

.featured-card.active {
    transform: translateX(0);
    opacity: 1;
}

.featured-image {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-card:hover .featured-image img {
    transform: scale(1.08);
}

.featured-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1a1a1a;
    text-align: center;
}

.featured-problem,
.featured-solution,
.featured-impact {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid;
}

.featured-problem {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-color: #ef4444;
}

.featured-solution {
    background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%);
    border-color: #3b82f6;
}

.featured-impact {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-color: #10b981;
}

.featured-problem strong,
.featured-solution strong,
.featured-impact strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.featured-problem p,
.featured-solution p,
.featured-impact p {
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

.featured-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.featured-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.featured-dot.active {
    background: #667eea;
    width: 40px;
    border-radius: 6px;
}

.featured-dot:hover {
    background: #9ca3af;
}

.featured-content .btn-primary {
    margin-top: 1.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.featured-content .btn-primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.portfolio-actions {
    text-align: center;
}

/* Testimonials */
.testimonials {
    padding: 120px 0;
    background: #f8f9fa;
    overflow: hidden;
}

.testimonials-wrapper {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    animation: scrollTestimonials 40s linear infinite;
}

@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonials-track:hover {
    animation-play-state: paused;
}

.testimonial-card {
    flex: 0 0 420px;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #00d4aa;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 3px solid #00d4aa;
}

.testimonial-author {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-size: 0.95rem;
    color: #667eea;
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.testimonial-content {
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: italic;
    color: #4a5568;
}

/* Process Section */
.process {
    padding: 120px 0;
    background: white;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.process-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem;
    border-radius: 20px;
    color: white;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.4s ease;
}

.process-card:nth-child(1)::before {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.process-card:nth-child(2)::before {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.process-card:nth-child(3)::before {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

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

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.process-card > * {
    position: relative;
    z-index: 1;
}

.process-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.process-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.95;
}

/* About Section */
.about {
    padding: 120px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

/* Final CTA */
.final-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.final-cta .section-title,
.final-cta .section-subtitle {
    color: white;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 20px 45px;
    font-size: 1.15rem;
}

/* Footer */
.footer {
    background: #1a1a1a;
    padding: 60px 0 30px;
    text-align: center;
    color: white;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.footer-links a:hover {
    color: #00d4aa;
}

.footer-disclaimer {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.footer-disclaimer strong {
    color: #00d4aa;
}

/* Sticky Hire Button */
.hire-button {
    position: fixed;
    right: 30px;
    bottom: 30px;
    background: linear-gradient(135deg, #00d4aa 0%, #00c499 100%);
    color: white;
    padding: 16px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(0, 212, 170, 0.4);
    }
    50% {
        box-shadow: 0 10px 30px rgba(0, 212, 170, 0.8);
    }
}

.hire-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 170, 0.6);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar {
        width: calc(100% - 40px);
        padding: 0 20px;
    }

    .nav-menu {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 20px;
        flex-direction: column;
        padding: 20px;
        gap: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s ease;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-link {
        display: block;
        padding: 12px 0;
        text-align: center;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-title {
        font-size: 2.2rem;
        min-height: 140px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.05rem;
    }

    .impact-grid,
    .services-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .featured-card {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .featured-image {
        height: 300px;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image {
        max-width: 250px;
        margin: 0 auto;
    }

    .testimonial-card {
        flex: 0 0 300px;
    }

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

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hire-button {
        right: 20px;
        bottom: 20px;
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
        min-height: 120px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .featured-image {
        height: 250px;
    }

    .benefit-card,
    .service-card,
    .process-card {
        padding: 2rem 1.5rem;
    }
}
