@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;0,900;1,400;1,500;1,700;1,900&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&amp;display=swap");

.who-we-are {
  padding: 80px;
  background: #f8f9fa;
  overflow: hidden;
}
.who-we-are .container {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 0 20px;
}
.who-we-are .image-container {
  flex: 1;
  position: relative;
  perspective: 1000px;
}
.who-we-are .image-container img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(1.05) contrast(1.05);
}
.who-we-are .image-container:hover img {
  transform: translateY(-10px) rotateY(5deg);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.25);
}
.who-we-are .image-container::before {
  content: "";
  position: absolute;
  top: 20px;
  left: -20px;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #ffc108, #ffc108);
  border-radius: 20px;
  z-index: -1;
  opacity: 1;
  transform: rotate(-3deg);
  transition: all 0.5s ease;
}
.who-we-are .image-container:hover::before {
  transform: rotate(-5deg) scale(1.05);
}
.who-we-are .image-container::after {
  content: "";
  position: absolute;
  bottom: -15px;
  right: -10px;
  width: 100%;
  height: 100%;
  border: 3px solid rgb(0, 0, 0);
  border-radius: 20px;
  z-index: -1;
  animation: borderPulse 2s infinite;
}
@keyframes borderPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.who-we-are .content {
  flex: 1;
}
@media (max-width: 768px) {
  .who-we-are {
    padding: 40px 20px;
  }
  .who-we-are .container {
    flex-direction: column;
    gap: 30px;
  }
  .who-we-are .image-container img {
    height: 300px;
  }
}
.services-section {
  padding: 80px 0;
  background: #fff;
}
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.service-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.service-card:hover .service-icon {
  transform: rotateY(360deg);
  color: #f4b80f;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(45deg, #550100, #ff4d4d);
}
.service-icon {
  font-size: 45px;
  color: #e32228;
  margin-bottom: 20px;
  display: inline-block;
  transition: all 0.6s ease;
  width: 85px;
  height: 85px;
  line-height: 85px;
  text-align: center;
  border-radius: 50%;
  background: rgba(85, 1, 0, 0.1);
  box-shadow: 0 5px 15px rgba(85, 1, 0, 0.2);
}
.service-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}
.service-description {
  color: #666;
  line-height: 1.6;
  font-size: 15px;
}
.services-heading {
  text-align: center;
  margin-bottom: 50px;
}
.services-heading h2 {
  color: #e32228;
  font-size: 45px;
  font-family: "Poppins", sans-serif;

  margin-bottom: 20px;
}
/* Services section responsive */
@media (max-width: 768px) {
  .services-section {
    padding: 40px 0;
  }
  .services-heading h2 {
    font-size: 32px;
  }
  .services-container {
    grid-template-columns: 1fr;
    padding: 15px;
  }
}
.why-choose-us {
  padding: 80px 0;
  background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
}
.why-choose-heading {
  text-align: center;
  margin-bottom: 50px;
}
.why-choose-heading h2 {
  color: #e32228;
  font-size: 45px;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.feature-item {
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
}
.feature-item:hover {
  transform: translateY(-10px);
}
.feature-icon-wrapper {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 10px 20px rgba(85, 1, 0, 0.1);
}
.feature-icon-wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px dashed #e32228;
  border-radius: 50%;
  animation: rotate 15s linear infinite;
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.feature-item i {
  color: #e32228;
  font-size: 35px;
}
.feature-item h3 {
  font-size: 20px;
  margin: 15px 0;
  color: #333;
  position: relative;
  padding-bottom: 15px;
}
.feature-item h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #e32228, #ff4d4d);
}
.feature-item p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  padding: 0 15px;
}
/* Why choose us section responsive */
@media (max-width: 768px) {
  .why-choose-us {
    padding: 40px 0;
  }
  .why-choose-heading h2 {
    font-size: 32px;
  }
  .features-grid {
    gap: 25px;
    padding: 0 15px;
  }
}
.satisfaction-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.satisfaction-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  gap: 60px;
}

.satisfaction-content {
  flex: 1;
  position: relative;
  z-index: 2;
  padding: 40px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(85, 1, 0, 0.1);
}

.satisfaction-title {
  font-size: 2.5rem;
  color: #e32228;
  margin-bottom: 25px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 15px;
}

.satisfaction-title i {
  font-size: 2rem;
  color: #f4b80f;
}

.satisfaction-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 30px;
}

.satisfaction-stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: rgba(85, 1, 0, 0.05);
  border-radius: 15px;
  flex: 1;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #e32228;
  margin-bottom: 10px;
}

.stat-label {
  color: #666;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .satisfaction-container {
    flex-direction: column;
  }
  .satisfaction-stats {
    flex-direction: column;
  }
}
/* Satisfaction section responsive */
@media (max-width: 576px) {
  .satisfaction-section {
    padding: 50px 0;
  }
  .satisfaction-content {
    padding: 25px;
  }
  .satisfaction-title {
    font-size: 2rem;
  }
  .satisfaction-stats {
    gap: 15px;
  }
  .stat-number {
    font-size: 2rem;
  }
}
.download-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgb(227 34 40 / 84%) 0%, rgb(168 15 20 / 91%) 100%),url("https://img.freepik.com/free-vector/hand-drawn-food-pattern_1176-269.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.download-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.download-title {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #f4b80f; /* Changed to yellow/gold for better contrast */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.download-text {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.store-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.store-button {
  display: flex;
  align-items: center;
  padding: 12px 30px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  text-decoration: none;
  color: #e32228;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(5px);
}

.store-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  background: white;
}

.store-button i {
  font-size: 2rem;
  margin-right: 15px;
}

.button-text {
  text-align: left;
}

.button-label {
  font-size: 0.8rem;
  opacity: 0.8;
}

.button-store {
  font-size: 1.2rem;
  font-weight: bold;
}
/* Download section responsive */
@media (max-width: 576px) {
  .download-section {
    padding: 40px 0;
  }
  .download-title {
    font-size: 2rem;
  }
  .download-text {
    font-size: 1rem;
  }
  .store-buttons {
    flex-direction: column;
    align-items: center;
  }
  .store-button {
    width: 100%;
    justify-content: center;
  }
}
