* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Satoshi', sans-serif;
  background-color: #0F0F0F;
  color: white;
  line-height: 1.6;
}

.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  background: linear-gradient(90deg, #0B0B0B, #828282);
  padding: 1rem 2rem;
  border-radius: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.navbar.scrolled {
  opacity: 0.85;
}

.navbar .logo {
  font-weight: 700;
  font-size: 1.5rem;
}
.navbar .logo :hover{
  transform: scale(1.05);
  opacity: 0.9;
  transition: transform 0.3s, opacity 0.1s;
}

.navbar nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.navbar nav a {
  text-decoration: none;
  color: #E4E4E4;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative; /* Needed for pseudo-element */
}

.navbar nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: #ffffff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(.4,0,.2,1);
}

.navbar nav a:hover {
  color: white;
}

.navbar nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  min-height: 100vh;
  height: 100vh; /* Always fill viewport height */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.waves {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 300px;
  z-index: 0; /* Make sure it's behind the hero */
  pointer-events: none; /* So it doesn't block clicks */
}

.hero {
  position: relative;
  z-index: 1; /* Make sure hero content is above the waves */
  padding-top: 180px;
  text-align: center;
  max-width: 800px;
  margin: auto;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  color: #B0B0B0;
  margin-bottom: 2rem;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}


.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.3s, transform 0.3s; /* <-- Add transform here */
}

.primary {
  background-color: #3B82F6;
  color: white;
}

.primary:hover {
  background-color: #2563EB;
  transform: scale(1.05);
}

.secondary {
  background-color: #1F1F1F;
  color: #E4E4E4;
  border: 1px solid #333;
}

.secondary:hover {
  background-color: #2C2C2C;
  transform: scale(1.05);
}

