.elementor-1824 .elementor-element.elementor-element-e4bb17a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1824 .elementor-element.elementor-element-78a7373{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1824 .elementor-element.elementor-element-7128502{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1824 .elementor-element.elementor-element-0da6deb{margin:-32px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}.elementor-1824 .elementor-element.elementor-element-ec18cdb{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1824 .elementor-element.elementor-element-c4e3d4e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1824 .elementor-element.elementor-element-eb82309{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1824 .elementor-element.elementor-element-4dfd78d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}body.elementor-page-1824:not(.elementor-motion-effects-element-type-background), body.elementor-page-1824 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FCF5EE;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-aa67002 *//* HERO SECTION */
.hero-section {
  position: relative;
  height: 600px;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 20px;
}

.hero-title-3d {
  font-size: 50px;
  font-weight: 900;
  margin-bottom: 20px;
  text-shadow: 2px 2px 0 #ccc, 4px 4px 0 #bbb, 6px 6px 0 #aaa;
}

.hero-description {
  font-size: 18px;
  margin-bottom: 30px;
}

.hero-btn {
  background: linear-gradient(145deg, #ff4c4c, #ff6b6b);
  color: #fff;
  border: none;
  padding: 15px 35px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(255,76,76,0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hero-btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255,255,255,0.2);
  transform: rotate(45deg);
  transition: all 0.5s ease;
}

.hero-btn:hover::before {
  top: 100%;
  left: 100%;
}

.hero-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(255,76,76,0.5);
}

/* POPUP FORM */
.popup-form {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
  overflow-y: auto;
  padding: 50px 20px;
}

.popup-inner {
  background: rgba(255,255,255,0.95);
  max-width: 600px;
  margin: 50px auto;
  border-radius: 20px;
  padding: 30px 25px;
  position: relative;
}

.popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.popup-title {
  font-size: 28px;
  margin-bottom: 10px;
  color: #222;
}

.popup-desc {
  font-size: 16px;
  margin-bottom: 20px;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c72da3f */.whats-include-section {
  padding: 50px 20px;
  background: #fcf5ee;
  text-align: center;
}

/* 3D Heading */
.whats-title-3d {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 40px;
  color: #222;
  text-shadow: 2px 2px 0 #ccc, 4px 4px 0 #bbb, 6px 6px 0 #aaa;
}

/* Grid */
.whats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

/* Responsive */
@media (max-width: 992px) {
  .whats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .whats-grid {
    grid-template-columns: 1fr;
  }
}

/* Card */
.whats-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.whats-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Icon */
.whats-icon {
  font-size: 40px;
  width: 70px;
  height: 70px;
  line-height: 70px;
  background: #ff4c4c;
  color: #fff;
  border-radius: 50%;
  margin: 0 auto 15px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.whats-card:hover .whats-icon {
  background: #ff6b6b;
  transform: scale(1.1);
}

/* Card Title */
.whats-card h3 {
  font-size: 20px;
  color: #ff4c4c;
  margin-bottom: 10px;
}

/* Card Description */
.whats-card p {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-0da6deb */.stepwise-title-3d {
  font-size: 48px;
  font-weight: 900;
  color: #222;
  text-align: center;
  margin-bottom: 50px;
  text-shadow: 
    2px 2px 0 #ccc,
    4px 4px 0 #bbb,
    6px 6px 0 #aaa; /* 3D shadow effect */
}

.step-card {
  background: #fff;
  border-radius: 20px;
  padding: 50px 20px 30px; /* top padding for number overlap */
  text-align: center;
  border: 1px solid rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  box-shadow: 0 6px 15px rgba(255,255,255,0.3); /* subtle white glow */
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15), 0 6px 20px rgba(255,255,255,0.4);
}

/* Step Number Floating Above Card with Blue Color & White Glow */
.step-number {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(145deg, #007bff, #0056b3); /* blue gradient */
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  position: absolute;
  top: -35px; /* floating above card */
  left: 50%;
  transform: translateX(-50%);
  box-shadow:
    0 0 15px rgba(255,255,255,0.6),  /* white glow */
    0 4px 8px rgba(0,0,0,0.3),        /* shadow */
    inset 0 -4px 0 rgba(0,0,0,0.2);   /* inner shadow */
  z-index: 10;
}

/* Small shadow below number */
.step-number::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 6px;
  background: rgba(0,0,0,0.15);
  border-radius: 50%;
}

/* Step Icon */
.step-icon {
  font-size: 40px;
  margin-bottom: 15px;
  display: block;
}

/* Card Title */
.step-card h3 {
  font-size: 20px;
  color: #ff4c4c;
  margin-bottom: 10px;
}

/* Card Description */
.step-card p {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}

/* Grid Layout */
.steps-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 30px; /* vertical and horizontal gap */
  max-width: 1200px;
  margin: auto;
}

/* Responsive */
@media (max-width: 992px) {
  .steps-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 20px;
  }
}
@media (max-width: 600px) {
  .steps-wrapper {
    grid-template-columns: 1fr;
    gap: 40px 0;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-fd998a5 */.why-choose-us {
    padding: 40px 0;
    text-align: center;
}

.why-heading {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 40px;
    color: #fffff;
    text-shadow: 0px 4px 12px rgba(0,0,0,0.6);
}

.why-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    padding: 0 20px;
}

.why-card {
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(16px);
    border-radius: 18px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0px 8px 20px rgba(0,0,0,0.15);
    transition: 0.3s ease;
    border: 1px solid rgba(255,255,255,0.3);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 12px 28px rgba(0,0,0,0.25);
    background: rgba(255,255,255,0.28);
}

.why-icon {
    margin-bottom: 15px;
}

.why-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fffff;
    margin-bottom: 10px;
}

.why-card p {
    color: #e8e8e;
    font-size: 16px;
    line-height: 1.5;
}

@media(max-width: 900px) {
    .why-container {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */