body {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
  color: #22223b;
}
  /* Hero List */
  .hero-list {
    list-style: none;
    padding: 0;
    margin: 2rem auto 2rem auto;
    max-width: 600px;
    text-align: left;
    color: #22223b;
  }
  .hero-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    padding-left: 1.5rem;
    position: relative;
  }
  .hero-list li:before {
    content: '✔';
    color: #43e97b;
    position: absolute;
    left: 0;
  }
header {
  background: linear-gradient(90deg, #ff6f61 0%, #6a89cc 100%);
  padding: 1rem 0;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.logo-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 1.5px;
  background: linear-gradient(135deg, #43e97b, #4f8cff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
  margin-left: 0.5rem;
  text-shadow: 0 2px 10px rgba(67, 233, 123, 0.2);
}

.logo-container:hover .logo-text {
  transform: scale(1.05);
  filter: brightness(1.2);
}

/* Responsive logo sizes */
@media (max-width: 768px) {
  .logo {
    height: 32px;
  }
}

@media (max-width: 480px) {
  .logo {
    height: 28px;
  }
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: #ffd166;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  height: 45px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(1);
}

.logo:hover {
  filter: brightness(1.2);
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .logo {
    height: 35px;
  }
}

@media (max-width: 480px) {
  .logo {
    height: 30px;
  }
}

.all-apps-menu {
  position: relative;
}

.all-apps-icon {
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background-color 0.3s;
}

.all-apps-icon:hover,
.all-apps-icon:focus {
  background-color: rgba(255, 255, 255, 0.1);
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(3, 6px);
  grid-template-rows: repeat(3, 6px);
  gap: 2px;
  transform: scale(0.9);
}

.apps-grid span {
  width: 6px;
  height: 6px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

.all-apps-icon:hover .apps-grid span,
.all-apps-icon:focus .apps-grid span {
  background-color: #ffd166;
  animation: appDotPulse 1.5s ease-in-out infinite;
}

.all-apps-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: linear-gradient(135deg, rgba(67,233,123,0.95), rgba(79,140,255,0.95));
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 0.5rem;
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}

.all-apps-menu:hover .all-apps-dropdown,
.all-apps-icon:focus + .all-apps-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.app-link {
  display: flex;
  align-items: center;
  padding: 0.8rem 1rem;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s;
}

.app-link:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.app-icon {
  margin-right: 0.8rem;
  font-size: 1.2rem;
}

@keyframes appDotPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(67,233,123,0.05) 0%, rgba(79,140,255,0.05) 100%);
}

.hero-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(67,233,123,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(79,140,255,0.08) 0%, transparent 50%);
  animation: heroBackground 15s ease-in-out infinite alternate;
  z-index: 1;
}

.hero-content {
  position: relative;
  max-width: 1200px;
  width: 100%;
  padding: 0 2rem;
  text-align: center;
  z-index: 2;
}



.pulse-grow {
  animation: pulseGrow 2s ease-in-out infinite;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #22223b;
}

.gradient-text {
  background: linear-gradient(135deg, #43e97b, #4f8cff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientFlow 8s linear infinite;
}

.hero-subtitle {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #22223b;
  opacity: 0.9;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.hero-cta-group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 4rem;
}

.hero-cta {
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-cta.primary {
  background: linear-gradient(135deg, #43e97b, #4f8cff);
  color: white;
  box-shadow: 0 4px 20px rgba(67,233,123,0.25);
}

.hero-cta.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(67,233,123,0.35);
}

.hero-cta.secondary {
  background: transparent;
  border: 2px solid #4f8cff;
  color: #4f8cff;
}

.hero-cta.secondary:hover {
  background: rgba(79,140,255,0.1);
  transform: translateY(-2px);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.7;
  animation: fadeInUp 1s ease-out 1s forwards;
}

.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid #4f8cff;
  border-radius: 20px;
  position: relative;
}

.mouse::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 6px;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: #4f8cff;
  border-radius: 2px;
  animation: scrollMouse 2s infinite;
}

@keyframes heroBackground {
  0% { opacity: 0.5; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.1); }
}

