/* Google Fonts are loaded in HTML */
:root {
  --navy: #004080;
  --aqua: #00BFA6;
  --white: #fff;
  --gray: #f5f7fa;
  --text: #222;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.07);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
}
html, body {
  max-width: 100vw;
  overflow-x: hidden;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
}
.logo {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
}
.logo span {
  color: var(--aqua);
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--aqua);
}
.nav-cta {
  margin-left: 2rem;
}
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--aqua);
  color: var(--navy);
}
.btn-secondary {
  background: var(--aqua);
  color: var(--navy);
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
}
.hero {
  background: linear-gradient(120deg, var(--navy) 60%, var(--aqua) 100%);
  color: var(--white);
  padding: 6rem 0 4rem 0;
  position: relative;
  overflow: hidden;
}
.hero-content {
  text-align: center;
  z-index: 2;
  position: relative;
}
.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}
.hero-btns {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('https://www.transparenttextures.com/patterns/cubes.png'), linear-gradient(120deg, rgba(0,191,166,0.08), rgba(0,64,128,0.08));
  opacity: 0.2;
  z-index: 1;
}
.why {
  background: var(--gray);
  padding: 4rem 0;
}
.why h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--navy);
}
.why-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
  flex: 1 1 200px;
  max-width: 260px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.why-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0,64,128,0.10);
}
.why-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--aqua);
}
.why-card h3 {
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.services {
  padding: 4rem 0;
}
.services h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  color: var(--navy);
}
.service-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.service-card {
  background: var(--gray);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
  flex: 1 1 200px;
  max-width: 260px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0,191,166,0.10);
}
.service-card h3 {
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.pricing {
  background: var(--gray);
  padding: 4rem 0;
}
.pricing h2 {
  text-align: center;
  color: var(--navy);
  margin-bottom: 1rem;
}
.pricing-intro {
  text-align: center;
  margin-bottom: 2.5rem;
}
.pricing-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.5rem 1.5rem;
  flex: 1 1 220px;
  max-width: 270px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pricing-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0,191,166,0.10);
}
.pricing-icon {
  font-size: 2.2rem;
  margin-bottom: 0.7rem;
}
.pricing-card .price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--aqua);
  margin-bottom: 1rem;
}
.pricing-card ul {
  text-align: left;
  margin-bottom: 1.5rem;
  margin-top: 0.5rem;
}
.pricing-card ul li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.testimonials {
  padding: 4rem 0;
}
.testimonials h2 {
  text-align: center;
  color: var(--navy);
  margin-bottom: 2.5rem;
}
.testimonial-cards {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.testimonial-card {
  background: var(--gray);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
  flex: 1 1 220px;
  max-width: 320px;
  text-align: center;
  font-style: italic;
  transition: transform 0.2s, box-shadow 0.2s;
}
.testimonial-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0,64,128,0.10);
}
.testimonial-card span {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  color: var(--navy);
  font-weight: 600;
}
.portfolio {
  background: var(--white);
  padding: 4rem 0;
}
.portfolio h2 {
  text-align: center;
  color: var(--navy);
  margin-bottom: 2.5rem;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.portfolio-item {
  background: var(--gray);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.portfolio-item:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(0,191,166,0.10);
}
.portfolio-item img {
  width: 100%;
  display: block;
  border-bottom: 2px solid var(--aqua);
}
.portfolio-item span {
  display: block;
  padding: 1rem 0;
  color: var(--navy);
  font-weight: 600;
}
.contact {
  background: var(--gray);
  padding: 4rem 0;
}
.contact-container {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
}
.contact-info {
  flex: 1 1 260px;
  min-width: 260px;
}
.contact-info h2 {
  color: var(--navy);
  margin-bottom: 1rem;
}
.contact-details {
  list-style: none;
  margin-top: 1.5rem;
}
.contact-details li {
  margin-bottom: 0.7rem;
  font-size: 1rem;
}
.contact-details a {
  color: var(--aqua);
  text-decoration: none;
}
.contact-details a:hover {
  text-decoration: underline;
}
.contact-form {
  flex: 1 1 320px;
  min-width: 260px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  resize: none;
}
.contact-form textarea {
  min-height: 100px;
}
.contact-form button {
  margin-top: 0.5rem;
}
footer {
  background: var(--navy);
  color: var(--white);
  padding: 2rem 0 1rem 0;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--aqua);
}
.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-social a {
  font-size: 1.5rem;
  color: var(--aqua);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-social a:hover {
  color: var(--white);
}
.footer-copy {
  font-size: 0.95rem;
  margin-top: 1rem;
  width: 100%;
  text-align: center;
}
/* Responsive Styles */
@media (max-width: 900px) {
  .nav-links { gap: 1rem; }
  .why-cards, .service-cards, .pricing-cards, .testimonial-cards {
    flex-direction: column;
    align-items: center;
  }
  .contact-container {
    flex-direction: column;
    gap: 2rem;
  }
  .footer-container {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}
@media (max-width: 600px) {
  .container { width: 98%; }
  .hero h1 { font-size: 1.5rem; }
  .hero { padding: 3rem 0 2rem 0; }
  .why, .services, .pricing, .testimonials, .portfolio, .contact { padding: 2rem 0; }
  .nav { flex-direction: column; gap: 1rem; }
  .nav-cta { margin-left: 0; margin-top: 1rem; }
  .nav-links { flex-direction: row; flex-wrap: wrap; gap: 0.5rem; justify-content: center; align-items: center; width: 100%; }
  .nav-links li { flex: 1 1 40%; text-align: center; min-width: 100px; }
  .btn, .btn-primary, .btn-secondary { width: 100%; text-align: center; padding: 1rem 0; font-size: 1.1rem; }
  .why-card, .service-card, .pricing-card, .testimonial-card, .portfolio-item { max-width: 100%; }
  .contact-form, .contact-info { min-width: 0; width: 100%; }
  .footer-container { flex-direction: column; align-items: center; gap: 1rem; }
  .footer-links { flex-direction: row; flex-wrap: wrap; gap: 0.5rem; align-items: center; justify-content: center; width: 100%; }
  .footer-links a { flex: 1 1 40%; text-align: center; min-width: 100px; }
  .footer-social { justify-content: center; }
  .faq-list { gap: 1rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.1rem; }
  p, li, span, label, input, textarea { font-size: 1rem; }
}
/* Animations */
section, .why-card, .service-card, .pricing-card, .testimonial-card, .portfolio-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
section.visible, .why-card.visible, .service-card.visible, .pricing-card.visible, .testimonial-card.visible, .portfolio-item.visible {
  opacity: 1;
  transform: none;
} 