:root {
  --primary-color: #ff6b00;
  --primary-dark: #cc5500;
  --primary-light: #fff2e6;
  --gradient-start: #cc5500;
  --gradient-end: #ff6b00;
  --text-heading: #cc5500;
  --accent-color: #ff6b00;
  --text-light: #fff;
  --box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  --section-bg: #fff7f0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(to bottom right, var(--primary-light), var(--section-bg));
  color: #333;
  line-height: 1.6;
}

.header-bar {
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.header-bar h1 {
  font-size: 28px;
  color: var(--text-light);
  font-weight: 700;
}

.header-bar a.button-demo {
  background: var(--text-light);
  color: var(--accent-color);
  padding: 10px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.header-bar a.button-demo:hover {
  background-color: #ffeedf;
  transform: scale(1.05);
}

.main-content {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

section {
  padding: 60px 0;
}

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  animation: fadeIn 0.8s ease-in;
}

.hero-text {
  max-width: 600px;
}

.hero-text h2 {
  font-size: 40px;
  color: var(--text-heading);
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 20px;
}

.points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.points li {
  list-style: none;
  padding-left: 20px;
  position: relative;
}

.points li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.form-section {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--box-shadow);
  max-width: 900px;
  margin: 0 auto 60px;
  animation: fadeInUp 1s ease-out;
}

.form-section h3 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--text-heading);
  font-size: 28px;
  font-weight: 700;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.form-grid input {
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #ccc;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-grid input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 6px rgba(255, 107, 0, 0.3);
}

.features-section h2 {
  text-align: center;
  color: var(--text-heading);
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: 700;
}

img.fullwidth-img {
  display: block;
  margin: 20px auto;
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

img.fullwidth-img:hover {
  transform: scale(1.02);
}

.ipd-blog h2 {
  text-align: center;
  font-size: 30px;
  color: var(--text-heading);
  margin-bottom: 20px;
  font-weight: 700;
}

.ipd-blog ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  padding: 20px 0;
}

.ipd-blog li {
  list-style: none;
  padding-left: 20px;
  position: relative;
}

.ipd-blog li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: var(--accent-color);
}

.ipd-blog p {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px;
  font-size: 17px;
}

footer,
.footer {
  background-color: var(--text-heading);
  color: var(--text-light);
  text-align: center;
  padding: 60px 20px 20px;
  font-size: 15px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.carousel-img {
  border-radius: 30px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.carousel-img:hover {
  transform: scale(1.01);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-size: 70% 70%;
  filter: invert(100%);
}

.carousel-control-prev,
.carousel-control-next {
  width: auto;
  padding: 10px;
}

.carousel-indicators li {
  background-color: var(--accent-color);
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.text-purple {
  color: var(--accent-color);
}

.feature-card {
  border-radius: 1rem;
  background-color: #fff;
  transition: all 0.3s ease;
  border-radius: 16px;
}

.feature-card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transform: translateY(-5px);
}

.features-grid .row > .col {
  margin-bottom: 20px;
}

.feature-icon {
  font-size: 32px;
  color: var(--accent-color);
}

@media (max-width: 576px) {
  .feature-icon {
    font-size: 28px;
  }
}

.feature-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.feature-section:nth-of-type(even) {
  flex-direction: row-reverse;
}

.feature-image {
  flex: 1 1 40%;
  max-width: 500px;
}

.feature-content {
  flex: 1 1 55%;
}

.feature-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.feature-image img:hover {
  transform: scale(1.02);
}

.feature-content h2 {
  color: var(--text-heading);
  font-size: 28px;
  margin-bottom: 16px;
  font-weight: 700;
}

.feature-content p {
  font-size: 17px;
  margin-bottom: 16px;
}

.feature-content ul {
  padding-left: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  list-style: none;
}

.feature-content li {
  position: relative;
  padding-left: 20px;
}

.feature-content li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.card-slider {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 20px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  white-space: nowrap;
}

.card-slider::-webkit-scrollbar {
  height: 8px;
}

.card-slider::-webkit-scrollbar-thumb {
  background-color: var(--accent-color);
  border-radius: 10px;
}

.slide-card {
  flex: 0 0 auto;
  width: 300px;
  height: 350px;
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--box-shadow);
  scroll-snap-align: start;
  transition: transform 0.3s ease;
  margin-bottom: 10px;
}

.slide-card:hover {
  transform: scale(1.02);
}

.card-title {
  font-size: 24px;
  color: var(--text-heading);
  margin-bottom: 20px;
  font-weight: bold;
}

.card-info {
  font-size: 16px;
  color: #555;
}

.features-section {
  padding: 60px 20px;
  background-color: var(--section-bg);
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  margin: 40px auto;
  max-width: 1200px;
  transition: box-shadow 0.3s ease;
}

.features-section:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin: auto;
  width: auto;
}

.footer-logo h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--text-light);
}

.footer-logo p {
  max-width: 300px;
  line-height: 1.6;
}

.footer-modules h4,
.footer-contact h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text-light);
}

.footer-modules ul {
  list-style: none;
  padding: 0;
}

.footer-modules ul li {
  margin-bottom: 8px;
  color: #ddd;
}

.footer-contact p {
  margin-bottom: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 30px;
  font-size: 14px;
  color: #ccc;
}

@media (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.hero-image {
  flex: 1 1 300px;
  max-width: 500px;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--box-shadow);
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .hero-text h2 {
    font-size: 28px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .feature-content {
    grid-template-columns: 1fr !important;
  }

  .hero-image {
    max-width: 100%;
  }
}
