/*!*******************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./src/assets/css/custom.css ***!
  \*******************************************************************************************************************************************************************************/
/**
 * Custom CSS for Terax Blocks
 *
 * This file contains custom utility classes and global customizations
 * for the Terax Blocks plugin.
 */

/* ==========================================================================
   Utility Classes
   ========================================================================== */

/* Spacing Utilities */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.25rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 2rem !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 2rem !important; }

.pt-0 { padding-top: 0 !important; }
.pt-1 { padding-top: 0.25rem !important; }
.pt-2 { padding-top: 0.5rem !important; }
.pt-3 { padding-top: 1rem !important; }
.pt-4 { padding-top: 1.5rem !important; }
.pt-5 { padding-top: 2rem !important; }

.pb-0 { padding-bottom: 0 !important; }
.pb-1 { padding-bottom: 0.25rem !important; }
.pb-2 { padding-bottom: 0.5rem !important; }
.pb-3 { padding-bottom: 1rem !important; }
.pb-4 { padding-bottom: 1.5rem !important; }
.pb-5 { padding-bottom: 2rem !important; }

/* Text Alignment */
.text-left { text-align: left !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.text-justify { text-align: justify !important; }

/* Display Utilities */
.d-none { display: none !important; }
.d-block { display: block !important; }
.d-inline { display: inline !important; }
.d-inline-block { display: inline-block !important; }
.d-flex { display: flex !important; }
.d-grid { display: grid !important; }

/* Flex Utilities */
.flex-row { flex-direction: row !important; }
.flex-column { flex-direction: column !important; }
.flex-wrap { flex-wrap: wrap !important; }
.flex-nowrap { flex-wrap: nowrap !important; }
.justify-start { justify-content: flex-start !important; }
.justify-center { justify-content: center !important; }
.justify-end { justify-content: flex-end !important; }
.justify-between { justify-content: space-between !important; }
.align-start { align-items: flex-start !important; }
.align-center { align-items: center !important; }
.align-end { align-items: flex-end !important; }

/* Width Utilities */
.w-25 { width: 25% !important; }
.w-50 { width: 50% !important; }
.w-75 { width: 75% !important; }
.w-100 { width: 100% !important; }
.w-auto { width: auto !important; }

/* Height Utilities */
.h-100 { height: 100% !important; }
.h-auto { height: auto !important; }

/* Position Utilities */
.position-relative { position: relative !important; }
.position-absolute { position: absolute !important; }
.position-fixed { position: fixed !important; }
.position-sticky { position: sticky !important; }

/* Border Radius */
.rounded { border-radius: 0.25rem !important; }
.rounded-md { border-radius: 0.5rem !important; }
.rounded-lg { border-radius: 1rem !important; }
.rounded-full { border-radius: 9999px !important; }
.rounded-none { border-radius: 0 !important; }

/* Shadow Utilities */
.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
}
.shadow {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06) !important;
}
.shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
}
.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
}
.shadow-none {
    box-shadow: none !important;
}

/* Overflow Utilities */
.overflow-hidden { overflow: hidden !important; }
.overflow-auto { overflow: auto !important; }
.overflow-scroll { overflow: scroll !important; }

/* Opacity Utilities */
.opacity-0 { opacity: 0 !important; }
.opacity-25 { opacity: 0.25 !important; }
.opacity-50 { opacity: 0.5 !important; }
.opacity-75 { opacity: 0.75 !important; }
.opacity-100 { opacity: 1 !important; }

.rich-text .wp-block-heading {
    color: #4AA996;
}

/* ==========================================================================
   Responsive Utilities
   ========================================================================== */

/* Mobile Hidden */
@media screen and (max-width: 767px) {
    .hide-mobile { display: none !important; }
}

/* Tablet Hidden */
@media screen and (min-width: 768px) and (max-width: 1023px) {
    .hide-tablet { display: none !important; }
}

/* Desktop Hidden */
@media screen and (min-width: 1024px) {
    .hide-desktop { display: none !important; }
}

/* Mobile Only */
@media screen and (min-width: 768px) {
    .show-mobile-only { display: none !important; }
}

/* ==========================================================================
   Custom Block Enhancements
   ========================================================================== */

/* Add your custom block enhancements here */

/* Example: Custom hover effects */
.terax-hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.terax-hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}


/* Example: Custom Box shadow */
.terax-box-shadow {
    background: #FFFFFF;
    border: 1px solid #FEB005;
    box-shadow: 0px 0px 17.1px #FEB005;
    border-radius: 5px;
}


/* Example: Smooth transitions */
.terax-transition-all {
    transition: all 0.3s ease;
}


.page-template-service-template {
    background-color: #fff;
}

/* ==========================================================================
   Scroll Animation
   ========================================================================== */

.scroll {
	opacity: 0;
	transition: all 600ms ease-out;
	transform: translate3d(0, 2rem, 0);

}

.scrolled-in {
	opacity: 1;
	transform: translate3d(0, 0, 0);

}

/*# sourceMappingURL=custom.css.map*/