/*
Theme Name: Haxcode
Theme URI: https://haxcode.com/
Description: Haxcode Child Theme for Hello Elementor
Author: Haxcode
Author URI: https://haxcode.com/
Template: hello-elementor
Version: 1.0.0
Text Domain: haxcode
*/

:root {
  --haxcode-primary: #0f0f14;
  --haxcode-primary-dark: #08080b;
  --haxcode-secondary: #ff6200;
  --haxcode-secondary-hover: #e05600;
  --haxcode-background: #f5f6f8;
  --haxcode-text: #0f0f14;
  --haxcode-white: #ffffff;
  --haxcode-card-bg: #ffffff;
  --haxcode-border: #e2e4e8;
  --haxcode-muted: #6b7280;
}

body {
  background-color: var(--haxcode-background);
  color: var(--haxcode-text);
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  color: var(--haxcode-text);
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

/* Links */
a {
  color: var(--haxcode-secondary);
  transition: color 0.3s ease;
}

a:hover,
a:focus {
  color: var(--haxcode-secondary-hover);
}

/* Buttons */
.button,
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.elementor-button {
  background-color: var(--haxcode-secondary) !important;
  color: var(--haxcode-white) !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif !important;
  transition: all 0.3s ease !important;
}

.button:hover,
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
.elementor-button:hover {
  background-color: var(--haxcode-primary) !important;
  color: var(--haxcode-white) !important;
  transform: translateY(-1px);
}

/* Elementor Specific Palette & Typography Enhancements */
.elementor-kit-4313 {
  --e-global-color-primary: #0f0f14;
  --e-global-color-secondary: #ff6200;
  --e-global-color-text: #0f0f14;
  --e-global-color-accent: #f5f6f8;
  --e-global-typography-primary-font-family: "Roboto", sans-serif;
  --e-global-typography-secondary-font-family: "Roboto", sans-serif;
  --e-global-typography-text-font-family: "Roboto", sans-serif;
  --e-global-typography-accent-font-family: "Roboto", sans-serif;
}

/* Global Font Override to ensure Roboto across all Elementor addons */
html,
body,
h1, h2, h3, h4, h5, h6,
p, span, a, li, input, textarea, select, button,
.elementor-widget,
.elementor-widget *,
.elementor-heading-title,
.elementskit-menu-hamburger,
.elementskit-navbar-nav,
.ekit-wid-con,
.wpr-pricing-table,
.prime-slider-tango {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif !important;
}

/* ==========================================================================
   Haxcode Portfolio System
   ========================================================================== */
.haxcode-portfolio-wrapper {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 20px 15px 60px 15px;
}

.haxcode-portfolio-filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 45px;
}

.haxcode-filter-btn {
  background: var(--haxcode-white) !important;
  color: var(--haxcode-primary) !important;
  border: 1.5px solid var(--haxcode-border) !important;
  padding: 10px 22px !important;
  border-radius: 30px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease !important;
}

.haxcode-filter-btn:hover,
.haxcode-filter-btn.active {
  background: var(--haxcode-secondary) !important;
  color: var(--haxcode-white) !important;
  border-color: var(--haxcode-secondary) !important;
  box-shadow: 0 4px 14px rgba(255, 98, 0, 0.35);
  transform: translateY(-2px);
}

.haxcode-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 30px;
}

@media (max-width: 768px) {
  .haxcode-portfolio-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.haxcode-portfolio-card {
  display: flex;
  flex-direction: column;
  background: var(--haxcode-card-bg);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--haxcode-border);
  box-shadow: 0 4px 20px rgba(15, 15, 20, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.haxcode-portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(15, 15, 20, 0.12);
  border-color: rgba(255, 98, 0, 0.3);
}

.haxcode-portfolio-thumb {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #eaecf0;
}

.haxcode-portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
  display: block;
}

.haxcode-portfolio-card:hover .haxcode-portfolio-thumb img {
  transform: scale(1.05);
}

.haxcode-portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 20, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.haxcode-portfolio-card:hover .haxcode-portfolio-overlay {
  opacity: 1;
}

.haxcode-view-btn {
  background: var(--haxcode-secondary);
  color: var(--haxcode-white);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.haxcode-portfolio-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px;
}

.haxcode-portfolio-tag {
  display: inline-block;
  align-self: flex-start;
  background: rgba(255, 98, 0, 0.1);
  color: var(--haxcode-secondary);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.haxcode-portfolio-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 10px 0;
  color: var(--haxcode-primary);
}

.haxcode-portfolio-title a {
  color: var(--haxcode-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.haxcode-portfolio-title a:hover {
  color: var(--haxcode-secondary);
}

.haxcode-portfolio-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #4b5563;
  margin: 0 0 20px 0;
  flex: 1;
}

.haxcode-portfolio-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #f0f2f5;
}

.haxcode-btn-sm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--haxcode-primary);
  color: var(--haxcode-white) !important;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.haxcode-btn-sm:hover {
  background: var(--haxcode-secondary);
  color: var(--haxcode-white) !important;
  transform: translateX(3px);
}

