@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;400&display=swap');
:root {
  --deep-green: #014421;
  --white: #fff;
  --accent: #1de9b6;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--deep-green);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}
html, body {
  width: 100vw;
  min-width: 100vw;
  overflow-x: hidden;
}
.animated-bg {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle at 20% 30%, #1de9b633 0%, transparent 70%),
              radial-gradient(circle at 80% 70%, #1de9b644 0%, transparent 80%),
              var(--deep-green);
  animation: moveBg 10s linear infinite alternate;
}
@keyframes moveBg {
  0% { background-position: 20% 30%, 80% 70%; }
  100% { background-position: 30% 40%, 70% 60%; }
}
header {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 5vw 1rem 5vw;
  background: rgba(1, 68, 33, 0.95);
  box-shadow: 0 2px 16px #0002;
}
.logo {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent);
  text-shadow: 0 2px 8px #0005;
}
nav {
  display: flex;
  gap: 2rem;
}
.nav-link {
  color: var(--white);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  position: relative;
  transition: color 0.2s;
}
.nav-link.active, .nav-link:hover {
  color: var(--accent);
}
.nav-link::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s;
  position: absolute;
  left: 0; bottom: -4px;
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}
main {
  position: relative;
  z-index: 1;
  padding: 4rem 5vw 2rem 5vw;
}
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 3rem 0 2rem 0;
  max-width: 1100px;
  margin: 0 auto 4rem auto;
}
.hero-img {
  flex: 1 1 340px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-img img {
  width: 340px;
  max-width: 90vw;
  border-radius: 22px;
  box-shadow: 0 4px 32px #0003;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.hero-content {
  flex: 2 1 400px;
  color: var(--white);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}
.hero-content h1 span {
  color: var(--accent);
  text-shadow: 0 2px 8px #0005;
}
.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: #e0ffe6;
}
.cta-btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: var(--accent);
  color: var(--deep-green);
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 30px;
  box-shadow: 0 4px 16px #1de9b633;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  text-decoration: none;
}
.cta-btn:hover {
  background: var(--white);
  color: var(--deep-green);
  transform: scale(1.05);
}
.features {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.feature-card {
  background: rgba(255,255,255,0.07);
  border-radius: 18px;
  box-shadow: 0 2px 16px #0002;
  padding: 2rem 1.5rem;
  width: 270px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.feature-card:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 8px 32px #1de9b655;
  background: rgba(29,233,182,0.12);
}
.feature-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--accent);
  filter: drop-shadow(0 2px 8px #1de9b633);
}
.feature-card h2 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.7rem;
}
.feature-card p {
  color: #e0ffe6;
  font-size: 1rem;
}
footer {
  text-align: center;
  padding: 1.5rem 0 1rem 0;
  color: #b2ffe2;
  background: rgba(1, 68, 33, 0.95);
  font-size: 1rem;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
  margin-top: 3rem;
}
/* About Page */
.about-section {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255,255,255,0.05);
  border-radius: 18px;
  padding: 3rem 2rem 2rem 2rem;
  box-shadow: 0 2px 16px #0002;
  text-align: center;
}
.about-section h1 {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
}
.about-section h1 span {
  color: var(--accent);
}
.about-story {
  color: #e0ffe6;
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
}
.about-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.about-card {
  background: rgba(255,255,255,0.09);
  border-radius: 14px;
  box-shadow: 0 2px 12px #1de9b633;
  padding: 1.5rem 1.2rem;
  width: 260px;
  margin-bottom: 1rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.about-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px #1de9b655;
  background: rgba(29,233,182,0.13);
}
.about-card h2 {
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.about-card p {
  color: #e0ffe6;
}
/* Services Page */
.services-section {
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(255,255,255,0.05);
  border-radius: 18px;
  padding: 3rem 2rem 2rem 2rem;
  box-shadow: 0 2px 16px #0002;
  text-align: center;
}
.services-section h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
.services-section h1 span {
  color: var(--accent);
}
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.service-card {
  background: rgba(255,255,255,0.09);
  border-radius: 14px;
  box-shadow: 0 2px 12px #1de9b633;
  padding: 1.5rem 1.2rem;
  width: 250px;
  margin-bottom: 1rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px #1de9b655;
  background: rgba(29,233,182,0.13);
}
.service-card .icon {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
  color: var(--accent);
  filter: drop-shadow(0 2px 8px #1de9b633);
}
.service-card h2 {
  color: var(--white);
  margin-bottom: 0.5rem;
}
.service-card p {
  color: #e0ffe6;
}
/* Contact Page */
.contact-section {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255,255,255,0.05);
  border-radius: 18px;
  padding: 3rem 2rem 2rem 2rem;
  box-shadow: 0 2px 16px #0002;
  text-align: center;
}
.contact-section h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
.contact-section h1 span {
  color: var(--accent);
}
.contact-container {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.contact-form {
  background: rgba(255,255,255,0.09);
  border-radius: 14px;
  box-shadow: 0 2px 12px #1de9b633;
  padding: 2rem 1.5rem;
  width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}
.contact-form label {
  color: var(--accent);
  font-weight: 600;
}
.contact-form input,
.contact-form textarea {
  padding: 0.7rem 1rem;
  border-radius: 8px;
  border: none;
  background: #e0ffe6;
  color: var(--deep-green);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  resize: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--accent);
}
.contact-form .cta-btn {
  margin-top: 0.5rem;
}
.contact-info {
  background: rgba(255,255,255,0.09);
  border-radius: 14px;
  box-shadow: 0 2px 12px #1de9b633;
  padding: 2rem 1.5rem;
  width: 260px;
  text-align: left;
  color: #e0ffe6;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  justify-content: center;
}
.contact-info h2 {
  color: var(--accent);
  margin-bottom: 0.7rem;
}
.contact-info a {
  color: var(--accent);
  text-decoration: none;
  transition: text-decoration 0.2s;
}
.contact-info a:hover {
  text-decoration: underline;
}
.contact-widget {
  position: fixed;
  bottom: 2.2rem;
  right: 2.2rem;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.2rem;
}
.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  color: var(--deep-green);
  font-size: 2.3rem;
  box-shadow: 0 4px 24px #0005, 0 1.5px 6px #1de9b655;
  border: 3px solid var(--accent);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  margin-bottom: 0.2rem;
}
.contact-btn:hover {
  background: var(--accent);
  color: var(--white);
  transform: scale(1.12);
  box-shadow: 0 8px 32px #1de9b655, 0 2px 8px #0007;
}
.call-btn {
  background: var(--white);
  color: var(--deep-green);
  border-color: #1de9b6;
}
.whatsapp-btn {
  background: #25d366;
  color: #fff;
  border-color: #fff;
  box-shadow: 0 4px 24px #25d36699, 0 1.5px 6px #1de9b655;
  font-size: 2.7rem;
  border-width: 4px;
  outline: 2px solid #128c7e;
  outline-offset: 2px;
}
.whatsapp-btn span {
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.whatsapp-btn:hover {
  background: #128c7e;
  border-color: #fff;
  outline: 2.5px solid #25d366;
  box-shadow: 0 8px 32px #128c7e99, 0 2px 8px #0007;
}
.contact-email {
  background: var(--deep-green);
  color: var(--white);
  padding: 0.7rem 1.5rem;
  border-radius: 18px;
  font-size: 1.08rem;
  font-weight: 500;
  box-shadow: 0 2px 12px #0003;
  margin-top: 0.2rem;
  user-select: text;
  border: 2px solid var(--accent);
}
.registration-alert {
  background: #ffe066;
  color: #333;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 14px;
  padding: 1rem 2rem;
  margin: 2rem auto 0 auto;
  box-shadow: 0 2px 12px #0002;
  display: inline-block;
  text-align: center;
  letter-spacing: 1px;
  border: 2px solid #fffbe6;
  animation: pulseAlert 1.5s infinite alternate;
}
@keyframes pulseAlert {
  0% { box-shadow: 0 2px 12px #ffe06655; }
  100% { box-shadow: 0 4px 24px #ffe06699; }
}
.time-duration-box {
  background: #fff;
  color: var(--deep-green);
  border: 2px solid var(--accent);
  border-radius: 16px;
  padding: 1.2rem 2rem;
  margin: 2rem auto 0 auto;
  box-shadow: 0 2px 12px #1de9b622;
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
  justify-content: center;
  align-items: center;
  max-width: 500px;
  font-size: 1.08rem;
}
.time-duration-box strong {
  color: var(--deep-green);
  font-weight: 700;
}
.time-slots ul {
  list-style: disc inside;
  margin: 0.3rem 0 0 0.7rem;
  padding: 0;
}
.time-slots li {
  margin-bottom: 0.2rem;
}
.duration-info {
  margin-left: 1.5rem;
  border-left: 2px solid #e0ffe6;
  padding-left: 1.5rem;
}
.about-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 3rem 0 2rem 0;
  max-width: 1100px;
  margin: 0 auto;
}
.about-hero-img {
  flex: 1 1 320px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-hero-img img {
  width: 340px;
  max-width: 90vw;
  border-radius: 22px;
  box-shadow: 0 4px 32px #0003;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.about-hero-content {
  flex: 2 1 400px;
  color: var(--white);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-hero-content h1 {
  font-size: 2.7rem;
  margin-bottom: 1.1rem;
  color: var(--accent);
}
.about-hero-content h1 span {
  color: var(--white);
}
.about-hero-intro {
  font-size: 1.25rem;
  color: #e0ffe6;
  line-height: 1.6;
  max-width: 500px;
}
.contact-hero {
  text-align: center;
  padding: 3rem 0 2rem 0;
}
.contact-hero h1 {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}
.contact-hero h1 span {
  color: var(--white);
}
.contact-hero-intro {
  color: #e0ffe6;
  font-size: 1.15rem;
  max-width: 500px;
  margin: 0 auto;
}
.ratings-section {
  text-align: center;
  margin: 3.5rem 0 2.5rem 0;
  padding: 2.5rem 0 2rem 0;
  background: rgba(255,255,255,0.07);
  border-radius: 18px;
  box-shadow: 0 2px 16px #1de9b622;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.ratings-stars {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}
.star {
  font-size: 2.5rem;
  color: #ffd700;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.4s, transform 0.4s;
}
.ratings-section.pop .star {
  opacity: 1;
  transform: scale(1.15);
  animation: popStar 0.5s cubic-bezier(.68,-0.55,.27,1.55) forwards;
}
.ratings-section.pop .star:nth-child(1) { animation-delay: 0.05s; }
.ratings-section.pop .star:nth-child(2) { animation-delay: 0.15s; }
.ratings-section.pop .star:nth-child(3) { animation-delay: 0.25s; }
.ratings-section.pop .star:nth-child(4) { animation-delay: 0.35s; }
.ratings-section.pop .star:nth-child(5) { animation-delay: 0.45s; }
@keyframes popStar {
  0% { transform: scale(0.5); opacity: 0; }
  60% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(1.15); opacity: 1; }
}
.ratings-text {
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 1px;
}
.survey-section {
  background: #fff;
  color: var(--deep-green);
  border: 2px solid var(--accent);
  border-radius: 18px;
  box-shadow: 0 2px 16px #1de9b622;
  max-width: 520px;
  margin: 3rem auto 2.5rem auto;
  padding: 2.5rem 2rem 2rem 2rem;
  text-align: center;
}
.survey-section h2 {
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.survey-form {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}
.survey-question {
  text-align: left;
  margin-bottom: 0.5rem;
}
.survey-question label {
  font-weight: 600;
  color: var(--deep-green);
  margin-bottom: 0.3rem;
  display: block;
}
.survey-options {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.3rem;
}
.survey-options label {
  font-weight: 500;
  color: var(--deep-green);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}
.survey-options input[type="radio"] {
  accent-color: var(--accent);
  width: 1.1em;
  height: 1.1em;
}
.survey-btn {
  margin-top: 1.2rem;
  width: 100%;
  font-size: 1.1rem;
  padding: 0.8rem 0;
}
.hero.hero-full-bg {
  position: relative;
  width: 100vw;
  min-width: 100vw;
  left: 0;
  right: 0;
  height: 100vh;
  min-height: 100vh;
  max-width: 100vw;
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero.hero-full-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
  pointer-events: none;
}
.hero-bg-full {
  position: absolute;
  top: 0; left: 0;
  width: 100vw;
  min-width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 1;
}
.hero-content.hero-content-centered {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100vh;
  min-height: 100vh;
  pointer-events: auto;
}
.hero-content.hero-content-centered h1,
.hero-content.hero-content-centered p,
.hero-content.hero-content-centered .registration-alert,
.hero-content.hero-content-centered .time-duration-box {
  text-shadow: 0 4px 24px #0008, 0 2px 8px #0008;
}
.hero-content.hero-content-centered h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}
.hero-content.hero-content-centered h1 span {
  color: var(--accent);
  text-shadow: 0 2px 8px #0005, 0 4px 24px #0008;
}
.hero-content.hero-content-centered p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: #e0ffe6;
}
.hero-content.hero-content-centered .registration-alert,
.hero-content.hero-content-centered .time-duration-box {
  margin-left: auto;
  margin-right: auto;
}
.home-services {
  background: #fff;
  color: var(--deep-green);
  border: 2px solid var(--accent);
  border-radius: 18px;
  box-shadow: 0 2px 16px #1de9b622;
  max-width: 600px;
  margin: 3rem auto 2.5rem auto;
  padding: 2.5rem 2rem 2rem 2rem;
  text-align: center;
}
.home-services h2 {
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}
.home-services-list {
  list-style: disc inside;
  text-align: left;
  margin: 0 auto;
  padding: 0 0 0 1.2rem;
  color: var(--deep-green);
  font-size: 1.1rem;
}
.home-about {
  background: #fff;
  color: var(--deep-green);
  border: 2px solid var(--accent);
  border-radius: 18px;
  box-shadow: 0 2px 16px #1de9b622;
  max-width: 600px;
  margin: 3rem auto 2.5rem auto;
  padding: 2.5rem 2rem 2rem 2rem;
  text-align: center;
}
.home-about h2 {
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}
.why-computer-skills {
  background: #fff;
  color: var(--deep-green);
  border: 2px solid var(--accent);
  border-radius: 18px;
  box-shadow: 0 2px 16px #1de9b622;
  max-width: 600px;
  margin: 3rem auto 2.5rem auto;
  padding: 2.5rem 2rem 2rem 2rem;
  text-align: center;
}
.why-computer-skills h2 {
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}
.about-why-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
  margin: 2.5rem 0 2.5rem 0;
}
.about-card-home, .why-card-home {
  background: #d0f0e0;
  border: 2px solid #009966;
  color: #1a3d2f;
  border-radius: 18px;
  box-shadow: 0 4px 24px #0001;
  padding: 2.5rem 2rem 2rem 2rem;
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}
.about-card-home {
  flex-direction: row;
  gap: 2.2rem;
  align-items: center;
}
.about-card-home .about-img-home {
  margin-bottom: 0;
}
.about-card-home .about-text-home {
  flex: 1;
}
.home-services-grid {
  max-width: 1200px;
  margin: 4rem auto 2.5rem auto;
  padding: 0 2vw;
  text-align: center;
}
.home-services-grid h2 {
  color: var(--accent);
  font-size: 1.7rem;
  margin-bottom: 2.2rem;
}
.home-services-grid > h2 {
  font-size: 2.8rem;
  font-weight: bold;
  letter-spacing: 1.5px;
  color: #000;
  text-shadow: 0 0 16px #00ffb0, 0 0 6px #009966;
  text-align: center;
  margin-bottom: 2.2rem;
}
.services-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 2.5rem;
  overflow-x: auto;
  padding-bottom: 1.5rem;
}
.service-card-grid {
  background: transparent; /* Fully clear background */
  border: 3px solid #009966;
  color: #1a3d2f;
  border-radius: 22px;
  box-shadow: 0 6px 32px #0002;
  padding: 2.8rem 2rem 2.2rem 2rem;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.18s, box-shadow 0.18s, z-index 0.18s;
  z-index: 1;
  min-width: 320px;
  max-width: 340px;
  min-height: 480px;
}
.service-card-grid .icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.service-card-grid h3 {
  color: #111;
  font-size: 1.45rem;
  margin: 1.1rem 0 0.7rem 0;
}
.service-card-grid p {
  color: #111;
  font-size: 1.13rem;
  line-height: 1.6;
  text-align: center;
}
.service-card-grid:hover {
  transform: scale(1.04) translateY(0);
  box-shadow: 0 0 32px 8px #00ffb0, 0 6px 32px #00996699;
  border-color: #00ffb0;
  z-index: 10;
}
.features-row {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  align-items: stretch;
  max-width: 1100px;
  margin: 4rem auto 2.5rem auto;
  padding: 0 2vw;
}
.feature-card-row {
  background: #fff;
  color: var(--deep-green);
  border: 2px solid var(--accent);
  border-radius: 18px;
  box-shadow: 0 2px 16px #1de9b622;
  flex: 1 1 220px;
  padding: 2rem 1.2rem;
  text-align: center;
  min-width: 180px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.feature-card-row .icon {
  font-size: 2rem;
  margin-bottom: 0.7rem;
}
.feature-card-row h4 {
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.feature-card-row p {
  color: #1a3d2c;
  font-size: 0.98rem;
}
section {
  margin-bottom: 2.5rem;
}
.service-img {
  width: 100%;
  max-width: none;
  height: 240px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 2px 12px #0002;
  margin-bottom: 1.2rem;
  display: block;
}
.about-side {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.about-img-home {
  width: 260px;
  height: 200px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 4px 24px #0002;
  flex-shrink: 0;
}
.about-text-home {
  flex: 1;
}
.about-card-home {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: #f4f9f7;
  border: 3px solid #009966;
  border-radius: 22px;
  box-shadow: 0 6px 32px #0002;
  padding: 2.8rem 2.5rem 2.8rem 2.5rem;
  margin: 0 auto 2.5rem auto;
  max-width: 1100px;
  width: 100%;
  gap: 2.2rem;
  min-height: 420px;
}
.about-card-home .about-img-home {
  width: 380px;
  height: 240px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 2px 12px #0002;
  margin-bottom: 0;
  flex-shrink: 0;
  align-self: center;
}
.about-card-home .about-text-home {
  flex: 1;
  color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 0;
  text-align: center;
}
.about-card-home .about-text-home h2 {
  color: #009966;
  font-size: 2rem;
  margin-bottom: 1.1rem;
}
.about-card-home .about-text-home p {
  color: #222;
  font-size: 1.18rem;
  line-height: 1.6;
}
.why-card-home {
  background: rgba(220,255,235,0.92);
  border: 3px solid #009966;
  border-radius: 22px;
  box-shadow: 0 6px 32px #0002;
  padding: 2.5rem 2.5rem 2.2rem 2.5rem;
  margin: 0 auto 2.5rem auto;
  max-width: 1100px;
  width: 100%;
  text-align: center;
}
.why-card-home h2 {
  color: #1a3d2f;
  font-size: 2rem;
  margin-bottom: 1.1rem;
  font-weight: bold;
}
.why-card-home p {
  color: #222;
  font-size: 1.15rem;
  line-height: 1.6;
}
.about-card-home .about-text-home h2,
.why-card-home h2,
.service-card-grid h3 {
  font-size: 2.3rem;
  font-weight: bold;
  letter-spacing: 1px;
  text-shadow: 0 0 12px #00ffb0, 0 0 4px #009966;
  color: #009966;
}
.service-card-grid h3,
.service-card-grid p,
.about-card-home .about-text-home h2,
.about-card-home .about-text-home p,
.why-card-home h2,
.why-card-home p {
  color: #000;
}
.service-card-grid:hover,
.about-card-home:hover,
.why-card-home:hover {
  box-shadow: 0 0 32px 8px #00ffb0, 0 6px 32px #00996699;
  border-color: #00ffb0;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.about-section-home {
  width: 100vw;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 3rem auto;
  padding: 0 2vw;
}
.about-flex-home {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.about-section-home .about-img-home {
  width: 500px;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 2px 12px #0002;
  margin-bottom: 0;
  flex-shrink: 0;
}
.about-section-home .about-text-home {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-left: 0;
}
.about-section-home .about-text-home h2 {
  font-size: 2.6rem;
  font-weight: bold;
  letter-spacing: 1px;
  color: #000;
  text-shadow: none;
  margin-bottom: 1.1rem;
  text-align: center;
}
.about-section-home .about-text-home p {
  color: #000;
  font-size: 1.18rem;
  line-height: 1.6;
  text-align: center;
}
.faq-section {
  margin: 3rem auto 3rem auto;
  max-width: 800px;
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
  box-shadow: 0 2px 16px #0002;
  padding: 2.5rem 1.5rem;
}
.faq-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #fff;
  font-size: 2rem;
}
.faq-item {
  margin-bottom: 1.2rem;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  box-shadow: 0 2px 8px #0001;
  overflow: hidden;
  border: 1.5px solid #009966;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.faq-item[open] {
  box-shadow: 0 4px 16px #00ffb033;
  border-color: #00ffb0;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.15rem;
  color: #009966;
  padding: 1.1rem 1.2rem;
  background: none;
  outline: none;
  border: none;
  transition: background 0.18s, color 0.18s;
  user-select: none;
}
.faq-item summary:hover,
.faq-item[open] summary {
  background: #e0ffe6;
  color: #111;
}
.faq-item p {
  padding: 0 1.2rem 1.2rem 1.2rem;
  color: #111;
  font-size: 1.08rem;
  line-height: 1.6;
  margin: 0;
  animation: fadeInFaq 0.3s;
}
@keyframes fadeInFaq {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 900px) {
  .features {
    flex-direction: column;
    align-items: center;
  }
  main {
    padding: 2rem 2vw 1rem 2vw;
  }
  header {
    flex-direction: column;
    gap: 1rem;
    padding: 1.2rem 2vw 0.7rem 2vw;
  }
  .about-cards, .services-list, .contact-container {
    flex-direction: column;
    align-items: center;
  }
  .about-card, .service-card, .contact-form, .contact-info {
    width: 90%;
    min-width: 0;
  }
  .service-card {
    max-width: 400px;
    margin: 0 auto;
  }
  .services-list {
    gap: 2rem !important;
  }
  .services-grid {
    flex-direction: column !important;
    align-items: center;
    overflow-x: visible !important;
    gap: 2rem;
  }
  .service-card-grid {
    min-width: 90% !important;
    max-width: 400px !important;
    margin: 0 auto;
  }
  .home-services-grid {
    padding: 0 1rem;
  }
  .about-hero {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 0 1rem 0;
  }
  .about-hero-img img {
    width: 98vw;
    max-width: 98vw;
    border-radius: 18px;
  }
  .about-hero-content {
    text-align: center;
    align-items: center;
  }
  .hero {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 0 1rem 0;
    margin-bottom: 2rem;
  }
  .hero-img img {
    width: 98vw;
    max-width: 98vw;
    border-radius: 18px;
  }
  .hero-content {
    text-align: center;
    align-items: center;
  }
  .hero.hero-full-bg {
    min-height: 70vh;
    height: 80vh;
    max-height: 100vh;
  }
  .hero-bg-full {
    height: 80vh;
    min-height: 70vh;
    max-height: 100vh;
  }
  .hero-content.hero-content-centered h1 {
    font-size: 2.1rem;
  }
  .hero-content.hero-content-centered p {
    font-size: 1.1rem;
    padding: 0 1rem;
  }
  .services-section {
    padding: 2rem 1rem;
  }
  .contact-section {
    padding: 2rem 1rem;
  }
  .about-section {
    padding: 2rem 1rem;
  }
  .nav {
    gap: 1rem;
  }
  .nav-link {
    font-size: 1rem;
  }
  .about-why-wrapper {
    flex-direction: column;
    gap: 2rem;
    padding: 0 1vw;
  }
  .about-card-home {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }
  .about-card-home .about-img-home {
    width: 100%;
    max-width: 400px;
    height: 180px;
  }
  .why-card-home {
    padding: 2rem 1rem 1.5rem 1rem;
  }
  .features-row {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1vw;
  }
  .home-services-grid, .about-why-wrapper {
    margin: 2.5rem auto 1.5rem auto;
  }
  .about-card-home {
    padding: 2rem 1rem 2rem 1rem;
    min-height: 0;
  }
  .about-card-home .about-img-home {
    width: 100%;
    max-width: 400px;
    height: 180px;
  }
  .about-flex-home {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  .about-section-home .about-img-home {
    width: 100%;
    max-width: 500px;
    height: 200px;
  }
  .about-section-home .about-text-home {
    align-items: center;
    text-align: center;
  }
  .about-section-home .about-text-home h2 {
    text-align: center;
  }
}
@media (max-width: 800px) {
  .about-side {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }
  .about-img-home {
    width: 100%;
    max-width: 400px;
    height: 180px;
  }
}
@media (max-width: 600px) {
  .contact-widget {
    right: 1rem;
    bottom: 1rem;
    gap: 0.7rem;
  }
  .contact-btn {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    border-width: 2px;
  }
  .contact-email {
    font-size: 0.95rem;
    padding: 0.5rem 0.8rem;
  }
  .time-duration-box {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0.7rem;
    font-size: 0.98rem;
    max-width: 98vw;
  }
  .duration-info {
    margin-left: 0;
    border-left: none;
    padding-left: 0;
  }
  .survey-section {
    padding: 1.2rem 0.5rem 1rem 0.5rem;
    max-width: 98vw;
  }
  .home-services, .home-about, .why-computer-skills {
    padding: 1.2rem 0.5rem 1rem 0.5rem;
    max-width: 98vw;
  }
  .home-services-grid {
    padding: 0 0.5rem !important;
    margin: 2rem auto 1.5rem auto !important;
  }
  .home-services-grid > h2 {
    font-size: 2rem !important;
    margin-bottom: 1.5rem !important;
  }
  .service-card-grid {
    min-width: 95% !important;
    max-width: 95% !important;
    padding: 1.5rem 1rem !important;
    min-height: auto !important;
  }
  .service-card-grid h3 {
    font-size: 1.2rem !important;
  }
  .service-card-grid p {
    font-size: 1rem !important;
  }
  .service-img {
    height: 200px !important;
  }
  .hero.hero-full-bg {
    min-height: 50vh;
    height: 60vh;
    max-height: 100vh;
  }
  .hero-bg-full {
    height: 60vh;
    min-height: 50vh;
    max-height: 100vh;
  }
  .hero-content.hero-content-centered h1 {
    font-size: 1.3rem;
  }
  .hero-content.hero-content-centered {
    padding: 0.7rem 0.1rem;
  }
  .hero-content.hero-content-centered p {
    font-size: 0.9rem;
    padding: 0 0.5rem;
  }
  .services-section h1 {
    font-size: 1.8rem !important;
  }
  .contact-section h1 {
    font-size: 1.8rem !important;
  }
  .about-section h1 {
    font-size: 1.8rem !important;
  }
  .service-card {
    padding: 1rem 0.8rem !important;
    min-width: 0 !important;
    max-width: 95vw !important;
  }
  .service-card h3 {
    font-size: 1.1rem;
  }
  .service-card p {
    font-size: 0.95rem;
  }
  .contact-form, .contact-info {
    width: 95% !important;
    max-width: 95vw;
  }
  .contact-form input, .contact-form textarea {
    font-size: 0.9rem;
  }
  .about-side, .why-side, .service-card-grid, .feature-card-row {
    padding: 1.2rem 0.5rem 1rem 0.5rem;
    min-width: 0;
    max-width: 98vw;
  }
  .home-services-grid, .about-why-wrapper, .features-row {
    padding: 0 0.5vw;
    margin: 1.5rem auto 1rem auto;
  }
}
@media (max-width: 480px) {
  .hero-content.hero-content-centered h1 {
    font-size: 1.1rem;
  }
  .hero-content.hero-content-centered p {
    font-size: 0.8rem;
    padding: 0 0.3rem;
  }
  .cta-btn {
    font-size: 0.9rem;
    padding: 0.7rem 1.5rem;
  }
  .services-section h1, .contact-section h1, .about-section h1 {
    font-size: 1.5rem !important;
  }
  .service-card h3 {
    font-size: 1rem;
  }
  .service-card p {
    font-size: 0.85rem;
  }
  .nav-link {
    font-size: 0.9rem;
  }
  .logo {
    font-size: 1.8rem;
  }
  .contact-form input, .contact-form textarea {
    font-size: 0.85rem;
    padding: 0.6rem 0.8rem;
  }
  .contact-btn {
    width: 42px;
    height: 42px;
    font-size: 1.3rem;
  }
  .home-services-grid {
    padding: 0 0.3rem !important;
    margin: 1.5rem auto 1rem auto !important;
  }
  .home-services-grid > h2 {
    font-size: 1.6rem !important;
    margin-bottom: 1rem !important;
  }
  .service-card-grid {
    padding: 1rem 0.8rem !important;
  }
  .service-card-grid h3 {
    font-size: 1rem !important;
  }
  .service-card-grid p {
    font-size: 0.9rem !important;
  }
  .service-img {
    height: 180px !important;
  }
} 