/* Target Avenue Homepage Widget - ebc29730 */

.tah-ebc29730-wrapper {
    width: 100%;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

/* ===== ANIMATIONS ===== */
@keyframes tahFadeUpEbc29730 {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes tahFadeLeftEbc29730 {
    from { opacity: 0; transform: translateX(60px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes tahShapeFloat1Ebc29730 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10px, -15px); }
}
@keyframes tahShapeFloat2Ebc29730 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-8px, 12px); }
}
@keyframes tahShapeFloat3Ebc29730 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(12px, 8px); }
}
@keyframes tahShapeFloat4Ebc29730 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-10px, -10px); }
}
@keyframes tahSkillGrowEbc29730 {
    from { width: 0; }
}

.tah-ebc29730-animate-fade-up {
    opacity: 0;
    animation: tahFadeUpEbc29730 0.8s ease forwards;
}
.tah-ebc29730-animate-fade-left {
    opacity: 0;
    animation: tahFadeLeftEbc29730 0.8s ease 0.3s forwards;
}

/* ===== HERO ===== */
.tah-ebc29730-hero {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}
.tah-ebc29730-hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
}
.tah-ebc29730-hero-center {
    text-align: center;
    max-width: 800px;
    padding: 40px;
}
.tah-ebc29730-hero-subtitle {
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    margin-bottom: 16px;
}
.tah-ebc29730-hero-title {
    font-size: 62px;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin: 0 0 24px;
}
.tah-ebc29730-hero-desc {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    margin: 0 0 36px;
}
.tah-ebc29730-hero-btn {
    display: inline-block;
    padding: 16px 40px;
    background-color: #4A7CFF;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.tah-ebc29730-hero-btn:hover {
    background-color: #3a6ae6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74,124,255,0.35);
    color: #ffffff;
}

