.elementor-5666 .elementor-element.elementor-element-78dde97{--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-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-5666 .elementor-element.elementor-element-2732fdd{text-align:center;text-shadow:-13px 9px 15px rgba(0,0,0,0.3);color:#7A7A7A;}.elementor-5666 .elementor-element.elementor-element-2732fdd p{margin-block-end:25px;}.elementor-5666 .elementor-element.elementor-element-af0c1fe{--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;}/* Start custom CSS for html, class: .elementor-element-c8d4a88 */.contact-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 30px;
  font-family: 'Poppins', Arial, sans-serif;
  background: linear-gradient(135deg, #ff7a00, #ffb347);
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  color: #fff;
}

/* Heading */
.contact-heading {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}

/* Paragraph */
.contact-paragraph {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #fff;
  max-width: 800px;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255,255,255,0.15);
  padding: 15px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

/* Hover effect */
.contact-item:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.25);
}

/* Icons */
.contact-item i {
  font-size: 20px;
  background: #fff;
  color: #ff7a00;
  padding: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Links inside contact-item */
.contact-item a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* Social Media */
.social-media {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-icon {
  width: 50px;
  height: 50px;
  background: #fff;
  color: #ff7a00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 20px;
  text-decoration: none;
}

.social-icon:hover {
  background: #000;
  color: #fff;
  transform: scale(1.15) rotate(10deg);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-section {
    padding: 40px 20px;
  }
}/* End custom CSS */