* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(135deg, #0f3460 0%, #1e1b3c 50%, #16213e 100%);
  color: #fff;
  min-height: 100vh;
  padding: 3rem 2rem;
  overflow-x: hidden;
  position: relative;
  animation: bgPulse 2s ease-out;
  padding-top: 5rem;
}

@keyframes bgPulse {
  0% {
    opacity: 0;
    filter: blur(20px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 204, 0, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 107, 107, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

/* Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(15, 52, 96, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(255, 204, 0, 0.2);
  padding: 1rem 2rem;
  z-index: 1000;
  animation: navbarSlideDown 0.6s ease-out;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

@keyframes navbarSlideDown {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffcc00 0%, #ff6b6b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  letter-spacing: 1px;
  cursor: pointer;
}

.navbar-logo:hover {
  text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
}

.navbar-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.navbar-menu a {
  color: #a8dadc;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  font-size: 0.95rem;
}

.navbar-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #ffcc00 0%, #ff6b6b 100%);
  transition: width 0.3s ease;
}

.navbar-menu a:hover {
  color: #ffcc00;
}

.navbar-menu a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #ffcc00;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
  .navbar-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(15, 52, 96, 0.98);
    padding: 2rem;
    gap: 1rem;
    border-bottom: 2px solid rgba(255, 204, 0, 0.2);
  }

  .navbar-menu.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}

.header {
  text-align: center;
  margin-bottom: 4rem;
  padding: 2rem 0;
  border-bottom: 2px solid rgba(255, 204, 0, 0.1);
  animation: headerSlideDown 0.8s ease-out;
}

@keyframes headerSlideDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffcc00 0%, #ff6b6b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  letter-spacing: 2px;
  animation: titleGlow 3s ease-in-out infinite, titlePop 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes titlePop {
  0% {
    opacity: 0;
    transform: scale(0.5) rotateZ(-10deg);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotateZ(0deg);
  }
}

@keyframes titleGlow {
  0%, 100% { text-shadow: 0 0 20px rgba(255, 204, 0, 0.4), 0 0 40px rgba(255, 107, 107, 0.2); }
  50% { text-shadow: 0 0 30px rgba(255, 204, 0, 0.6), 0 0 50px rgba(255, 107, 107, 0.4); }
}

.subtitle {
  font-size: 1.1rem;
  color: #a8dadc;
  margin-bottom: 3rem;
  font-weight: 300;
  letter-spacing: 1px;
  animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  padding: 3rem 0;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 1.5rem;
  border-radius: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  animation: slideUp 0.6s ease-out backwards, cardPulse 1s ease-out backwards;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

@keyframes cardPulse {
  0% {
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.6), 0 0 40px rgba(255, 107, 107, 0.4);
  }
  100% {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }
}

.card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.card:hover::after {
  left: 100%;
}

.card:nth-child(1) { animation-delay: 0.1s, 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s, 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s, 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s, 0.4s; }
.card:nth-child(5) { animation-delay: 0.5s, 0.5s; }
.card:nth-child(6) { animation-delay: 0.6s, 0.6s; }
.card:nth-child(7) { animation-delay: 0.7s, 0.7s; }
.card:nth-child(8) { animation-delay: 0.8s, 0.8s; }
.card:nth-child(9) { animation-delay: 0.9s, 0.9s; }
.card:nth-child(10) { animation-delay: 1s, 1s; }

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 204, 0, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(255, 204, 0, 0.2), 
              0 0 20px rgba(255, 107, 107, 0.1),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 204, 0, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.card:hover::before {
  opacity: 1;
}

.card a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-direction: column;
  text-align: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.card a .emoji {
  font-size: 2.5rem;
  display: block;
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  margin-bottom: 0.5rem;
}

.card a .name {
  display: block;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.card:hover a .emoji {
  transform: scale(1.3) rotateY(360deg);
  animation: bounce 0.6s ease-out;
}

.card:hover a .name {
  color: #ffcc00;
  text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes clickExpand {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes clickPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 204, 0, 0.7);
  }
  100% {
    box-shadow: 0 0 0 30px rgba(255, 204, 0, 0);
  }
}

.card.clicked {
  animation: clickPulse 0.6s ease-out !important;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: clickExpand 0.6s ease-out;
  pointer-events: none;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .links {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
  }

  .card {
    padding: 1.5rem 1rem;
    min-height: 100px;
  }

  .card a {
    font-size: 1rem;
  }

  .card a .emoji {
    font-size: 2rem;
  }

  .card a .name {
    font-size: 0.95rem;
  }
}

/* Content Section Styles */
.content-section {
  animation: fadeInUp 1s ease-out 0.2s both;
}

.content-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.content-box:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 204, 0, 0.3);
  box-shadow: 0 20px 40px rgba(255, 204, 0, 0.15);
}

.content-box h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ffcc00;
  font-weight: 600;
}