.waves {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.works {
  padding: 80px 0 40px 0;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.works h2 {
  font-size: 2.3rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.works-subtitle {
  color: #B0B0B0;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.works-grid {
  column-count: 3;
  column-gap: 2rem;
  /* Remove grid styles if present */
  display: block;
}

.work-card {
  display: inline-block;
  width: 100%;
  margin-bottom: 2rem;
  border-radius: 24px;
  overflow: hidden;
  background: #181818;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.12);
  border: 1px solid #232323;
  transition: transform 0.25s, box-shadow 0.25s;
}

.work-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  background: #181818;
  transition: transform 0.3s;
}

.work-card:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 8px 32px 0 rgba(59,130,246,0.18);
  border-color: #3B82F6;
}

.work-overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(0deg, rgba(15,15,15,0.92) 70%, rgba(15,15,15,0.2) 100%);
  color: #fff;
  padding: 1.1rem 1.2rem 0.8rem 1.2rem;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.work-card:hover .work-overlay,
.work-card:focus-within .work-overlay {
  opacity: 1;
  pointer-events: auto;
}

.work-overlay h3 {
  margin: 0 0 0.4rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}

.work-overlay .work-tag {
  background: #232323;
  color: #3B82F6;
  font-size: 0.85rem;
  padding: 0.25em 0.9em;
  border-radius: 20px;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-right: 0.5em; 
}

.services {
  padding: 80px 0 40px 0;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  justify-content: center;
}

.services h2 {
  font-size: 2.3rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.services-subtitle {
  color: #B0B0B0;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.service-card {
  background: #181818;
  border-radius: 20px;
  padding: 2.2rem 1.5rem 1.7rem 1.5rem;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.10);
  border: 1px solid #232323;
  transition: transform 0.22s, box-shadow 0.22s;
  text-align: center;
  max-width: 320px;
}

.service-card i {
  font-size: 2.2rem;
  color: #3B82F6;
  margin-bottom: 1.1rem;
  display: block;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #fff;
}

.service-card p {
  color: #B0B0B0;
  font-size: 1rem;
  margin: 0;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px 0 rgba(59,130,246,0.13);
  border-color: #3B82F6;
}

.contact-section {
  padding: 80px 0 40px 0;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.contact-section h2 {
  font-size: 2.3rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.contact-subtitle {
  color: #B0B0B0;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}

.contact-form {
  background: #181818;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.10);
  border: 1px solid #232323;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: stretch;
}

.form-group {
  width: 100%;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  border: 1px solid #232323;
  background: #151515;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  transition: border 0.2s;
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #3B82F6;
  outline: none;
}

.contact-form button {
  margin-top: 0.7rem;
  align-self: flex-start;
}

.social-links {
  margin-top: 1.2rem;
  display: flex;
  gap: 1.2rem;
}

.social-links a {
  color: #3B82F6;
  font-size: 1.7rem;
  transition: color 0.2s;
}

.social-links a:hover {
  color: #2563EB;
}

.contact-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 320px;
}

.contact-image img {
  width: 100%;
  max-width: 480px;      /* Bigger image */
  min-width: 260px;
  border-radius: 24px;
  box-shadow: 0 8px 32px 0 rgba(59,130,246,0.13), 0 2px 8px 0 rgba(0,0,0,0.10);
  border: 1px solid #232323;
  background: #181818;
  transition: box-shadow 0.3s, transform 0.3s;
}

.contact-image img:hover {
  box-shadow: 0 0 24px 4px #3B82F6, 0 8px 32px 0 rgba(59,130,246,0.18);
  transform: scale(1.03);
}

img {
  -webkit-user-drag: none;
}

.footer {
  background: #151515;
  color: #B0B0B0;
  padding: 2.5rem 0 1.2rem 0;
  text-align: center;
  border-top: 1px solid #232323;
  margin-top: 3rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.footer-logo {
  font-family: 'Satoshi', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}

.footer-logo img {
  height: 40px;
  vertical-align: middle;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  margin: 0.5rem 0;
}

.footer-links a {
  color: #B0B0B0;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #3B82F6;
}

.footer-social {
  display: flex;
  gap: 1.2rem;
  margin-top: 0.5rem;
}

.footer-social a {
  color: #3B82F6;
  font-size: 1.4rem;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: #2563EB;
}

.footer-copy {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: #CCCCCC; /* Increased contrast */
  letter-spacing: 0.01em;
}

/* Pricing Section Styles */
.pricing-section {
  padding: 80px 0 40px 0;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.pricing-section h2 {
  font-size: 2.3rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.pricing-subtitle {
  color: #B0B0B0;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-items: center;
  margin-bottom: 2.5rem;
}
.pricing-card {
  background: #181818;
  border-radius: 20px;
  padding: 2.2rem 1.5rem 1.7rem 1.5rem;
  background: linear-gradient(90deg, #232323 60%, #1e293b 100%);
  border: 2px solid #3B82F6;
  box-shadow: 0 8px 32px 0 rgba(59, 130, 246, 0.18), 0 2px 8px 0 rgba(0, 0, 0, 0.10);
  text-align: left;
  max-width: 340px;
  margin: 0 auto;
  transition: transform 0.22s, box-shadow 0.22s;
}
.pricing-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
  color: #fff;
}
.pricing-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #3B82F6;
  margin-bottom: 1rem;
}
.pricing-card ul {
  color: #B0B0B0;
  font-size: 1rem;
  margin: 0 0 1rem 0;
  padding-left: 1.2em;
}
.pricing-card li {
  margin-bottom: 0.5em;
}
.pricing-note {
  color: #F87171;
  font-size: 0.95rem;
  margin-top: 0.7rem;
}
.pricing-addons {
  margin-top: 2.5rem;
  text-align: center;
}
.pricing-addons h4 {
  color: #3B82F6;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.pricing-addons ul {
  display: inline-block;
  text-align: left;
  color: #B0B0B0;
  font-size: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.pricing-addons li {
  margin-bottom: 0.5em;
  display: flex;
  justify-content: space-between;
  gap: 1em;
}
.pricing-addons span {
  color: #3B82F6;
  font-weight: 500;
}

.pricing-card.webdev-card {
  max-width: 540px;
  margin: 2.5rem auto 0 auto;
  text-align: center;
  padding: 3rem 2rem 2.5rem 2rem;
}

.webdev-btn {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 1.15rem;
  padding: 1.1rem 2.2rem;
  border-radius: 32px;
  font-weight: 700;
  background: #3B82F6;
  color: #fff;
  transition: background 0.3s, transform 0.2s;
  box-shadow: 0 2px 8px 0 rgba(59,130,246,0.10);
}

.webdev-btn:hover {
  background: #2563EB;
  transform: scale(1.05);
}

/* Responsive for webdev card */
@media (max-width: 700px) {
  .pricing-card.webdev-card {
    max-width: 98vw;
    padding: 1.5rem 0.7rem 1.2rem 0.7rem;
  }
  .webdev-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 1200px) {
  .navbar {
    width: 96%;
    padding: 1rem 1rem;
    
  }
  .works, .services, .contact-section {
    max-width: 98vw;
    padding-left: 1vw;
    padding-right: 1vw;
  }
}

@media (max-width: 900px) {
  .navbar {
    padding: 0.7rem 1rem;
    font-size: 1rem;
  }
  .navbar nav ul {
    gap: 1.2rem;
  }
  .hero {
    padding-top: 120px;
    max-width: 95vw;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .works-grid {
    column-count: 2;
    column-gap: 1.2rem;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-image {
    margin-top: 2rem;
  }
  .contact-image {
    display: none;
  }
}

@media (max-width: 700px) {
  .navbar {
    flex-direction: column;
    gap: 0.7rem;
    padding: 0.7rem 0.5rem;
    border-radius: 30px;
  }
  .navbar nav ul {
    gap: 0.7rem;
    font-size: 1rem;
  }
  .hero {
    padding-top: 90px;
    max-width: 99vw;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .buttons {
    flex-direction: column;
    gap: 0.7rem;
  }
  .works h2, .services h2, .contact-section h2 {
    font-size: 1.5rem;
  }
  .works-grid {
    column-count: 1;
    column-gap: 0;
  }
  .work-card {
    margin-bottom: 1.2rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .service-card {
    max-width: 98vw;
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
}

@media (max-width: 500px) {
  .navbar {
    padding: 0.5rem 0.2rem;
    font-size: 0.95rem;
  }
  .navbar .logo {
    font-size: 1.1rem;
  }
  .hero {
    padding-top: 60px;
  }
  .waves {
    height: 120px;
  }
  .footer {
    padding: 1.2rem 0 0.7rem 0;
    font-size: 0.95rem;
  }
  .footer-logo {
    font-size: 1.1rem;
  }
  .footer-links {
    gap: 0.5rem;
    font-size: 0.95rem;
  }
  .footer-social a {
    font-size: 1.1rem;
  }
  .footer-copy {
    font-size: 0.85rem;
  }
}

/* Already present, but keep for completeness */
@media (max-width: 600px) {
  .footer-content {
    flex-direction: column;
    gap: 1rem;
  }
  .footer-links {
    flex-wrap: wrap;
    gap: 1rem;
  }
}

