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

body {
  font-family: "Inter", sans-serif;
  background: #0a0a0a;
  color: #ffffff;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Opening Animation Overlay */
.opening-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1s ease-in-out;
}

.opening-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}

.clouds-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.cloud {
  position: absolute;
  background: #000000;
  border-radius: 50px;
  opacity: 0.9;
  animation: cloudMove 0.4s ease-in-out forwards;
}

.cloud-1 {
  width: 200px;
  height: 200px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.cloud-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 20%;
  animation-delay: 0.5s;
}

.cloud-3 {
  width: 180px;
  height: 180px;
  bottom: 30%;
  left: 30%;
  animation-delay: 1s;
}

.cloud-4 {
  width: 120px;
  height: 120px;
  top: 40%;
  left: 50%;
  animation-delay: 1.5s;
}

.cloud-5 {
  width: 160px;
  height: 160px;
  bottom: 20%;
  right: 10%;
  animation-delay: 2s;
}

@keyframes cloudMove {
  0% {
    transform: scale(1) translateX(0);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.2) translateX(100px);
    opacity: 0.7;
  }
  100% {
    transform: scale(0) translateX(200px);
    opacity: 0;
  }
}

/* Main Content */
.main-content {
  opacity: 0;
  animation: fadeInContent 0.4s ease-in-out 0.4s forwards;
}

@keyframes fadeInContent {
  to {
    opacity: 1;
  }
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 1.5rem 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

@media (max-width: 768px) {
  .navbar {
    position: fixed;
    padding: 1rem 0;
  }
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 3rem;
  gap: 4rem;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 3rem;
  align-items: center;
}

.nav-item {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: 25px;
}

.nav-link:hover {
  color: #00d4ff;
  background: rgba(0, 212, 255, 0.1);
  transform: translateY(-2px);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #00d4ff;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}

.bar {
  width: 25px;
  height: 3px;
  background: #ffffff;
  margin: 3px 0;
  transition: 0.3s;
}

/* Mobile menu styles */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    gap: 0;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 1000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    justify-content: center;
    align-items: center;
  }

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

  .nav-item {
    font-size: 1.2rem;
    margin: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    text-align: center;
  }

  .nav-link {
    padding: 1.5rem 2rem;
    font-size: 1.2rem;
    display: block;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
  }

  .nav-link:hover {
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
  }

  /* Hamburger menu animation */
  .nav-toggle.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

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

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

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(0, 212, 255, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 30%,
      rgba(0, 212, 255, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(0, 212, 255, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
  animation: backgroundGlow 8s ease-in-out infinite;
}

.hero-container {
  z-index: 2;
  position: relative;
  width: 100%;
}

.hero-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 0 2rem;
  position: relative;
}

.company-title {
  font-size: 3.2rem;
  font-weight: 600;
  margin: 2rem 0 1rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #00d4ff 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1.2;
  font-family: "Inter", sans-serif;
}

.logo-container {
  position: relative;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(0, 212, 255, 0.15) 0%,
    rgba(0, 212, 255, 0.08) 30%,
    rgba(0, 212, 255, 0.03) 60%,
    transparent 80%
  );
  border-radius: 50%;
  animation: ambientGlow 6s ease-in-out infinite;
  z-index: -1;
}

.logo-container::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(0, 212, 255, 0.1) 0%,
    rgba(0, 212, 255, 0.05) 50%,
    transparent 70%
  );
  border-radius: 50%;
  animation: ambientGlow 4s ease-in-out infinite reverse;
  z-index: -1;
}

.hero-logo {
  width: 500px;
  height: auto;
  margin: 0;
  display: block;
  filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.4))
    drop-shadow(0 0 60px rgba(0, 212, 255, 0.2))
    drop-shadow(0 0 90px rgba(0, 212, 255, 0.1));
  animation: logoFloat 4s ease-in-out infinite;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: pixelated;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  object-fit: contain;
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}

.hero-logo::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 212, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: logoGlow 3s ease-in-out infinite;
  z-index: -1;
}

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

@keyframes ambientGlow {
  0%,
  100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

@keyframes logoGlow {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.05);
  }
}

@keyframes backgroundGlow {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.faded-text {
  position: relative;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  white-space: normal;
  letter-spacing: 1.5px;
  text-transform: none;
  font-family: "Inter", sans-serif;
  text-shadow: none;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  margin: 0 0 1.5rem 0;
  z-index: 10;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtext {
  position: relative;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  white-space: normal;
  letter-spacing: 0.5px;
  text-transform: none;
  font-family: "Inter", sans-serif;
  margin: 0 0 3rem 0;
  z-index: 10;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.btn {
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(45deg, #00d4ff, #0099cc);
  color: #ffffff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #00d4ff;
}

.btn-secondary:hover {
  background: #00d4ff;
  color: #000000;
}

/* Sections */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(45deg, #ffffff, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* About Section */
.about {
  padding: 6rem 0;
  background: #0f0f0f;
}

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

.about-intro {
  margin-bottom: 4rem;
}

.about-intro p {
  font-size: 1.3rem;
  color: #ffffff;
  font-weight: 500;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.about-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 15px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 212, 255, 0.3);
}

.about-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #00d4ff;
  font-weight: 600;
}

.about-card p {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.7;
  margin-bottom: 0;
}

.mission-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mission-card li {
  font-size: 1rem;
  color: #cccccc;
  line-height: 1.7;
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.mission-card li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #00d4ff;
  font-weight: bold;
}

/* Services Section */
.services {
  padding: 6rem 0;
  background: #0a0a0a;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 212, 255, 0.3);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #00d4ff;
}

.service-card p {
  color: #cccccc;
  line-height: 1.6;
}

/* Portfolio Section */
.portfolio {
  padding: 6rem 0;
  background: #0f0f0f;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.portfolio-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.portfolio-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00d4ff, #0099cc);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.portfolio-card:hover::before {
  transform: scaleX(1);
}

.portfolio-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 212, 255, 0.3);
}

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

.portfolio-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #00d4ff;
  font-weight: 600;
}