.content-box p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #a8dadc;
  margin-bottom: 1rem;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 204, 0, 0.1);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 204, 0, 0.3);
  box-shadow: 0 15px 35px rgba(255, 204, 0, 0.15);
}

.feature-card .feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #ffcc00;
}

.feature-card p {
  font-size: 0.95rem;
  color: #a8dadc;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #ffcc00 0%, #ff6b6b 100%);
  color: #0f3460;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  margin-top: 1rem;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 204, 0, 0.4);
}

/* Services Container */
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-detail-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: relative;
}

.service-detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.service-detail-card:hover::before {
  left: 100%;
}

.service-detail-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(255, 204, 0, 0.2);
  border-color: rgba(255, 204, 0, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.service-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.service-emoji {
  font-size: 2.5rem;
}

.service-detail-card h3 {
  font-size: 1.5rem;
  color: #ffcc00;
  margin: 0;
}

.service-description {
  font-size: 1rem;
  color: #a8dadc;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-link {
  display: inline-block;
  color: #ffcc00;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.service-link:hover {
  color: #ff6b6b;
  text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.value-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 204, 0, 0.1);
  transition: all 0.3s ease;
}

.value-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 204, 0, 0.3);
}

.value-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #ffcc00;
}

.value-item p {
  font-size: 0.95rem;
  color: #a8dadc;
}

/* Tech List */
.tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.tech-badge {
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.2) 0%, rgba(255, 107, 107, 0.2) 100%);
  border: 1px solid rgba(255, 204, 0, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tech-badge:hover {
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.4) 0%, rgba(255, 107, 107, 0.4) 100%);
  transform: translateY(-3px);
}

/* Contact Form */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.contact-info h2 {
  font-size: 1.8rem;
  color: #ffcc00;
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 1.05rem;
  color: #a8dadc;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.info-icon {
  font-size: 2rem;
  min-width: 50px;
}

.info-item h3 {
  color: #ffcc00;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.info-item p {
  color: #a8dadc;
  margin: 0;
  font-size: 1rem;
}

.contact-link {
  color: #ffcc00;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.contact-link:hover {
  color: #ff6b6b;
  text-shadow: 0 0 8px rgba(255, 204, 0, 0.4);
}

.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: #ffcc00;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 0.8rem;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 204, 0, 0.4);
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(168, 218, 220, 0.5);
}

.submit-btn {
  background: linear-gradient(135deg, #ffcc00 0%, #ff6b6b 100%);
  color: #0f3460;
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 204, 0, 0.4);
}

.submit-btn:active {
  transform: translateY(-1px);
}

.form-message {
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
}

.form-message.success {
  background: rgba(76, 175, 80, 0.2);
  border: 1px solid rgba(76, 175, 80, 0.5);
  color: #81c784;
}

.form-message.error {
  background: rgba(244, 67, 54, 0.2);
  border: 1px solid rgba(244, 67, 54, 0.5);
  color: #ef5350;
}

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.social-link {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 204, 0, 0.2);
  color: #ffcc00;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(255, 204, 0, 0.2);
  border-color: rgba(255, 204, 0, 0.4);
  box-shadow: 0 5px 15px rgba(255, 204, 0, 0.2);
}

