body {
  /* font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; */
  line-height: 1.5;
  /* background: linear-gradient(135deg, #f5f5f5 0%, #e8f4f8 50%, #f0e8f8 100%); */
  /* min-height: 100vh; */
}

.sap-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.sap-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 60px 20px;
  /* background: linear-gradient(135deg, rgb(50, 94, 198) 0%, rgba(26, 104, 115, 1) 100%); */
  background: linear-gradient(135deg, #e1bee7 0%, #d1c4e9 50%, #c5cae9 100%);
  border-radius: 10px;
  margin: 40px 20px;
  box-shadow: 0 10px 40px rgba(27, 67, 50, 0.2);
  animation: slideInUp 0.8s ease-out;
}

.sap-hero-content {
  color: #1a1a1a;
}

.sap-hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
  animation: fadeInDown 0.8s ease-out;
}

.sap-hero-content p {
  font-size: 1.1rem;
  margin-bottom: 15px;
  opacity: 0.95;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.sap-hero-highlight {
  font-weight: bold;
  color: #c33030;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.sap-hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slideInRight 0.8s ease-out 0.2s both;
}

.sap-hero-image img {
  width: 70%;
  height: 400px;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

/* Process Section */
.sap-process {
  padding: 80px 20px;
  /* background: linear-gradient(135deg, #c8e6c9 0%, #b3e5fc 50%, #e1bee7 100%); */
  background: linear-gradient(135deg, rgb(50, 94, 198) 0%, rgba(26, 104, 115, 1) 100%);
  margin: 40px 20px;
  border-radius: 10px;
}

.sap-process-title {
  text-align: center;
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 60px;
  animation: fadeInDown 0.8s ease-out;
}

.sap-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.sap-process-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  border: 3px solid #1b4332;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 0.8s ease-out;
  animation-fill-mode: both;
}

.sap-process-card:nth-child(1) {
  animation-delay: 0.2s;
}

.sap-process-card:nth-child(2) {
  animation-delay: 0.4s;
}

.sap-process-card:nth-child(3) {
  animation-delay: 0.6s;
}

.sap-process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.sap-process-card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #4caf50;
  color: white;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.sap-process-card h3 {
  color: #1a1a1a;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.sap-process-card p {
  color: #555;
  font-size: 0.95rem;
}

/* Form Section */
.sap-form-section {
  /* background: linear-gradient(135deg, #f0f4c3 0%, #fffde7 100%); */
  background: linear-gradient(135deg, #e1bee7 0%, #d1c4e9 50%, #c5cae9 100%);
  padding: 80px 20px;
  margin: 40px 20px;
  border-radius: 10px;
}

.sap-form-title {
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 50px;
  text-align: center;
  animation: fadeInDown 0.8s ease-out;
}

.sap-form {
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.sap-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.sap-form-row.full {
  grid-template-columns: 1fr;
}

.sap-form-group {
  display: flex;
  flex-direction: column;
}

.sap-form-group label {
  color: #1a1a1a;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.sap-form-group input,
.sap-form-group textarea {
  padding: 12px 15px;
  border: 2px solid #bbb;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: white;
}

.sap-form-group input:focus,
.sap-form-group textarea:focus {
  outline: none;
  border-color: #1b4332;
  box-shadow: 0 0 0 3px rgba(27, 67, 50, 0.1);
}

.sap-form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.sap-checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  margin-bottom: 25px;
}

.sap-checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #4caf50;
}

.sap-checkbox-group label {
  margin: 0;
  color: #555;
  font-weight: 500;
  cursor: pointer;
  font-size: 0.9rem;
}

.sap-btn {
  background: #63bef7;
  color: rgb(38, 20, 237);
  border: none;
  padding: 14px 50px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
  animation: pulse 2s infinite;
}

.sap-btn:hover {
  background: #425bfb;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4);
}

.sap-btn:active {
  transform: translateY(0);
}

/* Testimonials Section */
.sap-testimonials {
  /* background: linear-gradient(135deg, #e1bee7 0%, #d1c4e9 50%, #c5cae9 100%); */
  background: linear-gradient(135deg, rgb(50, 94, 198) 0%, rgba(26, 104, 115, 1) 100%);
  padding: 80px 20px;
  margin: 40px 20px;
  border-radius: 10px;
}

.sap-testimonials-title {
  text-align: center;
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 60px;
  animation: fadeInDown 0.8s ease-out;
}

.sap-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.sap-carousel-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  animation: fadeIn 0.5s ease-out;
}

.sap-testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  border: 3px solid #6a4c93;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.sap-testimonial-card:hover {
  transform: scale(1.03);
}

.sap-testimonial-text {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 15px;
  font-style: italic;
}

.sap-testimonial-author {
  color: #1a1a1a;
  font-weight: bold;
  font-size: 0.9rem;
}

.sap-carousel-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.sap-carousel-btn {
  background: beige;
  color: black;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.sap-carousel-btn:hover {
  background: rgb(73, 73, 243);
  transform: scale(1.1);
}

/* About Section */
.sap-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #e1bee7 0%, #d1c4e9 50%, #c5cae9 100%);
  margin: 40px 20px;
  border-radius: 10px;
}

.sap-about-image {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: slideInLeft 0.8s ease-out;
}

.sap-about-image img {
  width: 70%;
  height: 500px;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.sap-about-content {
  animation: slideInRight 0.8s ease-out;
}

.sap-about-content h2 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.sap-about-content p {
  color: rgba(4, 4, 4, 0.95);
  font-size: 1rem;
  margin-bottom: 15px;
  line-height: 1.8;
}

.sap-about-btn {
  background: #4caf50;
  color: white;
  border: none;
  padding: 12px 40px;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

.sap-about-btn:hover {
  background: #45a049;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4);
}

/* Animations */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
  }
  50% {
    box-shadow: 0 5px 25px rgba(76, 175, 80, 0.5);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .sap-hero {
    grid-template-columns: 1fr;
    padding: 40px 20px;
    margin: 20px;
  }

  .sap-hero-content h1 {
    font-size: 1.8rem;
  }

  .sap-hero-image img {
    width: 100%;
  }

  .sap-process-title,
  .sap-form-title,
  .sap-testimonials-title {
    font-size: 1.5rem;
  }

  .sap-form-row {
    grid-template-columns: 1fr;
  }

  .sap-carousel-container {
    grid-template-columns: 1fr;
  }

  .sap-about {
    grid-template-columns: 1fr;
    padding: 40px 20px;
    margin: 20px;
  }
  .sap-about-image img{
    width: 100%;
    height: 400px;
  }
  .sap-about-content h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .sap-container {
    padding: 0 5px;
  }

  .sap-hero {
    margin: 15px;
    padding: 30px 15px;
  }

  .sap-hero-content h1 {
    font-size: 1.4rem;
  }

  .sap-process,
  .sap-form-section,
  .sap-testimonials,
  .sap-about {
    margin: 15px;
    padding: 40px 15px;
  }

  .sap-process-grid {
    gap: 20px;
  }

  .sap-form-group input,
  .sap-form-group textarea {
    padding: 10px 12px;
  }

  .sap-btn {
    padding: 12px 40px;
    width: 100%;
  }
}
