.elementor-2173 .elementor-element.elementor-element-a7a39c6{width:100%;max-width:100%;}.elementor-2173 .elementor-element.elementor-element-a7a39c6 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}@media(max-width:767px){.elementor-2173 .elementor-element.elementor-element-d17be0b{margin-top:0px;margin-bottom:0px;padding:0px 0px 0px 0px;}}/* Start custom CSS *//* Base setup */
body {
  font-family: 'Inter', sans-serif;
  color: #1e293b;
  background: #fdfdfd;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

h1, h2, h3, h4 {
  font-weight: 700;
}
body h1 { font-size: 4.2rem; }
body h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 3.2rem;
}


/* Hero */
.hero {
  background: linear-gradient(120deg, #dfe9f3 0%, #ffffff 100%);
  padding: 4rem 1rem 2rem;
  text-align: center;
  animation: fadeIn 1.5s ease-in;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.highlight {
  color: #f97316;
}

.hero .subtitle {
  color: #475569;
  margin-bottom: 2rem;
}

.cta-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.cta-form input {
  padding: 0.8rem 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  flex: 1 1 250px;
  max-width: 300px;
}

.cta-form button {
  background: #f97316;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 0.8rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-form button:hover {
  background: #ea580c;
}

.hero-image img {
  margin-top: 3rem;
  max-width: 500px;
  width: 100%;
  animation: float 6s ease-in-out infinite;
}

.problem-list {
    display: flex;
    width: 100%;
    justify-content: center;
}

body .elementor-widget li.elementor-icon-list-item {
  text-align: left; font-size:2rem;
}

.space-bottom{
    margin-bottom: 2rem;
}
/* Sections */
.section {
  padding: 3rem 0;
}

img{
    max-width: 100%;
    height: auto;}
.light-bg {
  background: #fff7ed;
}

/* Icon grid */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.icon-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  text-align: center;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.center{
    text-align: center;
}
.icon-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.icon-card img {
  width: 50px;
  margin-bottom: 0.8rem;
}

.icon-card h4 {
  color: #1e293b;
}

/* Cycle text */
.shift-cycle {
  text-align: center;
  font-style: italic;
  color: #475569;
  animation: fadeInUp 1.5s ease-out;
}


/* Guide section */
.guide {
  text-align: center;
}

.highlight {
  color: #ff9a3d;
}

.guide-content {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1rem;
    margin-top: 1rem;
    flex-direction: row;
    text-align: left;
}

.guide-photo {
  border-radius: 50%;
  width: 300px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.6s ease;
}

.pulse:hover {
  transform: scale(1.08);
}
/* Footer cards */
.footer-cards {
  background: linear-gradient(135deg, #f6f6f6 0%, #ffffff 100%);
  text-align: center;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.info-card {
  background: white;
  border-radius: 12px;
  padding: 2rem 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-6px);
}

.info-card img {
  width: 60px;
  margin-bottom: 1rem;
}

.btn-primary {
  background-color: #f97316;
  color: white;
  padding: 0.9rem 1.8rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background-color: #ea580c;
}

/* Footer */
.footer {
  background-color: #1e293b;
  color: white;
  text-align: center;
  padding: 2.5rem 1rem;
}

.footer blockquote {
  font-size: 1.2rem;
  font-style: italic;
  opacity: 0.9;
}

.formkit-powered-by-convertkit-container{display:none!important;}
/* Animations */
@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); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Fade-in helper classes */
.fade-in { animation: fadeIn 1.2s ease forwards; }
.fade-up { animation: fadeInUp 1.4s ease forwards; }

/* Responsive */
@media (max-width: 768px) {
 
  .cta-form { flex-direction: column; }
  .hero-image img { max-width: 100%; }

}
@media (min-width: 768px) {
 .shift-cycle img{max-width: 50%;}
}/* End custom CSS */