/*
Theme Name: Hello Elementor Child
Theme URI: https://example.com
Description: Child theme for Hello Elementor, customized for Custom website. This theme extends the base Hello Elementor theme with additional styling and functionality specific to custom features.
Author: Azeits Business Solutions OPC
Author URI: https://azeits.com/
Template: hello-elementor
Version: 3.4.4
Text Domain: hello-elementor-child
*/
/* Add your custom CSS below */

/* ===== GLOBAL STYLES ===== */
:root {
    --primary: #692d9a;
    --primary-light: #8e4bbd;
    --primary-dark: #4a1b70;
    --background-light: #ffffff;
    --surface-light: #f8f8f8;
    --text-dark: #2a2a2a;
    --text-medium: #555555;
    --text-light: #777777;
    --border-light: #e0e0e0;
}

/* ===== SCROLLBAR STYLING ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f0f0f0;
}

::-webkit-scrollbar-thumb {
    background: #cccccc;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a0a0a0;
}

/* ===== GLASS HEADER EFFECT ===== */
.glass-header,
.elementor-sticky--active {
    background: rgba(255, 255, 255, 0.55) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* ===== TEXT GLOW EFFECT ===== */
.text-glow {
    text-shadow: 0 0 15px rgba(105, 45, 155, 0.3);
}

/* ===== ROTATING TEXT ANIMATION ===== */
/* .rotating-text-wrapper {
    position: relative;
    height: 1.2em;
    overflow: hidden;
    display: inline-block;
    vertical-align: bottom;
    width: 100%;
}

.rotating-text-track {
    animation: rotateWords 9s infinite;
}

.rotating-text-item {
    display: block;
    height: 100%;
    white-space: nowrap;
}

@keyframes rotateWords {
    0%, 25% { transform: translateY(0%); }
    33%, 58% { transform: translateY(-33.33%); }
    66%, 91% { transform: translateY(-66.66%); }
    100% { transform: translateY(0%); }
} */
.rotating-text-wrapper {
    position: relative;
    height: 1.2em;
    overflow: hidden;
    display: inline-block;
    vertical-align: bottom;
    width: 100%;
}

.rotating-text-track {
    position: relative;
}

.rotating-text-item {
    position: absolute;
    width: 100%;
    left: 0;
    opacity: 0;
    animation: slideLCR 9s infinite;
}

/* Delay per item */
.rotating-text-item:nth-child(1) { animation-delay: 0s; }
.rotating-text-item:nth-child(2) { animation-delay: 3s; }
.rotating-text-item:nth-child(3) { animation-delay: 6s; }

/* ===== LEFT → CENTER → RIGHT ===== */
@keyframes slideLCR {
    0% {
        opacity: 0;
        transform: translateX(-40px);
    }
    10% {
        opacity: 1;
        transform: translateX(0);
    }
    30% {
        opacity: 1;
        transform: translateX(0);
    }
    40% {
        opacity: 0;
        transform: translateX(40px);
    }
    100% {
        opacity: 0;
        transform: translateX(40px);
    }
}

/* ===== FADE IN UP ANIMATION ===== */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in-up-delay-1 {
    animation: fadeInUp 0.8s ease-out 0.1s forwards;
    opacity: 0;
}

.animate-fade-in-up-delay-2 {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.animate-fade-in-up-delay-3 {
    animation: fadeInUp 0.8s ease-out 0.3s forwards;
    opacity: 0;
}

/* ===== SPINNING ANIMATION ===== */
@keyframes spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* ===== FADE IN SLIDE RIGHT ===== */
@keyframes fadeInSlideRight {
    0% {
        opacity: 0;
        transform: translateX(-25px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-slide {
    animation: fadeInSlideRight 0.8s ease-out forwards;
}

.animate-slide-delay-1 {
    animation: fadeInSlideRight 0.8s ease-out 0.1s forwards;
    opacity: 0;
}

.animate-slide-delay-2 {
    animation: fadeInSlideRight 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.animate-slide-delay-3 {
    animation: fadeInSlideRight 0.8s ease-out 0.3s forwards;
    opacity: 0;
}




/* ===== PULSE ANIMATION ===== */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-pulse-slow {
    animation: pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ===== BOUNCE ANIMATION ===== */
@keyframes bounce {
    0%, 100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
    50% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

.animate-bounce {
    animation: bounce 1s infinite;
}

/* ===== SERVICE CARDS HOVER EFFECTS ===== */
.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-card:hover .elementor-icon-box-title{
    color: var(--primary) !important;
}


/* ===== BUTTON HOVER EFFECTS ===== */
.elementor-button:hover {
    transform: translateY(-2px);
}

.elementor-button:active {
    transform: translateY(0);
}

/* ===== GRADIENT TEXT ===== */
.gradient-text {
    background: linear-gradient(to right, #4a1b70, #692d9a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== FORM FIELD FOCUS STATES ===== */
.elementor-field:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 1px var(--primary) !important;
    outline: none;
}

/* ===== LINK HOVER EFFECTS ===== */
.elementor-nav-menu a:hover,
a.contact-link:hover {
    color: var(--primary) !important;
}

/* ===== SELECTION STYLING ===== */
::selection {
    background: var(--primary);
    color: white;
}

::-moz-selection {
    background: var(--primary);
    color: white;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 1024px) {
    .rotating-text-wrapper {
        font-size: 40px !important;
    }
}

@media (max-width: 768px) {
    .rotating-text-wrapper {
        font-size: 28px !important;
    }
    
    .elementor-section.service-cards-section .elementor-column {
        width: 100% !important;
        margin-bottom: 16px;
    }
}

/* ===== ICON BOX STYLING ===== */
.custom-icon, 
.elementor-icon-box-icon {
    width: 48px;
    height: 48px;
	aspect-ration: 1px
    border-radius: 8px;
    background: #ffffff;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* ===== BADGE STYLING ===== */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid #e0e0e0;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #4a1b70;
    backdrop-filter: blur(4px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #692d9a;
    animation: pulse 2s infinite;
}

/* ===== FEATURE BADGES ===== */
.feature-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.feature-badge span:first-child {
    color: #692d9a;
}

.feature-badge span:last-child {
    font-size: 14px;
    font-weight: 500;
    color: #2a2a2a;
}

/* ===== CONTACT INFO BOX ===== */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(105, 45, 155, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #692d9a;
}

/* ===== FOOTER STYLING ===== */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 1;
}

.footer-logo-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #692d9a;
    border-radius: 6px;
    overflow: hidden;
}

.footer-logo-text {
    color: #2a2a2a;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.025em;
}

/* ===== VIDEO BACKGROUND OVERLAY ===== */
.elementor-background-video-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.6);
    pointer-events: none;
}

/* ===== VISION GRAPHIC CONTAINER ===== */
.vision-graphic {
    position: relative;
    padding-top: 75%;
    background: linear-gradient(135deg, #ffffff, #f5f5f5);
    border-radius: 16px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.vision-graphic::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.8), transparent);
    z-index: 5;
}

/* ===== PLUS JAKARTA SANS FONT ===== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

body,
.elementor-widget-text-editor,
.elementor-widget-heading,
.elementor-widget-button,
.elementor-field,
.elementor-field-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

