.elementor-kit-4{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-4 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* General Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  min-height: 100vh;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.fade-in {
  animation: fadeIn 0.5s ease-in;
}

.slide-in {
  animation: slideIn 0.6s ease-in;
}

.pulse {
  animation: pulse 1.5s infinite;
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(90deg, #ef4444, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Gradient Button */
.gradient-button {
  background: linear-gradient(90deg, #22c55e, #86efac);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.2s;
}

.gradient-button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

/* Hero Section */
.hero-section {
  background: #ffffff;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section .elementor-widget-heading h1,
.hero-section .elementor-widget-heading h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-section .gradient-text {
  font-size: 3rem;
  line-height: 1.2;
}

.hero-section .gradient-button {
  margin-top: 1.5rem;
  display: inline-block;
}

.hero-section .elementor-widget-image img {
  max-width: 100%;
  border-radius: 0.5rem;
  transition: transform 0.3s;
}

.hero-section .elementor-widget-image img:hover {
  transform: scale(1.05);
}

/* Featured Content Section */
.featured-section {
  padding: 3rem 2rem;
  background: #ffffff;
}

.featured-section .elementor-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border: 2px solid transparent;
  background: linear-gradient(#ffffff, #ffffff) padding-box,
              linear-gradient(90deg, #ef4444, #f97316) border-box;
}

.feature-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 1rem;
}

/* Product Showcase Section */
.product-section {
  padding: 3rem 2rem;
  background: #ffffff;
}

.product-section .elementor-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-card {
  background: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border: 2px solid transparent;
  background: linear-gradient(#ffffff, #ffffff) padding-box,
              linear-gradient(90deg, #ef4444, #f97316) border-box;
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  padding: 1rem;
  text-align: center;
}

.product-card .price {
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
}

.product-card .gradient-button {
  display: block;
  margin: 0 auto 1rem;
}

/* Testimonial Section */
.testimonial-section {
  padding: 3rem 2rem;
  background: #ffffff;
}

.testimonial-section .elementor-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: #f8fafc;
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s;
}

.testimonial-card.slide-in {
  animation: slideIn 0.6s ease-in;
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  object-fit: cover;
}

.testimonial-card p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.testimonial-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
}

/* CTA Section */
.cta-section {
  padding: 3rem 2rem;
  text-align: center;
  background: #ffffff;
}

.cta-section .gradient-button {
  margin-top: 1.5rem;
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .featured-section .elementor-container,
  .product-section .elementor-container,
  .testimonial-section .elementor-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-section .gradient-text {
    font-size: 2.5rem;
  }
}

@media (max-width: 640px) {
  .featured-section .elementor-container,
  .product-section .elementor-container,
  .testimonial-section .elementor-container {
    grid-template-columns: 1fr;
  }

  .hero-section .gradient-text {
    font-size: 2rem;
  }

  .hero-section,
  .featured-section,
  .product-section,
  .testimonial-section,
  .cta-section {
    padding: 2rem 1rem;
  }
}/* End custom CSS */