@keyframes pulseGrow {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes scrollMouse {
  0% { transform: translate(-50%, 0); opacity: 1; }
  100% { transform: translate(-50%, 15px); opacity: 0; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translate(-50%, 20px); }
  to { opacity: 0.7; transform: translate(-50%, 0); }
}

@media (max-width: 1200px) {
  .hero-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding: 0 1.5rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  
  .hero-cta-group {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-cta {
    padding: 0.875rem 2rem;
    font-size: 1.1rem;
  }
  
  .hero-logo {
    width: 120px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-logo {
    width: 100px;
  }
  
  .hero-cta {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
}
.cta {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(90deg, #ff6f61 0%, #ffd166 100%);
  color: #22223b;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(255, 111, 97, 0.2);
  transition: background 0.3s;
}
.cta:hover {
  background: linear-gradient(90deg, #6a89cc 0%, #43e97b 100%);
  color: #fff;
}
.features {
  background: linear-gradient(135deg, #e0e7ff 0%, #4f8cff 100%);
  color: #22223b;
  padding: 4rem 2rem;
  text-align: center;
}
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}
.feature-item {
  background: linear-gradient(135deg, #43e97b 0%, #4f8cff 100%);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 2px 20px rgba(79, 140, 255, 0.08);
  min-width: 220px;
  max-width: 320px;
  color: #fff;
  text-align: left;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(.77,0,.18,1), transform 1s cubic-bezier(.77,0,.18,1);
}
.feature-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.features-cta {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
}
  /* Testimonials */
  .testimonials {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
    min-height: 100vh;
    padding: 4rem 2rem;
  }

  .testimonials-hero {
    text-align: center;
    margin-bottom: 4rem;
  }

  .testimonials-hero h1 {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #43e97b, #4f8cff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
  }

  .testimonials-hero .subtitle {
    font-size: 1.2rem;
    color: #22223b;
    opacity: 0.8;
    margin-bottom: 3rem;
  }

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

  .stat-item {
    text-align: center;
  }

  .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #43e97b, #4f8cff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
  }

  .stat-label {
    font-size: 1.1rem;
    color: #22223b;
    opacity: 0.8;
  }

  .featured-testimonial {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin: 4rem auto;
    max-width: 1000px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  }

  .featured-content {
    display: flex;
    gap: 3rem;
    align-items: center;
  }

  .featured-image {
    width: 120px;
    height: 120px;
    border-radius: 60px;
    object-fit: cover;
  }

  .featured-text {
    flex: 1;
  }

  .featured-text blockquote {
    font-size: 1.4rem;
    line-height: 1.6;
    color: #22223b;
    margin-bottom: 1.5rem;
    font-style: italic;
  }

  .featured-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .author-info strong {
    display: block;
    font-size: 1.1rem;
    color: #22223b;
  }

  .author-info span {
    color: #6a89cc;
  }

  .testimonial-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
  }

  .category-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid #4f8cff;
    border-radius: 25px;
    background: transparent;
    color: #4f8cff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
  }

  .category-btn.active,
  .category-btn:hover {
    background: linear-gradient(135deg, #43e97b, #4f8cff);
    color: white;
    border-color: transparent;
  }

  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
  }

  .testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, background 0.5s ease;
    position: relative;
    overflow: hidden;
  }

  .testimonial-card:hover {
    transform: translateY(-5px);
  }

  .testimonial-card:nth-child(-n+4) {
    background: linear-gradient(45deg, #43e97b, #4f8cff, #ffd166, #ff6f61);
    background-size: 300% 300%;
    animation: gradientMove 15s ease infinite;
    color: white;
  }

  .testimonial-card:nth-child(-n+4) .testimonial-author h3,
  .testimonial-card:nth-child(-n+4) .testimonial-author span,
  .testimonial-card:nth-child(-n+4) p {
    color: white;
  }

  .testimonial-card:nth-child(-n+4) .testimonial-tags span {
    background: rgba(255, 255, 255, 0.2);
    color: white;
  }

  @keyframes gradientMove {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }

  .testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .testimonial-header img {
    width: 60px;
    height: 60px;
    border-radius: 30px;
    object-fit: cover;
  }

  .testimonial-author {
    flex: 1;
  }

  .testimonial-author h3 {
    margin: 0;
    color: #22223b;
  }

  .testimonial-author span {
    color: #6a89cc;
    font-size: 0.9rem;
  }

  .rating {
    color: #ffd166;
  }

  .testimonial-tags {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .testimonial-tags span {
    background: rgba(79, 140, 255, 0.1);
    color: #4f8cff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
  }

  .testimonial-video-section {
    margin: 4rem auto;
    text-align: center;
    max-width: 1200px;
  }

  .testimonial-video-section h2 {
    margin-bottom: 2rem;
    color: #22223b;
  }

  .video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }

  .video-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  }

  .video-placeholder {
    position: relative;
    padding-top: 56.25%;
    background: #f8fafc;
    cursor: pointer;
  }

  .video-placeholder img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.3s;
  }

  .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    z-index: 1;
    transition: transform 0.3s;
  }

  .video-placeholder:hover img {
    opacity: 0.6;
  }

  .video-placeholder:hover .play-icon {
    transform: translate(-50%, -50%) scale(1.1);
  }

  .video-card h3 {
    padding: 1rem;
    margin: 0;
    color: #22223b;
  }

  .video-card p {
    padding: 0 1rem 1rem;
    color: #6a89cc;
    margin: 0;
  }

  .testimonials-cta-section {
    text-align: center;
    margin: 4rem auto;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(67,233,123,0.1) 0%, rgba(79,140,255,0.1) 100%);
    border-radius: 20px;
  }

  .testimonials-cta-section h2 {
    color: #22223b;
    margin-bottom: 1rem;
  }

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

  .cta.primary {
    background: linear-gradient(135deg, #43e97b, #4f8cff);
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s;
  }

  .cta.secondary {
    background: transparent;
    border: 2px solid #4f8cff;
    color: #4f8cff;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
  }

  .cta.primary:hover {
    transform: translateY(-2px);
  }

  .cta.secondary:hover {
    background: rgba(79, 140, 255, 0.1);
  }

  @media (max-width: 768px) {
    .testimonials-hero h1 {
      font-size: 2.5rem;
    }

    .stats-container {
      flex-direction: column;
      gap: 2rem;
    }

    .featured-content {
      flex-direction: column;
      text-align: center;
    }

    .featured-text blockquote {
      font-size: 1.2rem;
    }

    .testimonial-categories {
      flex-wrap: wrap;
    }

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

    .cta-buttons {
      flex-direction: column;
      align-items: center;
    }
  }
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}
.feature-item {
  background: linear-gradient(135deg, #ffd166 0%, #ff6f61 100%);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(106, 137, 204, 0.1);
  min-width: 220px;
  max-width: 300px;
}
.feature-item h3 {
  margin-bottom: 1rem;
  color: #22223b;
}
.about {
  background: linear-gradient(135deg, #f3f4f6 0%, #e0e7ff 100%);
  color: #22223b;
  padding: 4rem 2rem;
  text-align: center;
}
.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin: 2rem 0;
}
.highlight-item {
  background: linear-gradient(135deg, #4f8cff 0%, #43e97b 100%);
  border-radius: 20px;
  box-shadow: 0 2px 20px rgba(79, 140, 255, 0.08);
  padding: 2rem;
  min-width: 220px;
  max-width: 320px;
  text-align: left;
  color: #fff;
}
.about-timeline {
  margin: 2rem 0;
  background: linear-gradient(120deg, #fff 0%, #e0e7ff 100%);
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(106, 137, 204, 0.07);
  padding: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: #22223b;
}
.about-timeline h3 {
  margin-bottom: 1rem;
  color: #4f8cff;
}
.about-impact {
  margin: 2rem 0;
  background: linear-gradient(120deg, #43e97b 0%, #4f8cff 100%);
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(106, 137, 204, 0.07);
  padding: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
}
.about-impact h3 {
  margin-bottom: 1rem;
  color: #ffd166;
}
.about-cta {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
}
  /* Team Section */
  .team {
    background: #fff;
    padding: 4rem 2rem;
    text-align: center;
  }
  .team-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
  }
  .team-member {
    background: linear-gradient(135deg, #6a89cc 0%, #ffd166 100%);
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(106, 137, 204, 0.1);
    padding: 2rem;
    max-width: 220px;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .team-member img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
  }
  .team-member h3 {
    margin: 0.5rem 0 0.2rem 0;
    color: #22223b;
  }
  .team-member p {
    margin: 0;
    color: #6a89cc;
  }
.team-cta {
  margin-top: 2rem;
}
.contact {
  background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
  padding: 4rem 2rem;
  min-height: calc(100vh - 200px);
}

.contact-hero {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-hero h1 {
  font-size: 3rem;
  background: linear-gradient(135deg, #43e97b, #4f8cff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.contact-hero .subtitle {
  font-size: 1.2rem;
  color: #22223b;
  opacity: 0.8;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form-container {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-form-container h2 {
  color: #22223b;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: #22223b;
}

.contact input,
.contact select,
.contact textarea {
  padding: 1rem;
  border-radius: 10px;
  border: 2px solid #e0e7ff;
  font-size: 1rem;
  font-family: 'Space Grotesk', sans-serif;
  transition: all 0.3s ease;
}

.contact input:focus,
.contact select:focus,
.contact textarea:focus {
  border-color: #4f8cff;
  box-shadow: 0 0 0 3px rgba(79, 140, 255, 0.1);
  outline: none;
}

.contact textarea {
  min-height: 150px;
  resize: vertical;
}

.contact button {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #43e97b, #4f8cff);
  color: white;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.contact button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(67, 233, 123, 0.2);
}

.contact-info-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-card h2 {
  color: #22223b;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item .icon {
  font-size: 1.5rem;
  color: #4f8cff;
  background: rgba(79, 140, 255, 0.1);
  padding: 0.8rem;
  border-radius: 12px;
}

.contact-item .info h3 {
  color: #22223b;
  margin-bottom: 0.3rem;
}

.contact-item .info a {
  color: #4f8cff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.contact-item .info a:hover {
  color: #43e97b;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(79, 140, 255, 0.1);
  border-radius: 10px;
  transition: all 0.3s;
}

.social-link:hover {
  background: #4f8cff;
  transform: translateY(-2px);
}

.social-link .icon {
  font-size: 1.2rem;
  color: #4f8cff;
}

.social-link:hover .icon {
  color: white;
}

.contact-hours {
  background: white;
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-hours h3 {
  color: #22223b;
  margin-bottom: 0.5rem;
}

.support-highlight {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #43e97b;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

.faq-section {
  background: white;
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.faq-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

details {
  border-radius: 8px;
  overflow: hidden;
}

summary {
  padding: 1rem;
  background: rgba(79, 140, 255, 0.05);
  cursor: pointer;
  font-weight: 600;
  color: #22223b;
  transition: background 0.3s;
}

summary:hover {
  background: rgba(79, 140, 255, 0.1);
}

details p {
  padding: 1rem;
  color: #22223b;
  opacity: 0.8;
}

@media (max-width: 968px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-hero h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .contact {
    padding: 2rem 1rem;
  }

  .contact-hero h1 {
    font-size: 2rem;
  }

  .contact-form-container,
  .contact-card,
  .contact-hours,
  .faq-section {
    padding: 1.5rem;
  }
}
footer {
  background: linear-gradient(90deg, #22223b 0%, #4f8cff 100%);
  color: #fff;
  padding: 2rem 0 0 0;
  font-family: 'Space Grotesk', sans-serif;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.footer-logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo-img {
  height: 45px;
  width: auto;
  object-fit: contain;
  filter: brightness(1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-logo-img:hover {
  filter: brightness(1.2);
  transform: scale(1.05);
}

.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #43e97b, #4f8cff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
.footer-links a {
  color: #ffd166;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #43e97b;
}
.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-icon {
  font-size: 1.5rem;
  color: #fff;
  transition: color 0.2s, transform 0.3s;
}
.footer-icon:hover {
  color: #ffd166;
  transform: scale(1.2) rotate(-10deg);
}
.footer-bottom {
  text-align: center;
  padding: 1rem 0;
  background: #22223b;
  color: #fff;
  font-size: 1rem;
  margin-top: 1rem;
}
.animated-bg {
  background: linear-gradient(135deg, #43e97b 0%, #4f8cff 100%);
  transition: background 0.8s cubic-bezier(.77,0,.18,1);
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(.77,0,.18,1), transform 0.8s cubic-bezier(.77,0,.18,1);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s, transform 0.8s cubic-bezier(.77,0,.18,1);
}
.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s, transform 0.8s cubic-bezier(.77,0,.18,1);
}
.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.slide-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(.77,0,.18,1), transform 1s cubic-bezier(.77,0,.18,1);
}
.slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.bounce-in {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s, transform 0.8s cubic-bezier(.68,-0.55,.27,1.55);
}
.bounce-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
.animated-logo {
  cursor: pointer;
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
  outline: none;
  position: relative;
  display: inline-block;
}

.animated-logo::before,
.animated-logo::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #43e97b, #4f8cff);
  opacity: 0;
  z-index: -1;
}

.animated-logo::before {
  animation: logoRingPulse 2s cubic-bezier(.4,0,.2,1) infinite;
}

.animated-logo::after {
  animation: logoRingPulse 2s cubic-bezier(.4,0,.2,1) infinite 1s;
}

.animated-logo.logo-animate {
  transform: scale(1.15) rotate(-8deg);
  color: #ffd166;
  text-shadow: 0 4px 20px rgba(255, 209, 102, 0.3);
}

.animated-logo:focus {
  box-shadow: 0 0 0 2px #ffd166;
}

.logo-pulse {
  animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
  0% { 
    transform: scale(1);
    color: #ffd166;
    text-shadow: 0 0 10px rgba(255, 209, 102, 0.2);
  }
  25% { 
    transform: scale(1.1);
    color: #43e97b;
    text-shadow: 0 0 20px rgba(67, 233, 123, 0.4);
  }
  50% { 
    transform: scale(1);
    color: #4f8cff;
    text-shadow: 0 0 15px rgba(79, 140, 255, 0.3);
  }
  75% { 
    transform: scale(1.1);
    color: #43e97b;
    text-shadow: 0 0 20px rgba(67, 233, 123, 0.4);
  }
  100% { 
    transform: scale(1);
    color: #ffd166;
    text-shadow: 0 0 10px rgba(255, 209, 102, 0.2);
  }
}

@keyframes logoRingPulse {
  0% {
    width: 100%;
    height: 100%;
    opacity: 0.5;
  }
  100% {
    width: 150%;
    height: 150%;
    opacity: 0;
  }
}

.animated-logo:hover {
  animation: logoHover 0.6s cubic-bezier(.4,0,.2,1) forwards;
}

@keyframes logoHover {
  0% { transform: scale(1) rotate(0); }
  25% { transform: scale(1.1) rotate(-5deg); }
  50% { transform: scale(1.15) rotate(3deg); }
  75% { transform: scale(1.1) rotate(-2deg); }
  100% { transform: scale(1.12) rotate(0); }
}
@keyframes logoPulse {
  0% { transform: scale(1); color: #ffd166; }
  30% { transform: scale(1.18); color: #43e97b; text-shadow: 0 4px 20px rgba(67,233,123,0.2); }
  60% { transform: scale(0.95); color: #4f8cff; text-shadow: 0 4px 20px rgba(79,140,255,0.2); }
  100% { transform: scale(1); color: #ffd166; }
}
.squares-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 2rem;
}
.secondary-grid {
  margin-top: 0;
}
.square-item {
  color: #22223b;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(79,140,255,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  height: 180px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-align: center;
  padding: 1rem;
  position: relative;
  animation: gridItemFloat 3s ease-in-out infinite;
  background-size: 200% 200%;
}

/* Calculator App Grid */
.calculator-link {
  background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 100%);
}

.calculator-link:hover {
  background: linear-gradient(135deg, #4ECDC4 0%, #FF6B6B 100%);
  box-shadow: 0 8px 25px rgba(78, 205, 196, 0.3);
}

/* Image Resizer Grid */
.image-resizer-link {
  background: linear-gradient(135deg, #A8E6CF 0%, #3B4371 100%);
}

.image-resizer-link:hover {
  background: linear-gradient(135deg, #3B4371 0%, #A8E6CF 100%);
  box-shadow: 0 8px 25px rgba(168, 230, 207, 0.3);
}

/* QR Generator Grid */
.qr-generator-link {
  background: linear-gradient(135deg, #FFD93D 0%, #6C5CE7 100%);
}

.qr-generator-link:hover {
  background: linear-gradient(135deg, #6C5CE7 0%, #FFD93D 100%);
  box-shadow: 0 8px 25px rgba(108, 92, 231, 0.3);
}

/* Favicon Generator Grid */
.favicon-generator-link {
  background: linear-gradient(135deg, #FF75A0 0%, #0081CF 100%);
}

.favicon-generator-link:hover {
  background: linear-gradient(135deg, #0081CF 0%, #FF75A0 100%);
  box-shadow: 0 8px 25px rgba(255, 117, 160, 0.3);
}

/* Secondary Grid Items */
.secondary-grid .square-item {
  background: #ffffff;
  border: 1px solid rgba(79, 140, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.secondary-grid .square-item .square-icon {
  color: #4f8cff;
  font-size: 2rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.secondary-grid .square-item .square-title {
  color: #22223b;
  font-weight: 600;
  margin: 0.5rem 0;
}

.secondary-grid .square-item .square-desc {
  color: #6a89cc;
  font-size: 0.9rem;
}

.secondary-grid .square-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(79, 140, 255, 0.12);
  border-color: rgba(79, 140, 255, 0.3);
  background: linear-gradient(to bottom, #ffffff, #f8faff);
}

.secondary-grid .square-item:hover .square-icon {
  transform: scale(1.1);
  color: #43e97b;
}

/* Hover effects for secondary grid */
.secondary-grid .square-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(67,233,123,0.2);
}
.squares-grid .square-item:nth-child(-n+4) {
  border: none;
  position: relative;
  z-index: 1;
}
.squares-grid .square-item:nth-child(-n+4)::before {
  content: none;
}
.squares-grid .square-item:nth-child(-n+4) .flame-corner {
  display: none;
}
.squares-grid .square-item:nth-child(-n+4) .flame-border {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}
.squares-grid .square-item:nth-child(-n+4) .flame-border.top {
  top: 0;
  left: 6px;
  width: calc(100% - 12px);
  height: 1px;
  background: linear-gradient(90deg, #ff9800, #ff3d00, #ffd600, #ff9800);
  background-size: 400% 100%;
  border-radius: 2px;
  animation: flame-border-move 2.5s linear infinite;
  opacity: 0.8;
}
.squares-grid .square-item:nth-child(-n+4) .flame-border.bottom {
  bottom: 0;
  left: 6px;
  width: calc(100% - 12px);
  height: 1px;
  background: linear-gradient(90deg, #ff9800, #ff3d00, #ffd600, #ff9800);
  background-size: 400% 100%;
  border-radius: 2px;
  animation: flame-border-move 2.5s linear infinite reverse;
  opacity: 0.8;
}
.squares-grid .square-item:nth-child(-n+4) .flame-border.left {
  top: 6px;
  left: 0;
  width: 1px;
  height: calc(100% - 12px);
  background: linear-gradient(180deg, #ff9800, #ff3d00, #ffd600, #ff9800);
  background-size: 100% 400%;
  border-radius: 2px;
  animation: flame-border-move-vert 2.5s linear infinite;
  opacity: 0.8;
}
.squares-grid .square-item:nth-child(-n+4) .flame-border.right {
  top: 6px;
  right: 0;
  width: 1px;
  height: calc(100% - 12px);
  background: linear-gradient(180deg, #ff9800, #ff3d00, #ffd600, #ff9800);
  background-size: 100% 400%;
  border-radius: 2px;
  animation: flame-border-move-vert 2.5s linear infinite reverse;
  opacity: 0.8;
}
.squares-grid .square-item:nth-child(-n+4) {
  overflow: hidden;
}
@keyframes flame-border-move {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
@keyframes flame-border-move-vert {
  0% { background-position: 50% 0%; }
  100% { background-position: 50% 100%; }
}
.square-item::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #43e97b, #4f8cff, #ffd166);
  background-size: 300% 300%;
  border-radius: 17px;
  z-index: -1;
  animation: gradientBorder 3s ease infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.square-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 30px rgba(67,233,123,0.2);
  color: #fff;
  background: linear-gradient(135deg, #4f8cff 0%, #43e97b 100%);
  animation: gridItemHover 1.2s ease-in-out infinite;
}

.square-item:hover::before {
  opacity: 1;
}

.square-item:hover .square-icons {
  transform: scale(1.1);
}

.square-item:hover .square-icon {
  animation: iconPulse 1s ease-in-out infinite;
}

@keyframes gridItemFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes gridItemHover {
  0%, 100% { transform: translateY(-8px) scale(1.02); }
  50% { transform: translateY(-12px) scale(1.02); }
}

@keyframes gradientBorder {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes iconPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); filter: brightness(1.2); }
  100% { transform: scale(1); }
}
.square-item:hover .square-desc {
  color: #fff;
  opacity: 1;
}
.square-icons {
  display: flex;
  gap: 0.3rem;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.square-icons .square-icon {
  font-size: 1.7rem;
  transition: transform 0.3s, color 0.3s;
}
.calculator-link:hover .square-icons .square-icon {
  color: #4f8cff;
  transform: scale(1.2) rotate(-8deg);
}
.qr-generator-link:hover .square-icons .square-icon {
  color: #4f8cff;
  transform: scale(1.2) rotate(-8deg);
}
.image-resizer-link {
  background: linear-gradient(135deg, #4f8cff 0%, #ffd166 100%);
  color: #22223b;
  box-shadow: 0 4px 24px rgba(79,140,255,0.12);
}
.image-resizer-link:hover .square-icons .square-icon {
  color: #43e97b;
  transform: scale(1.2) rotate(8deg);
}
@media (max-width: 900px) {
  .squares-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.2rem;
    padding: 0 1rem;
  }
}
@media (max-width: 600px) {
  .squares-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 0.5rem;
  }
}
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background: rgba(34,34,59,0.85);
  backdrop-filter: blur(4px);
  transition: opacity 0.3s;
}
.modal-content {
  background: #fff;
  margin: 5% auto;
  padding: 2rem;
  border-radius: 18px;
  max-width: 1100px;
  min-width: 700px;
  box-shadow: 0 8px 32px rgba(79,140,255,0.18);
  position: relative;
  animation: modalFadeIn 0.5s cubic-bezier(.77,0,.18,1);
}
.modal-content iframe {
  width: 100%;
  height: 650px;
  border-radius: 12px;
}
@media (max-width: 1200px) {
  .modal-content {
    max-width: 95vw;
    min-width: 0;
    padding: 1rem;
  }
  .modal-content iframe {
    height: 400px;
  }
}
@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
.close {
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 2rem;
  color: #4f8cff;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
}
.close:hover {
  color: #43e97b;
  transform: scale(1.2) rotate(10deg);
}
.divider {
  width: 60%;
  max-width: 800px;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%,
    #43e97b 15%,
    #4f8cff 85%,
    transparent 100%
  );
  margin: 2.5rem auto;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.divider::before,
.divider::after {
  content: '';
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #ffd600, #ff9800, transparent);
  opacity: 0;
  filter: blur(2px);
  animation: divider-fade 3s ease-in-out infinite;
}

.divider::before {
  left: -25%;
  animation-delay: 0s;
}

.divider::after {
  right: -25%;
  animation-delay: 1.5s;
}

@keyframes divider-fade {
  0% {
    opacity: 0;
    transform: translateX(0);
  }
  25% {
    opacity: 0.8;
  }
  50% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}
.why-camly {
  position: relative;
  padding: 4rem 0 3rem 0;
  z-index: 1;
  overflow: hidden;
}
.why-camly-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, #43e97b 0%, #4f8cff 100%);
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
  animation: why-bg-move 8s linear infinite alternate;
}
@keyframes why-bg-move {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
.why-camly-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.why-camly-title {
  font-size: 2.6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}
.why-camly-title .highlight {
  color: #4f8cff;
  background: linear-gradient(90deg, #43e97b 0%, #4f8cff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.why-camly-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  justify-items: center;
}
.feature-card {
  background: rgba(255,255,255,0.85);
  border-radius: 1.5rem;
  box-shadow: 0 2px 16px rgba(67,233,123,0.08), 0 0 0 2px rgba(79,140,255,0.08);
  padding: 2rem 1.2rem 1.5rem 1.2rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 6px 32px rgba(79,140,255,0.18), 0 0 0 4px #43e97b44;
}
.feature-icon {
  font-size: 2.2rem;
  color: #ff9800;
  margin-bottom: 1rem;
  animation: feature-icon-flame 1.6s infinite alternate;
}
@keyframes feature-icon-flame {
  0% { filter: drop-shadow(0 0 6px #ffd600); }
  100% { filter: drop-shadow(0 0 16px #ff3d00); }
}
.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
  color: #4f8cff;
}
.feature-card p {
  font-size: 1rem;
  color: #222;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .why-camly-content {
    padding: 0 1rem;
  }
  .why-camly-title {
    font-size: 2rem;
  }
  .why-camly-features {
    gap: 1.2rem;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}
@media (max-width: 600px) {
  .why-camly {
    padding: 2.2rem 0 1.5rem 0;
  }
  .why-camly-title {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
  }
  .why-camly-features {
    gap: 0.7rem;
    grid-template-columns: 1fr;
  }
  .feature-card {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
}