.haxcode-portfolio-action-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 45px;
  width: 100%;
}

.haxcode-btn-view-all {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  background-color: var(--haxcode-secondary) !important;
  color: var(--haxcode-white) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  padding: 13px 32px !important;
  border-radius: 30px !important;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(255, 98, 0, 0.35);
  transition: all 0.3s ease !important;
}

.haxcode-btn-view-all:hover {
  background-color: var(--haxcode-primary) !important;
  color: var(--haxcode-white) !important;
  box-shadow: 0 6px 20px rgba(15, 15, 20, 0.25);
  transform: translateY(-2px);
}

/* ==========================================================================
   Haxcode Footer Architecture & Styling
   ========================================================================== */
footer,
.elementor-location-footer,
.elementor-6114,
.elementor-element-9428b8a,
.elementor-element-dda7144,
.elementor-element-475904e {
  background-color: var(--haxcode-primary) !important;
  color: #d1d5db !important;
}

.elementor-location-footer .elementor-element-9428b8a,
.elementor-location-footer .elementor-element-dda7144 {
  background: var(--haxcode-primary) !important;
  padding: 60px 0 20px 0 !important;
}

/* Footer Container layout */
.elementor-location-footer .elementor-element-85c3d6f > .e-con-inner {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  justify-content: space-between !important;
  gap: 30px !important;
  width: 100% !important;
  max-width: 1320px !important;
  margin: 0 auto !important;
}

/* Footer Columns */
.elementor-location-footer .elementor-element-8933673 {
  flex: 1 1 280px !important;
  max-width: 340px !important;
}

.elementor-location-footer .elementor-element-05f7cee {
  flex: 1 1 180px !important;
  max-width: 240px !important;
}

.elementor-location-footer .elementor-element-d9af1ba {
  flex: 1 1 220px !important;
  max-width: 280px !important;
}

.elementor-location-footer .elementor-element-c11aee8 {
  flex: 1 1 260px !important;
  max-width: 320px !important;
}

/* Footer Main Headings (Navigation & Columns) */
.elementor-element-9428b8a h2,
.elementor-element-9428b8a h3,
.elementor-element-9428b8a h4,
.elementor-element-9428b8a h5,
.elementor-element-9428b8a .elementor-heading-title,
.elementor-element-dda7144 h2,
.elementor-element-dda7144 h3,
.elementor-element-dda7144 h4,
.elementor-element-dda7144 h5,
.elementor-element-dda7144 .elementor-heading-title {
  color: #ffffff !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  margin-bottom: 20px !important;
  letter-spacing: 0.5px !important;
}

/* Footer Menu Links */
.elementor-element-9428b8a .elementor-nav-menu .elementor-item,
.elementor-element-9428b8a .elementor-nav-menu--main .elementor-item,
.elementor-element-9428b8a .elementor-nav-menu a,
.elementor-element-9428b8a a:not(.elementor-button):not(.haxcode-btn-sm):not(.haxcode-btn-view-all),
.elementor-element-dda7144 .elementor-nav-menu .elementor-item,
.elementor-element-dda7144 .elementor-nav-menu--main .elementor-item,
.elementor-element-dda7144 .elementor-nav-menu a,
.elementor-element-dda7144 a:not(.elementor-button):not(.haxcode-btn-sm):not(.haxcode-btn-view-all) {
  color: #d1d5db !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 2 !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
}

.elementor-element-9428b8a .elementor-nav-menu .elementor-item:hover,
.elementor-element-9428b8a .elementor-nav-menu a:hover,
.elementor-element-9428b8a a:not(.elementor-button):not(.haxcode-btn-sm):not(.haxcode-btn-view-all):hover,
.elementor-element-dda7144 .elementor-nav-menu .elementor-item:hover,
.elementor-element-dda7144 .elementor-nav-menu a:hover,
.elementor-element-dda7144 a:not(.elementor-button):not(.haxcode-btn-sm):not(.haxcode-btn-view-all):hover {
  color: var(--haxcode-secondary) !important;
  transform: translateX(4px);
}

/* Footer Text & Paragraphs */
.elementor-element-9428b8a p,
.elementor-element-9428b8a .elementor-text-editor,
.elementor-element-9428b8a .elementor-image-box-content p,
.elementor-element-dda7144 p,
.elementor-element-dda7144 .elementor-text-editor,
.elementor-element-dda7144 .elementor-image-box-content p {
  color: #d1d5db !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
}

/* Footer Icon Lists (Contact info: Address, Email, Phone) */
.elementor-element-9428b8a .elementor-icon-list-items .elementor-icon-list-item,
.elementor-element-dda7144 .elementor-icon-list-items .elementor-icon-list-item {
  color: #d1d5db !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  margin-bottom: 12px !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
}

.elementor-element-9428b8a .elementor-icon-list-icon,
.elementor-element-dda7144 .elementor-icon-list-icon {
  color: var(--haxcode-secondary) !important;
  font-size: 16px !important;
  margin-top: 2px !important;
}