@media (max-width: 768px) {
  body {
    padding: 1.5rem 1rem;
  }

  .navbar {
    padding: 0.8rem 1rem;
  }

  .navbar-container {
    flex-direction: row;
  }

  .navbar-logo {
    font-size: 1.2rem;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
  }

  .services-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .content-box {
    padding: 1.5rem 1rem;
  }

  .content-box h2 {
    font-size: 1.5rem;
  }

  .content-box p {
    font-size: 1rem;
  }

  h1 {
    font-size: 2.2rem;
  }

  .subtitle {
    font-size: 0.95rem;
  }

  .card {
    padding: 1.2rem 0.8rem;
    min-height: 100px;
  }

  .card a {
    font-size: 0.9rem;
  }

  .card a .emoji {
    font-size: 2rem;
    margin-bottom: 0.3rem;
  }

  .card a .name {
    font-size: 0.85rem;
  }

  .feature-card {
    padding: 1.2rem 0.8rem;
  }

  .feature-card .feature-icon {
    font-size: 2.5rem;
  }

  .feature-card h3 {
    font-size: 1.1rem;
  }

  .feature-card p {
    font-size: 0.9rem;
  }

  .service-detail-card {
    padding: 1.5rem;
  }

  .service-header {
    gap: 0.8rem;
  }

  .service-emoji {
    font-size: 2rem;
  }

  .service-detail-card h3 {
    font-size: 1.3rem;
  }

  .service-description {
    font-size: 0.95rem;
  }

  .contact-form {
    gap: 1rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.7rem;
  }

  .submit-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }

  .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }

  .tech-list {
    gap: 0.8rem;
  }

  .tech-badge {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }

  .info-items {
    gap: 1.2rem;
  }

  .info-icon {
    font-size: 1.5rem;
    min-width: 40px;
  }

  .info-item h3 {
    font-size: 1rem;
  }

  .info-item p {
    font-size: 0.95rem;
  }

  .social-links {
    gap: 0.8rem;
  }

  .social-link {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  body {
    padding: 1rem 0.8rem;
    padding-top: 4.5rem;
  }

  .navbar {
    padding: 0.6rem 0.8rem;
  }

  .navbar-logo {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
  }

  .navbar-menu {
    gap: 1rem;
  }

  .navbar-menu a {
    font-size: 0.85rem;
  }

  .header {
    margin-bottom: 2rem;
    padding: 1.5rem 0;
  }

  h1 {
    font-size: 1.8rem;
    letter-spacing: 1px;
  }

  .subtitle {
    font-size: 0.85rem;
  }

  .links {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem 0;
  }

  .card {
    padding: 1rem 0.8rem;
    min-height: 90px;
  }

  .card a .emoji {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
  }

  .card a .name {
    font-size: 0.8rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .feature-card {
    padding: 1rem;
  }

  .feature-card .feature-icon {
    font-size: 2rem;
  }

  .feature-card h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
  }

  .feature-card p {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .content-box {
    padding: 1.2rem 0.8rem;
    margin-bottom: 1.5rem;
  }

  .content-box h2 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }

  .content-box p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .service-detail-card {
    padding: 1.2rem 0.8rem;
  }

  .service-header {
    flex-direction: column;
    gap: 0.5rem;
  }

  .service-emoji {
    font-size: 1.8rem;
  }

  .service-detail-card h3 {
    font-size: 1.2rem;
  }

  .service-description {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .service-link {
    font-size: 0.9rem;
  }

  .contact-wrapper {
    gap: 1.5rem;
  }

  .contact-info h2 {
    font-size: 1.5rem;
  }

  .contact-info p {
    font-size: 0.95rem;
  }

  .info-items {
    gap: 1rem;
  }

  .info-item {
    flex-direction: row;
    gap: 0.8rem;
  }

  .info-icon {
    font-size: 1.3rem;
  }

  .info-item h3 {
    font-size: 0.95rem;
  }

  .contact-form-wrapper {
    padding: 1.2rem;
  }

  .form-group label {
    font-size: 0.95rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.6rem;
    font-size: 0.95rem;
  }

  .submit-btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }

  .cta-button {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .value-item {
    padding: 1rem;
  }

  .value-item h3 {
    font-size: 1rem;
  }

  .value-item p {
    font-size: 0.9rem;
  }

  .tech-list {
    gap: 0.6rem;
  }

  .tech-badge {
    padding: 0.4rem 0.7rem;
    font-size: 0.8rem;
  }

  .social-links {
    gap: 0.6rem;
  }

  .social-link {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  /* Hide some hover effects on mobile */
  .card:hover::after {
    display: none;
  }

  .card::after {
    display: none;
  }

  .hamburger span {
    width: 22px;
    height: 2.5px;
  }
}