.portfolio-description {
  color: #cccccc;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.portfolio-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.tech-tag {
  background: rgba(0, 212, 255, 0.1);
  color: #00d4ff;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(0, 212, 255, 0.2);
}

/* Testimonials Section */
.testimonials {
  padding: 6rem 0;
  background: #0a0a0a;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card::before {
  content: ""
    ";
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 4rem;
  color: rgba(0, 212, 255, 0.3);
  font-family: serif;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 212, 255, 0.3);
}

.testimonial-content blockquote {
  font-size: 1.1rem;
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
  text-align: center;
}

.testimonial-author {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}

.author-name {
  font-size: 1rem;
  color: #00d4ff;
  font-weight: 600;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 6rem 0;
  background: #0a0a0a;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 212, 255, 0.3);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #00d4ff;
  font-weight: 600;
}

.feature-card p {
  color: #cccccc;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Founder's Note Section */
.founders-note {
  padding: 6rem 0;
  background: #0f0f0f;
}

.founder-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.founder-card::before {
  content: "
    ";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #00d4ff, #0099cc);
}

.founder-content h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #00d4ff;
  text-align: center;
  font-weight: 600;
}

.founder-content blockquote {
  font-size: 1.2rem;
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
  text-align: center;
  position: relative;
}

.founder-content blockquote::before {
  content: "
    "";
  position: absolute;
  top: -20px;
  left: -20px;
  font-size: 4rem;
  color: rgba(0, 212, 255, 0.3);
  font-family: serif;
}

.founder-signature {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}

.founder-name {
  display: block;
  font-size: 1.1rem;
  color: #00d4ff;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.founder-title {
  display: block;
  font-size: 0.9rem;
  color: #888888;
  font-style: italic;
}

/* Contact Section */
.contact {
  padding: 6rem 0;
  background: #0f0f0f;
}

.contact-content {
  max-width: 600px;
  margin: 0 auto;
}

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

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #00d4ff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #888888;
}

/* Footer */
.footer {
  background: #000000;
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
  color: #888888;
}

/* Scroll Animation Enhancements */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animations for service cards */
.service-card:nth-child(1) {
  transition-delay: 0.1s;
}
.service-card:nth-child(2) {
  transition-delay: 0.2s;
}
.service-card:nth-child(3) {
  transition-delay: 0.3s;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-container {
    padding: 0 1.5rem;
    gap: 2rem;
    justify-content: space-between;
  }

  .nav-menu {
    /* Mobile menu is handled by the mobile menu styles above */
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .company-title {
    font-size: 2.5rem;
    margin: 1.5rem 0 0.5rem 0;
  }

  .hero-logo {
    width: 400px;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.3))
      drop-shadow(0 0 40px rgba(0, 212, 255, 0.15))
      drop-shadow(0 0 60px rgba(0, 212, 255, 0.08));
  }

  .logo-container::before {
    width: 450px;
    height: 450px;
  }

  .logo-container::after {
    width: 300px;
    height: 300px;
  }

  .hero-subtext {
    font-size: 1rem;
    max-width: 600px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-card {
    padding: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .founder-card {
    padding: 2rem;
    margin: 0 1rem;
  }

  .founder-content blockquote {
    font-size: 1.1rem;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .portfolio-card {
    padding: 2rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonial-card {
    padding: 2rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faded-text {
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 1px;
    padding: 0 1rem;
    margin: 0 0 2rem 0;
  }

  .hero-buttons {
    gap: 1.5rem;
  }

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

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

  .nav-container {
    padding: 0 1rem;
  }

  .container {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .company-title {
    font-size: 2rem;
  }

  .hero-logo {
    width: 350px;
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.25))
      drop-shadow(0 0 30px rgba(0, 212, 255, 0.12))
      drop-shadow(0 0 45px rgba(0, 212, 255, 0.06));
  }

  .logo-container::before {
    width: 400px;
    height: 400px;
  }

  .logo-container::after {
    width: 250px;
    height: 250px;
  }

  .hero-subtext {
    font-size: 0.9rem;
    max-width: 500px;
  }

  .about-intro p {
    font-size: 1.1rem;
  }

  .about-card {
    padding: 1.5rem;
  }

  .founder-card {
    padding: 1.5rem;
    margin: 0 0.5rem;
  }

  .founder-content h3 {
    font-size: 1.5rem;
  }

  .founder-content blockquote {
    font-size: 1rem;
  }

  .portfolio-card {
    padding: 1.5rem;
  }

  .portfolio-card h3 {
    font-size: 1.5rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

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

  .faded-text {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 0 0.5rem;
  }

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