/* ===== SERVICES ===== */
.tah-ebc29730-services {
    padding: 80px 40px;
    background: #ffffff;
}
.tah-ebc29730-services-title {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 60px;
}
.tah-ebc29730-services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 40px;
}
.tah-ebc29730-service-card { padding: 10px 0; }
.tah-ebc29730-service-icon { font-size: 48px; color: #4A7CFF; margin-bottom: 20px; line-height: 1; }
.tah-ebc29730-service-icon svg { width: 48px; height: 48px; fill: #4A7CFF; }
.tah-ebc29730-service-name { font-size: 22px; font-weight: 700; color: #1a1a2e; margin: 0 0 12px; }
.tah-ebc29730-service-desc { font-size: 15px; line-height: 1.7; color: #666666; margin: 0 0 20px; }
.tah-ebc29730-service-link { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 600; color: #1a1a2e; text-decoration: none; transition: all 0.3s ease; }
.tah-ebc29730-service-link:hover { color: #4A7CFF; gap: 12px; }
.tah-ebc29730-service-link svg { transition: transform 0.3s ease; }
.tah-ebc29730-service-link:hover svg { transform: translateX(3px); }

/* ===== SKILLS ===== */
.tah-ebc29730-skills {
    padding: 100px 40px;
    background: #ffffff;
}
.tah-ebc29730-skills-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}
.tah-ebc29730-skills-visual {
    flex: 1;
    min-width: 0;
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tah-ebc29730-skills-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}
.tah-ebc29730-sk-shape { position: absolute; }
.tah-ebc29730-sk-shape-circle { bottom: 10%; left: 5%; animation: tahShapeFloat1Ebc29730 6s ease-in-out infinite; }
.tah-ebc29730-sk-shape-diamond1 { top: 5%; right: 15%; animation: tahShapeFloat2Ebc29730 5s ease-in-out infinite; }
.tah-ebc29730-sk-shape-diamond2 { top: 15%; left: 10%; animation: tahShapeFloat4Ebc29730 7s ease-in-out infinite; }
.tah-ebc29730-sk-shape-circle2 { top: 0; right: 30%; animation: tahShapeFloat3Ebc29730 5.5s ease-in-out infinite; }
.tah-ebc29730-sk-shape-chevron { bottom: 25%; right: 10%; animation: tahShapeFloat1Ebc29730 6.5s ease-in-out infinite; }
.tah-ebc29730-skills-phone {
    position: relative;
    z-index: 2;
    width: 380px;
    max-width: 100%;
}
.tah-ebc29730-skills-phone img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: none;
    background: transparent;
}
.tah-ebc29730-skills-content { flex: 1; min-width: 0; }
.tah-ebc29730-skills-subtitle { display: inline-block; font-size: 16px; font-weight: 600; color: #4A7CFF; margin-bottom: 16px; letter-spacing: 0.5px; }
.tah-ebc29730-skills-title { font-size: 46px; font-weight: 800; line-height: 1.15; color: #1a1a2e; margin: 0 0 20px; }
.tah-ebc29730-skills-desc { font-size: 16px; line-height: 1.7; color: #888888; margin: 0 0 40px; max-width: 500px; }
.tah-ebc29730-skills-bars { display: flex; flex-direction: column; gap: 28px; }
.tah-ebc29730-skill-item { width: 100%; }
.tah-ebc29730-skill-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.tah-ebc29730-skill-name { font-size: 15px; font-weight: 600; color: #1a1a2e; }
.tah-ebc29730-skill-pct { display: inline-block; font-size: 13px; font-weight: 700; color: #ffffff; background-color: #1a1a2e; padding: 3px 10px; border-radius: 4px; min-width: 48px; text-align: center; }
.tah-ebc29730-skill-bar { width: 100%; height: 4px; background-color: #e8e8e8; border-radius: 2px; overflow: hidden; }
.tah-ebc29730-skill-fill { height: 100%; background-color: #1a1a2e; border-radius: 2px; width: 0; transition: width 1.5s ease; }
.tah-ebc29730-skill-fill.tah-ebc29730-animated { animation: tahSkillGrowEbc29730 1.5s ease forwards; }

/* ===== EMPOWERING ===== */
.tah-ebc29730-empowering {
    padding: 100px 40px;
    background: #ffffff;
}
.tah-ebc29730-emp-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}
.tah-ebc29730-emp-content {
    flex: 1;
    min-width: 0;
}
.tah-ebc29730-emp-subtitle {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: #4A7CFF;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}
.tah-ebc29730-emp-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    color: #1a1a2e;
    margin: 0 0 24px;
}
.tah-ebc29730-emp-desc {
    font-size: 17px;
    line-height: 1.7;
    color: #555555;
    margin: 0 0 36px;
    max-width: 500px;
}
.tah-ebc29730-emp-btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: #4A7CFF;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.tah-ebc29730-emp-btn:hover {
    background-color: #3a6ae6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74,124,255,0.35);
    color: #ffffff;
}

/* Right side: visual area - plain white background */
.tah-ebc29730-emp-visual {
    flex: 1;
    min-width: 0;
    position: relative;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Large mockup image inside the plain white area */
.tah-ebc29730-emp-mockup {
    position: relative;
    z-index: 2;
    width: 100%;
}
.tah-ebc29730-emp-mockup img {
    width: 100%;
    height: auto;
    display: block;
    /* Added subtle styling for the image itself if needed, otherwise plain */
}

/* ===== SCROLL STATES ===== */
.tah-ebc29730-scroll-hidden { opacity: 0 !important; animation: none !important; }
.tah-ebc29730-scroll-visible.tah-ebc29730-animate-fade-up { animation: tahFadeUpEbc29730 0.8s ease forwards; }
.tah-ebc29730-scroll-visible.tah-ebc29730-animate-fade-left { animation: tahFadeLeftEbc29730 0.8s ease forwards; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .tah-ebc29730-hero-title { font-size: 44px; }
    .tah-ebc29730-services-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 30px; }
    .tah-ebc29730-services-title { font-size: 38px; }
    .tah-ebc29730-skills-inner { flex-direction: column; gap: 50px; }
    .tah-ebc29730-skills-visual { min-height: 400px; }
    .tah-ebc29730-skills-title { font-size: 36px; }
    .tah-ebc29730-emp-inner { flex-direction: column; gap: 50px; }
    .tah-ebc29730-emp-title { font-size: 38px; }
    .tah-ebc29730-emp-visual { width: 100%; }
}
@media (max-width: 767px) {
    .tah-ebc29730-hero-title { font-size: 36px; }
    .tah-ebc29730-hero-center { padding: 30px 20px; }
    .tah-ebc29730-hero-desc { font-size: 16px; }
    .tah-ebc29730-services { padding: 50px 20px; }
    .tah-ebc29730-services-grid { grid-template-columns: 1fr; gap: 35px; }
    .tah-ebc29730-services-title { font-size: 32px; margin-bottom: 40px; }
    .tah-ebc29730-skills { padding: 60px 20px; }
    .tah-ebc29730-skills-title { font-size: 30px; }
    .tah-ebc29730-skills-visual { min-height: 350px; }
    .tah-ebc29730-skills-phone { width: 280px; }
    .tah-ebc29730-empowering { padding: 60px 20px; }
    .tah-ebc29730-emp-title { font-size: 32px; }
}
