/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

body {
  background-color: #f9faff;
  color: #1a1a1a;
  line-height: 1.6;
}

/* Header */
.site-header {
  width: 100%;
  background-color: #ffffffee;
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0.8rem 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding: 0 1rem;
}

.logo {
  height: 60px;
}

.nav {
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #0077ff;
}

.cta {
  padding: 0.6rem 1.3rem;
  background: linear-gradient(90deg, #0077ff, #00bfff);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s;
}

.cta:hover {
  opacity: 0.85;
}

.mobile-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 6rem 1rem 4rem;
  background: linear-gradient(120deg, #0077ff, #00bfff);
  color: #fff;
  text-align: center;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

.btn.primary {
  padding: 0.7rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  background: linear-gradient(90deg, #0077ff, #00bfff);
  color: #fff;
  border: none;
  text-decoration: none;
}

.btn.secondary {
  padding: 0.7rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  background: #fff;
  color: #0077ff;
  border: 2px solid #0077ff;
  text-decoration: none;
  margin-top: 1rem;
}

/* Sections */
.section {
  padding: 4rem 1rem;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* Cards Grid */
.cards {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

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

.card {
  background: #fff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.card img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: #0077ff;
}

.card p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.testimonial p {
  font-style: italic;
}

/* About page styles */
.about-content h2, .about-content h3 {
  color: #0077ff;
  margin-top: 1.5rem;
}

.about-content ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-top: 1rem;
}

/* Contact form */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin-bottom: 2rem;
}

.contact-form .form-row {
  display: flex;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem 1rem;
  border-radius: 12px;
  border: 1px solid #ccc;
  width: 100%;
  font-size: 1rem;
}

.contact-info p, .contact-info a {
  margin-top: 0.5rem;
}

/* Footer */
.site-footer {
  background: #0077ff;
  color: #fff;
  padding: 3rem 1rem;
  text-align: center;
  margin-top: 4rem;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.site-footer a {
  color: #fff;
  text-decoration: underline;
  transition: opacity 0.3s;
}

.site-footer a:hover {
  opacity: 0.8;
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .nav {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 100%;
    right: 0;
    width: 200px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

  .nav.active {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

  .form-row {
    flex-direction: column;
  }
}
