/* contact.html styles */
.contact-hero {
  min-height: 50vh;
  background: linear-gradient(rgba(37, 99, 235, 0.1), rgba(37, 99, 235, 0.1));
}

.contact-form {
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--light-gray);
}

.form-control {
  border: 1px solid var(--light-gray);
  transition: border-color 0.3s;
}

.form-control:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Contact Info Cards */
.contact-info-card {
  background-color: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 12px;
  transition: transform 0.3s;
}

.contact-info-card:hover {
  transform: translateY(-5px);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(37, 99, 235, 0.1);
  border-radius: 12px;
}

/* Map Section */
.contact-map {
  height: 400px;
  background-color: #eee;
  border-radius: 12px;
  overflow: hidden;
}

/* FAQ Section */
.faq-item {
  background-color: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  transition: background-color 0.3s;
}

.faq-question:hover {
  background-color: var(--light);
}

.faq-answer {
  transition: max-height 0.3s ease, padding 0.3s ease;
}/* Base styles shared across all pages */
:root {
  --primary: #2563eb;
  --primary-light: #3b82f6;
  --primary-dark: #1d4ed8;
  --dark: #1e293b;
  --light: #f8fafc;
  --gray: #64748b;
  --light-gray: #e2e8f0;
  --white: #ffffff;
  --success: #10b981;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.btn {
  display: inline-block;
  background-color: var(--primary);
  color: white;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
}

/* Header/Navigation */
header {
  background-color: var(--white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

/* Footer */
footer {
  background-color: var(--dark);
  color: white;
  padding: 80px 0 30px;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }
  
  .section-title h2 {
    font-size: 28px;
  }
}/* services.html styles */
.services-hero {
  min-height: 60vh;
  background: linear-gradient(rgba(37, 99, 235, 0.1), rgba(37, 99, 235, 0.1));
}

.service-card {
  background-color: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 12px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-light);
}

.service-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(37, 99, 235, 0.1);
  border-radius: 12px;
}

/* Pricing Section */
.pricing-card {
  background-color: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 12px;
  position: relative;
}

.pricing-card.popular {
  border: 2px solid var(--primary);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary);
  color: white;
  border-radius: 20px;
}

.price-amount {
  font-size: 48px;
  color: var(--primary);
}

/* Process Section */
.process-step {
  position: relative;
  padding-left: 80px;
}

.process-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
}/* about.html styles */
.about-hero {
  min-height: 60vh;
  background: linear-gradient(rgba(37, 99, 235, 0.1), rgba(37, 99, 235, 0.1));
}

.about-content {
  display: flex;
  gap: 60px;
}

.about-image {
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-card {
  background-color: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 12px;
}

.team-member-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-light);
}

/* Values Section */
.values-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-card {
  background-color: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 12px;
}

.value-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(37, 99, 235, 0.1);
  border-radius: 12px;
}

/* index.html styles */
:root {
  --primary: #2563eb;
  --primary-light: #3b82f6;
  --primary-dark: #1d4ed8;
  --dark: #1e293b;
  --light: #f8fafc;
  --gray: #64748b;
  --light-gray: #e2e8f0;
  --white: #ffffff;
}

/* Hero Section */
.home-hero {
  min-height: 100vh;
  background: linear-gradient(to right, var(--light) 50%, var(--primary-light) 50%);
  position: relative;
  overflow: hidden;
}

.home-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 50%;
  width: 100%;
  height: 100%;
  background-color: var(--primary-light);
  transform: skewX(-15deg);
  transform-origin: top right;
  z-index: 0;
}

.home-hero-content {
  position: relative;
  z-index: 1;
}

.home-hero h1 {
  font-size: 52px;
  line-height: 1.2;
  animation: fadeIn 0.8s ease-out;
}

.home-hero-image {
  animation: fadeIn 0.8s ease-out 0.2s forwards;
  opacity: 0;
}

/* Features Grid */
.home-features {
  background-color: var(--white);
}

.feature-card {
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--light-gray);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-light);
}

/* Stats Section */
.home-stats {
  background-color: var(--primary);
  color: white;
}

/* Testimonials */
.testimonial-card {
  background-color: var(--white);
  border: 1px solid var(--light-gray);
}

/* CTA Section */
.home-cta {
  background-color: var(--primary);
  color: white;
}/* Footer Styles */
footer {
  background-color: var(--dark);
  color: white;
  padding: 80px 0 30px;
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-column h3 {
  font-size: 20px;
  margin-bottom: 25px;
  position: relative;
  font-weight: 600;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s;
}

.footer-column h3:hover::after {
  width: 60px;
}

.footer-column p {
  margin-bottom: 20px;
  color: #94a3b8;
  font-size: 15px;
  line-height: 1.6;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 15px;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-light);
  transform: translateX(5px);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: all 0.3s;
}

.social-links a:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  font-size: 14px;
}

/* Footer Newsletter */
.newsletter-form {
  display: flex;
  margin-top: 20px;
}

.newsletter-input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 8px 0 0 8px;
  font-size: 14px;
}

.newsletter-btn {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 0 20px;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  transition: background-color 0.3s;
}

.newsletter-btn:hover {
  background-color: var(--primary-dark);
}

/* Back to Top Button */
.back-to-top {
  position: absolute;
  right: 30px;
  top: -20px;
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.back-to-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
}