/* Ensure LinkedIn icon is visible and larger in contact-info */
.contact-info a[href*="linkedin"] i.fab {
  font-size: 2.1em;
  color: #3949ab;
  vertical-align: middle;
}
@media (max-width: 900px) {
  header {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    text-align: center;
  }
  nav ul {
    gap: 1.2rem;
    flex-direction: column;
    align-items: center;
  }
  .logo {
    font-size: 1.3rem;
  }
  .hero {
    padding: 2rem 1rem;
    font-size: 1.1rem;
    border-radius: 0 0 18px 18px;
  }
  .services {
    padding: 1.2rem 0.5rem;
    border-radius: 12px;
    max-width: 98vw;
  }
  .service-cards-wrapper {
    gap: 1rem;
  }
  .service-card {
    width: 98vw;
    max-width: 99vw;
    min-width: 0;
    padding: 1.2rem 0.7rem 0.7rem 0.7rem;
  }
  .contact {
    padding: 1rem;
    border-radius: 10px;
    max-width: 98vw;
  }
  form {
    padding: 1rem 0.5rem;
  }
  footer {
    padding: 1.2rem 0 0.8rem 0;
    border-radius: 12px 12px 0 0;
  }
}
@media (max-width: 600px) {
  .service-cards-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
  }
  .service-card {
    width: 99vw;
    max-width: 99vw;
    min-width: 0;
    padding: 0.7rem 0.3rem 0.3rem 0.3rem;
  }
  .card-header {
    font-size: 1.1rem;
  }
  .contact {
    padding: 0.7rem;
    border-radius: 8px;
    max-width: 99vw;
  }
  form {
    padding: 0.7rem 0.3rem;
  }
  input, select, textarea {
    font-size: 1rem;
    padding: 0.7rem;
  }
  button {
    font-size: 1rem;
    padding: 0.8rem;
  }
  footer {
    padding: 0.8rem 0 0.5rem 0;
    border-radius: 8px 8px 0 0;
  }
}
.service-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.service-card {
  background: #f7f9fc;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(30,41,126,0.10);
  width: 340px;
  min-width: 260px;
  max-width: 370px;
  padding: 2rem 1.2rem 1.2rem 1.2rem;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: fadeInUp 1.1s;
}
.service-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 6px 24px rgba(30,41,126,0.18);
  background: #fffbe6;
}
.card-header {
  font-size: 2.1rem;
  font-weight: 700;
  color: #232a4d;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.service-card li {
  margin-bottom: 1.1rem;
  font-size: 1.05rem;
  color: #3949ab;
  background: #f1f4fa;
  border-radius: 8px;
  padding: 0.7rem 0.7rem 0.5rem 0.7rem;
  box-shadow: 0 1px 4px rgba(30,41,126,0.04);
}
.service-card .price {
  display: inline-block;
  margin-left: 0.5rem;
  font-weight: 700;
  color: #ffb300;
  font-size: 1.05rem;
}
.service-card .note {
  display: block;
  font-size: 0.98rem;
  color: #232a4d;
  font-style: italic;
  margin-top: 0.2rem;
}
@media (max-width: 1100px) {
  .service-cards-wrapper {
    gap: 1.2rem;
  }
  .service-card {
    width: 90vw;
    max-width: 400px;
  }
}
@media (max-width: 700px) {
  .service-cards-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }
  .service-card {
    width: 98vw;
    max-width: 99vw;
    min-width: 0;
    padding: 1.2rem 0.7rem 0.7rem 0.7rem;
  }
}
.clickable {
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.clickable:hover {
  background: #ffb300 !important;
  color: #232a4d !important;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background: rgba(30,41,126,0.18);
  animation: fadeInDown 0.5s;
}
.modal-content {
  background: #fff;
  margin: 8% auto;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  max-width: 420px;
  box-shadow: 0 4px 24px rgba(30,41,126,0.18);
  position: relative;
  animation: fadeInUp 0.7s;
}
.close {
  color: #3949ab;
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  font-size: 2rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.2s;
}
.close:hover {
  color: #ffb300;
}
/* Modern, responsive styles for IT Services Pricing Website */
body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(135deg, #f7f9fc 0%, #e3e6f3 100%);
  color: #222;
  scroll-behavior: smooth;
  transition: background 0.5s;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #232a4d;
  color: #fff;
  padding: 1.2rem 2.5rem;
  box-shadow: 0 2px 12px rgba(30, 41, 126, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  animation: fadeInDown 0.8s;
}
.logo {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #ffb300;
  text-shadow: 0 2px 8px rgba(30,41,126,0.08);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
}
nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
nav a:hover {
  background: #ffb300;
  color: #232a4d;
  box-shadow: 0 2px 8px rgba(255,179,0,0.15);
}
.hero {
  text-align: center;
  padding: 5rem 2rem 3rem 2rem;
  background: linear-gradient(90deg, #232a4d 0%, #3949ab 100%);
  color: #fff;
  border-radius: 0 0 30px 30px;
  box-shadow: 0 4px 24px rgba(30,41,126,0.10);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
  opacity: 0.13;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  animation: fadeInUp 1.2s;
}
.hero h1 {
  font-size: 2.7rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  text-shadow: 0 2px 12px rgba(30,41,126,0.18);
}
.hero p {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 6px rgba(30,41,126,0.10);
}
.services {
  padding: 2.5rem 2.5rem;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(30,41,126,0.07);
  margin: 2rem auto;
  max-width: 1400px;
}
.services h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 2rem;
  font-weight: 700;
  color: #232a4d;
}
/* Service Table Styles */
/* Service Table Styles */
.services-table-wrapper {
  overflow-x: auto;
  margin: 0 auto;
  max-width: 1000px;
}
.services-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #f7f9fc;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(30, 41, 126, 0.10);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}
.services-table th, .services-table td {
  padding: 1.1rem 0.8rem;
  border-bottom: 1px solid #e3e6f3;
  text-align: left;
}
.services-table th {
  background: linear-gradient(90deg, #232a4d 0%, #3949ab 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}
.services-table tr:last-child td {
  border-bottom: none;
}
.services-table td {
  font-size: 1rem;
  color: #232a4d;
}
.services-table tbody tr {
  transition: background 0.2s, box-shadow 0.2s;
}
.services-table tbody tr:hover {
  background: #e3e6f3;
  box-shadow: 0 2px 8px rgba(30,41,126,0.08);
}
.services-table td:nth-child(3) {
  font-weight: 600;
  color: #ffb300;
}
.services-table td:nth-child(4) {
  font-style: italic;
  color: #3949ab;
}
/* Contact Section */
/* Contact Section */
.contact {
  padding: 2.5rem 2.5rem;
  background: linear-gradient(135deg, #e3e6f3 0%, #f7f9fc 100%);
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(30,41,126,0.10);
  margin: 2.5rem auto;
  max-width: 900px;
  animation: fadeInUp 1.2s;
@media (max-width: 1200px) {
  .service-cards-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.2rem;
    max-width: 98vw;
  }
  .services {
    padding: 1.2rem 0.5rem;
    border-radius: 12px;
    max-width: 98vw;
  }
  .contact {
    padding: 1rem;
    border-radius: 10px;
    max-width: 98vw;
  }
}
}
.contact h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #232a4d;
  margin-bottom: 1.5rem;
}
.contact-info {
  margin-bottom: 1.7rem;
  font-size: 1.08rem;
  color: #3949ab;
  background: #f1f4fa;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 1px 6px rgba(30,41,126,0.05);
}
form {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(30,41,126,0.07);
  padding: 2rem 1.5rem;
  margin-top: 1rem;
}
input, select, textarea {
  padding: 1rem;
  border: 1.5px solid #bfc3d1;
  border-radius: 10px;
  font-size: 1.08rem;
  background: #f7f9fc;
  box-shadow: 0 1px 6px rgba(30,41,126,0.06);
  transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #ffb300;
  box-shadow: 0 2px 12px rgba(255,179,0,0.13);
}
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%233949ab" height="20" viewBox="0 0 20 20" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M7.293 7.293a1 1 0 011.414 0L10 8.586l1.293-1.293a1 1 0 111.414 1.414l-2 2a1 1 0 01-1.414 0l-2-2a1 1 0 010-1.414z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.2em;
}
textarea {
  min-height: 120px;
  resize: vertical;
}
button {
  background: linear-gradient(90deg, #232a4d 0%, #3949ab 100%);
  color: #fff;
  border: none;
  padding: 1.1rem;
  border-radius: 10px;
  font-size: 1.12rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(30,41,126,0.10);
  transition: background 0.2s, box-shadow 0.2s;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 0.5rem;
}
button:hover {
  background: #ffb300;
  color: #232a4d;
  box-shadow: 0 4px 18px rgba(255,179,0,0.18);
}
#formMessage {
  margin-top: 1rem;
  text-align: center;
  font-weight: 600;
  font-size: 1.08rem;
}
footer {
  background: linear-gradient(90deg, #232a4d 0%, #3949ab 100%);
  color: #fff;
  text-align: center;
  padding: 1.7rem 0 1.2rem 0;
  margin-top: 2.5rem;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -2px 12px rgba(30,41,126,0.08);
}
.social-links {
  margin-bottom: 0.7rem;
}
.social-links a {
  color: #fff;
  margin: 0 0.7rem;
  font-size: 1.3rem;
  text-decoration: none;
  border-radius: 50%;
  padding: 0.3rem 0.6rem;
  background: rgba(255,255,255,0.08);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 4px rgba(30,41,126,0.04);
}
.social-links a:hover {
  background: #ffb300;
  color: #232a4d;
  box-shadow: 0 2px 8px rgba(255,179,0,0.15);
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 900px) {
  .services-table th, .services-table td {
    padding: 0.7rem 0.4rem;
    font-size: 0.95rem;
  }
  .services-table-wrapper {
    max-width: 100%;
  }
  .services {
    padding: 1.2rem 0.5rem;
  }
}
@media (max-width: 600px) {
  header {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  .logo {
    font-size: 1.3rem;
  }
  .hero {
    padding: 2rem 1rem;
    font-size: 1.1rem;
  }
  .services, .contact {
    padding: 1rem;
    border-radius: 10px;
  }
  .contact {
    max-width: 98vw;
  }
  .services-table th, .services-table td {
    font-size: 0.9rem;
  }
}
