/*
Theme Name: Appstric
Theme URI: 
Author: Muzammil Hussain
Author URI: 
Description: for Appstric
Requires at least: 6.8
Tested up to: 6.8
Requires PHP: 5.7
Version: 
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Template: twentytwentyfive
Text Domain: appstric
Tags: 
*/

/* general */
.is-sticky {
	position: sticky;
	top: 0;
}

/* header */
.transformed-header {
	z-index: 9999;
}

.transformed-header {
	background-color: transparent !important;
	transition: background-color 0.3s ease;
}

.transformed-header.scrolled-on-cards header {
	background-color: rgba(255, 255, 255, 1) !important; /* Or your brand color */
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Optional */
}

/* hero banner */
.hero-locked {
	margin-top: calc(-1 * var(--wp--appstric--header-height));
}

/* what-we-do-section */
.what-we-do-section {
	transition: background-color 0.3s ease-in-out;
}

.what-we-do-section li {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-weight: 600;
	transition: transform 0.3s ease;
	position: relative;
	overflow: hidden;
}

/* Icon style */
.what-we-do-section .hover-icon {
	display: inline-flex;
	opacity: 0;
	transform: translateX(-10px);
	transition: all 0.3s ease;
}

/* Hover state */
.what-we-do-section li.hovered .hover-icon {
	opacity: 1;
	transform: translateX(0);
}

.what-we-do-section li.hovered {
	animation: bounce-in 0.35s ease forwards;
}

/* Bounce effect for text shift */
@keyframes bounce-in {
	0% {
		transform: translateX(0);
	}
	60% {
		transform: translateX(10px);
	}
	100% {
		transform: translateX(6px);
	}
}

.what-we-do-section li:hover,
.what-we-do-section li:focus,
.what-we-do-section li:active {
	color: var(--wp--preset--color--white); /* adjust as needed */
}
/* .what-we-do-section.innovation {
	background-color: #5ee0f7;
}
.what-we-do-section.empathy {
	background-color: #ebaafa;
}
.what-we-do-section.reliability {
	background-color: #7cd9a0;
}
.what-we-do-section.holistic {
	background-color: #f2a055;
}
.what-we-do-section.transparency {
	background-color: #ff515a;
} */

.what-we-do-section.innovation {
	background-color: #b5ef8a; /* Neon Cyan — futuristic, creative */
}

.what-we-do-section.empathy {
	background-color: #ebe3d0; /* Vivid Yellow — warm, approachable */
}

.what-we-do-section.reliability {
	background-color: #c2eaf5; /* Electric Indigo — strong, dependable */
}

.what-we-do-section.holistic {
	background-color: #ffc95a; /* Cool Gray — balanced, thoughtful */
}

.what-we-do-section.transparency {
	background-color: #d9d9d9; /* Bright Red — bold, honest */
}

.footer-contact-email {
  position: relative;
}