.elementor-element-9428b8a .elementor-icon-list-text,
.elementor-element-dda7144 .elementor-icon-list-text {
  color: #d1d5db !important;
}

/* Social Media Icons */
.elementor-element-9428b8a .elementor-social-icon,
.elementor-element-dda7144 .elementor-social-icon {
  background-color: rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
  border-radius: 50% !important;
  transition: all 0.3s ease !important;
  margin-right: 8px !important;
}

.elementor-element-9428b8a .elementor-social-icon:hover,
.elementor-element-dda7144 .elementor-social-icon:hover {
  background-color: var(--haxcode-secondary) !important;
  color: #ffffff !important;
  transform: translateY(-3px) !important;
}

/* Bottom Copyright Bar */
.elementor-location-footer .elementor-element-0b487b7 {
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  margin-top: 40px !important;
  padding: 25px 0 !important;
}

.elementor-location-footer .elementor-element-0b487b7 .elementor-heading-title,
.elementor-location-footer .elementor-element-0b487b7 p {
  color: #9ca3af !important;
  font-size: 13px !important;
  font-weight: 400 !important;
}

/* ==========================================================================
   Footer Top Section: Contact Form Card (Section 475904e)
   ========================================================================== */
.elementor-element-475904e {
  background-color: var(--haxcode-primary) !important;
  padding: 80px 20px 60px 20px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.elementor-element-475904e > .elementor-container {
  max-width: 1140px !important;
  margin: 0 auto !important;
  background: #ffffff !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Left Form Column */
.elementor-element-475904e .elementor-element-16593dc {
  background-color: #ffffff !important;
  padding: 45px 40px 40px 40px !important;
}

/* Main Heading: "Let's Execute Your Idea, Together!" */
.elementor-element-475904e .elementor-element-b50ee09 .xpro-heading-title,
.elementor-element-475904e .elementor-element-b50ee09 h2,
.elementor-element-475904e .elementor-element-b50ee09 * {
  color: #0f0f14 !important;
  font-size: 26px !important;
  font-weight: 800 !important;
  line-height: 1.3 !important;
  margin-bottom: 10px !important;
  letter-spacing: -0.3px !important;
}

/* Subtitle: "Our website developers are excited..." */
.elementor-element-475904e .elementor-element-27fcef0 .xpro-heading-title,
.elementor-element-475904e .elementor-element-27fcef0 h2,
.elementor-element-475904e .elementor-element-27fcef0 * {
  color: #6b7280 !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
  margin-bottom: 24px !important;
}

/* Form Fields */
.elementor-element-475904e .elementor-field-textual,
.elementor-element-475904e input.elementor-field,
.elementor-element-475904e select.elementor-field,
.elementor-element-475904e textarea.elementor-field {
  background-color: #f9fafb !important;
  color: #0f0f14 !important;
  border: 1.5px solid #e5e7eb !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  padding: 12px 16px !important;
  transition: all 0.25s ease !important;
  width: 100% !important;
  box-shadow: none !important;
}

.elementor-element-475904e .elementor-field-textual:focus,
.elementor-element-475904e input.elementor-field:focus,
.elementor-element-475904e select.elementor-field:focus,
.elementor-element-475904e textarea.elementor-field:focus {
  background-color: #ffffff !important;
  border-color: var(--haxcode-secondary) !important;
  box-shadow: 0 0 0 3px rgba(255, 98, 0, 0.15) !important;
  outline: none !important;
}

.elementor-element-475904e .elementor-field-textual::placeholder,
.elementor-element-475904e input::placeholder,
.elementor-element-475904e textarea::placeholder {
  color: #9ca3af !important;
  opacity: 1 !important;
}

/* Acceptance Checkbox */
.elementor-element-475904e .elementor-field-type-acceptance label {
  color: #6b7280 !important;
  font-size: 11.5px !important;
  line-height: 1.5 !important;
  cursor: pointer;
}

.elementor-element-475904e .elementor-field-type-acceptance input[type="checkbox"] {
  accent-color: var(--haxcode-secondary);
  margin-top: 3px;
  cursor: pointer;
}

/* Submit Button */
.elementor-element-475904e .elementor-button {
  background-color: var(--haxcode-secondary) !important;
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  padding: 14px 28px !important;
  border-radius: 8px !important;
  width: 100% !important;
  box-shadow: 0 4px 14px rgba(255, 98, 0, 0.35) !important;
  transition: all 0.3s ease !important;
  letter-spacing: 0.3px !important;
}

.elementor-element-475904e .elementor-button:hover {
  background-color: #0f0f14 !important;
  color: #ffffff !important;
  box-shadow: 0 6px 20px rgba(15, 15, 20, 0.3) !important;
  transform: translateY(-2px) !important;
}

/* Right Image Column */
.elementor-element-475904e .elementor-element-62eef59 {
  background-size: cover !important;
  background-position: center center !important;
  min-height: 480px !important;
}



