
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: white;
  color: black;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.hero {
  background-color: rgba(185, 15, 15, 0.7);
  color: white;
  text-align: center;
  padding: 4rem 1rem;
}

.hero .btn-primary {
  background-color: orange;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}

h2{
  font-weight:700;
  font-size: 2.5rem;
  text-align: center;
}

/* === Features Section === */
.features {
  background-color: white;
  color: black;
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}

.features h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.feature-item {
  background-color: #fef6f0;
  border-left: 4px solid orange;
  padding: 1rem;
  border-radius: 6px;
}

.feature-item {
  position: relative;
  padding-left: 2rem;
}

.feature-item {
  position: relative;
  padding-left: 2rem;
}

.feature-item {
  position: relative;
  padding-left: 2.5rem;
}

.feature-item::before {
  content: "✔"; /* Unicode checkmark */
  position: absolute;
  left: 0.3rem;
  top: 1rem;
  width: 1.5rem;
  height: 1.5rem;
  background-color: orange;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: bold;
}

/* Features Section Animation */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

.features img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: float 6s ease-in-out infinite;
  max-width: 100%;
  height: auto;
  z-index: 1;
}

.features .container {
  position: relative;
  z-index: 2;
}

/* === Pricing Section === */
.pricing {
  background-color: #f8f8f8;
  color: black;
  padding-top: 2rem;
}

.price-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.card {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 2rem;
  width: 280px;
  text-align: center;
}

.card h3 {
  color: red;
}

.card p {
  font-size: 1.25rem;
  color: black;
}

.card ul {
  list-style-type: none;
  padding: 0;
}

.card ul li {
  margin: 0.5rem 0;
}

.btn-outline {
  background-color: transparent;
  color: red;
  border: 2px solid red;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}

.btn-outline:hover {
  background-color: red;
  color: white;
}

.btn-primary {
  background-color: orange;
  color: white;
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
}

/* === Contact Form === */
.contact-form {
  background-color: white; /*#fef6f0*/;
  color: white;
  padding: 1rem;
  text-align: center;
  
}

.contact-form form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 10px;
  background-color: #ffffff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
/*  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;   */

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: none;
  border-radius: 4px;
  width: 100%;
  background-color: #f8f8f8;
}

.contact-form .container {
  display: flex;
}

.column1{
  width: 30%;
}

.column2{
  width: 70%;
}

.contact-form button {
  background-color: orangered;
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

/* === Footer === */
footer {
  background-color: black;
  color: white;
  text-align: center;
  
}
button{
  color: red;
}

/* === Testimonials Section === */
.testimonials {
  background-color: #f8f8f8;
  color: black;
  padding: 2rem 1rem;
  text-align: center;
}

.testimonials h2 {
  margin-bottom: 2rem;
}

.testimonial-slider {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  min-height: 150px;
}

.testimonial {
  display: none;
  font-style: italic;
  transition: opacity 0.5s ease-in-out;
}

.testimonial.active {
  display: block;
}

input[type="checkbox"] {
  accent-color: orange; /* Modern browsers */
}

.footer-top {
  background-color: #b90f0f;
  color: white;
  padding: 3rem 1rem 2rem 1rem;
}

.footer-top-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.footer-column {
  flex: 1 1 250px;
}

.footer-column h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: orange;
}

.footer-column p,
.footer-column li,
.footer-column a {
  color: white;
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
  color: orange;
}

.footer-column p i {
  margin-right: 10px;
  color: orange;
  width: 20px;
  text-align: center;
}

.footer-links li a i {
  margin-right: 8px;
  color: orange;
  width: 20px;
  text-align: center;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icons a i {
  color: white;
  font-size: 1.2rem;
}

.social-icons a:hover {
  background-color: orange;
  transform: translateY(-3px);
}

.social-icons a:hover i {
  color: white;
}

/* KPI Section Styles */
.kpi-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
}

.kpi-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.kpi-item:hover {
  transform: translateY(-5px);
}

.kpi-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  /*background: linear-gradient(90deg, #ff4d4d, #ff8533); */
}

.kpi-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.kpi-number {
  font-size: 3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
  display: inline-block;
}

.kpi-label {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 5px;
}

.kpi-symbol {
  font-size: 1.5rem;
  color: #ff4d4d;
  font-weight: 600;
  display: inline-block;
  margin-left: 5px;
}

@media (max-width: 600px) {
  .kpi-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .kpi-item {
    padding: 20px;
  }
  
  .kpi-number {
    font-size: 2.5rem;
  }

  .contact-form .container {
    display: flex;
    flex-direction: column;
  }
  
  .column1{
    width: 100%;
    margin-bottom: 4%;
    text-align: center;
    justify-content: center;
    align-items: center;
  }
  
  .column2{
    width: 100%;
    text-align:center;
    justify-content: center;
    align-items: center;
  }
}