.email-actions {
  position: absolute;
  bottom: calc(10%);
  left: calc(0% + 60px);
  display: flex;
  gap: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.footer-contact-email:hover .email-actions,
.footer-contact-email:focus-within .email-actions {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 767px) {
	.what-we-do-section ul.wp-block-column {
		margin: 0;
		padding: 0;
	}
	.what-we-do-section .wp-block-columns {
		flex-direction: column;
	}

	.what-we-do-section .wp-block-column:first-child {
		order: 1;
	}

	.what-we-do-section .wp-block-column:last-child {
		order: 2;
	}

	.what-we-do-section ul.wp-block-list li {
		cursor: pointer;
		padding: 1.2em;
		border-bottom: 1px solid #eee;
		font-size: 1.2rem;
	}

	.what-we-do-section .wp-block-column:last-child .wp-block-group {
		display: none;
		transition: all 0.3s ease-in-out;
	}

	.what-we-do-section .wp-block-group.active {
		display: block !important;
	}
	
	.footer-contact-email .lg-contact-email-address {
	    font-size: clamp(2.6rem, -6.625rem + 26vw, 8rem) !important;
    	padding-top: 40px;
	}
}

/* work-section */
.work-section {
	height: 100vh;
	overflow: hidden;
	position: relative;
}

.horizontal-wrapper {
	flex-wrap: nowrap;
	width: 100vw;
	height: 100vh;
	display: flex;
	overflow-x: hidden;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
}

.slide {
	/* flex: 0 0 100vw;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	background: #f4f4f4;
	border-right: 2px solid #ddd; */

	flex: 0 0 100vw;
	height: 100vh;
	scroll-snap-align: start;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	border-right: 2px solid #ddd;
}

.arrow-btn {
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10000;
	padding: 10px;
	border-radius: 50%;
	cursor: pointer;
}

.arrow-btn svg {
	width: 64px;
	height: 64px;
	fill: #333;
}

.scroll-prev {
	left: 20px;
}

.scroll-next {
	right: 20px;
}

/**
 * marque-section
 */

.marquee-section {
	overflow: hidden;
	white-space: nowrap;
	position: relative;
	background: #000; /* Change to match your theme */
	padding: 1.5rem 0;
	color: #fff;
}

.marquee-inner {
	display: inline-flex;
	align-items: center;
	gap: 5rem; /* Space between headings */
	animation: scroll-marquee 18s linear infinite;
	white-space: nowrap;
	will-change: transform;
}

.marquee-inner h2,
.marquee-inner h3,
.marquee-inner h4 {
	display: inline-block;
	white-space: nowrap; /* Force single line */
	font-size: clamp(1.5rem, 2vw + 1rem, 3rem);
	font-weight: 600;
	margin: 0;
	padding: 0;
	line-height: 1;
	letter-spacing: -0.01em;
	transition: transform 0.3s ease;
}

.marquee-inner h2:hover,
.marquee-inner h3:hover,
.marquee-inner h4:hover {
	transform: scale(1.05); /* Subtle zoom on hover */
	color: #f0f0f0; /* Optional hover effect */
}

@keyframes scroll-marquee {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

.my-metaballs-section {
	position: relative;
	width: 100vw;
	height: 20vh; /* adjust to fit your layout */
	overflow: hidden;
}

.my-metaballs-section canvas {
	pointer-events: none;
	z-index: 0;
}

/**
 * Form
 */
/* Form container */
form,
.ff-message-success {
	font-family: "Outfit", sans-serif;
	font-style: italic;
	font-weight: 100;
}

.ff-message-success {
	font-size: clamp(1.5rem, 2.5vw, 3rem); /* Responsive size */
}

/* Form inputs, textareas, selects */
input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select {
	font-size: clamp(1.5rem, 2.5vw, 3rem); /* Responsive size */
	font-family: inherit;
	font-weight: inherit;
	font-style: inherit;
	padding: 1rem;
	border: 1px solid #ccc;
	border-radius: 6px;
	width: 100%;
	box-sizing: border-box;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Placeholder */
input::placeholder,
textarea::placeholder {
	color: #aaa;
	opacity: 0.8;
	font-style: italic;
}

/* Focus state */
input:focus,
textarea:focus,
select:focus {
	border-color: #666;
	outline: none;
	box-shadow: 0 0 0 3px rgba(100, 100, 100, 0.2);
}

/* Button styles */
button,
input[type="submit"] {
	font-size: clamp(1.2rem, 2vw, 2rem);
	font-family: inherit;
	font-weight: 200;
	font-style: italic;
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: 4px;
	background-color: var(--wp--preset--color--custom-new-primary);
	color: #fff;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

button:hover,
input[type="submit"]:hover {
	background-color: var(--wp--preset--color--custom-new-primary);
}

@media (max-width: 600px) {
	input,
	textarea,
	select {
		padding: 0.75rem;
	}

	button {
		padding: 0.6rem 1.2rem;
	}
}


/* Home sticky intro */
.op-section{position:relative;height:260vh}
  .op-sticky{
    position:sticky;top:0;height:100vh;background:#fff;
    display:flex;align-items:center;justify-content:center;padding:6vh 6vw;box-sizing:border-box;
  }
  .op-para{font-weight:800;text-align:center;max-width:62ch;font-size:clamp(20px,4.5vw,44px)}

  .op-char{display:inline-block;opacity:.25;transition:opacity .12s linear}
  .op-char.space{width:.35em}