/********** Template CSS **********/
:root {
    /* === Global Website Color Palette (Updated) === */
    --mama-tiny-primary: #5EBA62;      /* Main brand color - Fresh Green */
    --mama-tiny-secondary: #0D6EFD;    /* Accent color - Vibrant Blue */
    --mama-tiny-light: #F0FAF2;        /* Soft minty white background */
    --mama-tiny-bg: #FBFBFB;           /* Base white background */
    --mama-tiny-dark: #1E1E1E;         /* Primary text color / dark contrast */
    --mama-tiny-gray: #6c757d;         /* Neutral text gray */
    --mama-tiny-border: #e6e6e6;       /* Subtle light border */
}




/*** Spinner ***/
#mama-tiny-spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#mama-tiny-spinner.mama-tiny-show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.mama-tiny-btn {
    font-weight: 500;
    transition: .5s;
}

.mama-tiny-btn.mama-tiny-btn-primary {
    color: #FFFFFF;
}

.mama-tiny-btn-square {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid white;
}

.mama-tiny-btn-square i{
    height: 10px;
}
.mama-tiny-btn-sm-square {
    width: 32px;
    height: 32px;
}

.mama-tiny-btn-lg-square {
    width: 48px;
    height: 48px;
}

.mama-tiny-btn-square,
.mama-tiny-btn-sm-square,
.mama-tiny-btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center !important;
    justify-content: center !important;
    font-weight: normal;
}


/*** Navbar ***/
.mama-tiny-navbar.mama-tiny-fixed-top {
    display: none;
    transition: .5s;
}

.mama-tiny-navbar .mama-tiny-navbar-nav .mama-tiny-nav-link {
    padding: 20px 15px;
    color: var(--mama-tiny-dark);
    font-size: 18px;
    font-weight: 600;
    outline: none;
}

.mama-tiny-navbar .mama-tiny-navbar-nav .mama-tiny-nav-link:hover,
.mama-tiny-navbar .mama-tiny-navbar-nav .mama-tiny-nav-link.mama-tiny-active {
    color: var(--mama-tiny-primary);
}

@media (max-width: 991.98px) {
    .mama-tiny-navbar .mama-tiny-navbar-nav .mama-tiny-nav-link  {
        padding: 10px 0;
    }
}

.mama-tiny-navbar .mama-tiny-dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 992px) {
    .mama-tiny-navbar .mama-tiny-nav-item .mama-tiny-dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        right: 15px;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .mama-tiny-navbar .mama-tiny-nav-item:hover .mama-tiny-dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.mama-tiny-btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--mama-tiny-primary);
 
}

.mama-tiny-btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--mama-tiny-primary);
    border-radius: 100%;
    animation: mama-tiny-pulse-border 1500ms ease-out infinite;
}

.mama-tiny-btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: var(--mama-tiny-primary);
    border-radius: 100%;
    transition: all 200ms;
}

.mama-tiny-btn-play span {
    display: block;
    margin-left: 10px;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid #FFFFFF;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes mama-tiny-pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.mama-tiny-modal-video .mama-tiny-modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.mama-tiny-modal-video .mama-tiny-modal-body {
    position: relative;
    padding: 0px;
}

.mama-tiny-modal-video .mama-tiny-close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}

.mama-tiny-hero-header .mama-tiny-breadcrumb-item+.mama-tiny-breadcrumb-item::before {
    color: var(--mama-tiny-secondary);
}


/*** Facts ***/
.mama-tiny-fact-item {
    transition: .3s;
}

.mama-tiny-fact-item:hover {
    margin-top: -10px;
    background: #FFFFFF !important;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}


/*** About ***/
.mama-tiny-img-twice::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    border: 1rem solid var(--mama-tiny-light);
    z-index: -1;
}


/*** Service ***/
.mama-tiny-service-item,
.mama-tiny-service-item * {
    transition: .3s;
}

.mama-tiny-service-item:hover {
    margin-top: -10px;
    background: var(--mama-tiny-primary) !important;
}

.mama-tiny-service-item:hover * {
    color: var(--mama-tiny-light);
}

.mama-tiny-service-item .mama-tiny-service-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.mama-tiny-service-item:hover .mama-tiny-service-overlay {
    opacity: 1;
}


/*** Project ***/
.mama-tiny-project-item {
    position: relative;
}

.mama-tiny-project-item .mama-tiny-project-title {
    position: absolute;
    top: auto;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    padding: 1rem;
    text-align: center;
    background: #FFFFFF;
    transition: .5s;
}

.mama-tiny-project-item:hover .mama-tiny-project-title {
    color: #FFFFFF;
    background: var(--mama-tiny-primary);
}


/*** Team ***/
.mama-tiny-team-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    border: 30px solid;
    border-color: transparent transparent #FFFFFF transparent;      
}

@media (min-width: 576px) {
    .mama-tiny-flex-sm-row .mama-tiny-team-img::after,
    .mama-tiny-flex-lg-row-reverse .mama-tiny-team-img::after {
        top: 50%;
        right: 0;
        bottom: auto;
        left: auto;
        transform: translateY(-50%);
        border-color: transparent #FFFFFF transparent transparent;
    }
}

@media (min-width: 576px) and (max-width: 991.98px) {
    .mama-tiny-flex-sm-row-reverse .mama-tiny-team-img::after {
        top: 50%;
        right: auto;
        bottom: auto;
        left: 0;
        transform: translateY(-50%);
        border-color: transparent transparent transparent #FFFFFF;
    }
}

@media (min-width: 992px) {
    .mama-tiny-flex-lg-row-reverse .mama-tiny-team-img::after,
    .mama-tiny-flex-sm-row-reverse .mama-tiny-team-img::after {
        top: 50%;
        right: auto;
        bottom: auto;
        left: 0;
        transform: translateY(-50%);
        border-color: transparent transparent transparent #FFFFFF;
    }

    .mama-tiny-flex-sm-row-reverse.mama-tiny-flex-lg-row .mama-tiny-team-img::after {
        top: 50%;
        right: 0;
        bottom: auto;
        left: auto;
        transform: translateY(-50%);
        border-color: transparent #FFFFFF transparent transparent;
    }
}
.text-primary{
    color: var(--mama-tiny-primary) !important;
}

/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item img {
    width: 60px;
    height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}





.mama-tiny-testimonial-carousel .mama-tiny-owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 22px;
    color: var(--mama-tiny-light);
    background: var(--mama-tiny-primary);
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--mama-tiny-primary);
    background: var(--mama-tiny-dark);
}


/*** Footer ***/
@media (min-width: 992px) {
    .mama-tiny-footer::after {
        position: absolute;
        content: "";
        width: 1px;
        height: 100%;
        top: 0;
        left: 50%;
        background: var(--mama-tiny-secondary);
    }
}

.mama-tiny-footer-shape::before {
    position: absolute;
    content: "";
    width: 80px;
    height: 100%;
    top: 0;
    left: -40px;
    background: var(--mama-tiny-secondary);
    transform: skew(40deg);
}

.mama-tiny-footer .mama-tiny-btn.mama-tiny-btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: rgba(255, 255, 255, .5);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.mama-tiny-footer .mama-tiny-btn.mama-tiny-btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: rgba(255, 255, 255, .5);
    margin-right: 10px;
}

.mama-tiny-footer .mama-tiny-btn.mama-tiny-btn-link:hover {
    color: var(--mama-tiny-primary);
    letter-spacing: 1px;
    box-shadow: none;
}

        /* Custom styles for Mama's Tiny */
     
        
        .mama-tiny-text-primary {
            /* color: var(--mama-tiny-primary) !important; */
        }
        
        .mama-tiny-btn-primary {
            background-color: var(--mama-tiny-primary);
            border-color: var(--mama-tiny-primary);
            color: white;
        }
        
        .mama-tiny-btn-primary:hover {
    background-color: rgb(63, 146, 63);
    color: white;
        }
        
        .mama-tiny-bg-primary {
            background-color: var(--mama-tiny-primary) !important;
        }
        
        .mama-tiny-filter-buttons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }
        
        .mama-tiny-filter-btn {
            background: transparent;
            border: 2px solid var(--mama-tiny-primary);
            color: var(--mama-tiny-primary);
            padding: 8px 20px;
            margin: 5px;
            border-radius: 30px;
            transition: all 0.3s;
        }
        
        .mama-tiny-filter-btn:hover, .mama-tiny-filter-btn.mama-tiny-active {
            background-color: var(--mama-tiny-primary);
            color: white;
        }
        
        .mama-tiny-project-item {
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .mama-tiny-project-item img {
            transition: transform 0.5s;
        }
        
        .mama-tiny-project-item:hover img {
            transform: scale(1.05);
        }
        
        .mama-tiny-project-title {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(255, 107, 157, 0.9);
            color: white;
            padding: 10px;
            text-align: center;
            transform: translateY(100%);
            transition: transform 0.3s;
        }
        
        .mama-tiny-project-item:hover .mama-tiny-project-title {
            transform: translateY(0);
        }
        
        .mama-tiny-service-item {
            transition: transform 0.3s;
            border-radius: 10px;
            overflow: hidden;
        }
        
        .mama-tiny-service-item:hover {
            transform: translateY(-10px);
        }
        
        .mama-tiny-contact-form {
            background: var(--mama-tiny-light);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .mama-tiny-contact-info {
            background: var(--mama-tiny-primary);
            color: white;
            padding: 40px;
            border-radius: 10px;
            height: 100%;
        }
        
        .mama-tiny-contact-info i {
            font-size: 24px;
            margin-bottom: 15px;
        }
        
        /* Hide team section */
        .mama-tiny-team-section {
            display: none;
        }


 
.testimonial-controls {
    z-index: 10;
}






.owl-carousel .owl-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.testimonial-item {
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    margin: 10px;
    border: 1px solid #f8f9fa;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Custom dots for carousel */
.owl-theme .owl-dots {
    margin-top: 20px;
}

.owl-theme .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 5px;
    background: #ddd;
    transition: all 0.3s ease;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--mama-tiny-primary);
    transform: scale(1.2);
}

/* Auto-scroll indicator */
.mama-tiny-autoplay-status {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .mama-tiny-testimonial-controls {
        flex-wrap: wrap;
    }
    
    .mama-tiny-testimonial-prev,
    .mama-tiny-testimonial-next,
    .mama-tiny-play-pause-btn {
        margin: 5px;
    }
}



.mama-tiny-hero-header {
background: linear-gradient(135deg, #F0FAF2 0%, #D8F3DC 100%) !important;


}

.mama-tiny-btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 36px;
    height: 46px;
    border-radius: 100%;
    border: none;
    outline: none;
    padding: 18px 20px 20px 28px;
    background: var(--mama-tiny-primary);
}

.mama-tiny-btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: var(--mama-tiny-primary);
    border-radius: 100%;
    animation: mama-tiny-pulse-border 1500ms ease-out infinite;
}

.mama-tiny-btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: var(--mama-tiny-primary);
    border-radius: 100%;
    transition: all 200ms;
}

.mama-tiny-btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 16px solid #fff;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes mama-tiny-pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

.mama-tiny-hero-header img {
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.mama-tiny-hero-header img:hover {
    transform: translateY(-5px);
}


/* fact style */
.mama-tiny-fact-card {
    background: linear-gradient(135deg, #F9FCF9 0%, #E6F2E8 100%) !important;

    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.1);
    border: 1px solid rgba(255, 107, 157, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.mama-tiny-fact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
 background: linear-gradient(90deg, transparent, rgba(94, 186, 98, 0.05), transparent);

    transition: left 0.6s;
}

.mama-tiny-fact-card:hover::before {
    left: 100%;
}

.mama-tiny-fact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 157, 0.15);
}

.mama-tiny-fact-icon {
    height: 70px;
    width: 70px;

    position: relative;
    display: inline-block;

}
.mama-tiny-fact-icon img{
    border-radius: 50%;
    height: 100%;
    width: 100%;
}
.mama-tiny-fact-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 107, 157, 0.1);
    border-radius: 50%;
    z-index: -1;
}

.mama-tiny-fact-card h1 {
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
 background: linear-gradient(135deg, var(--mama-tiny-primary), #D8F7D8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mama-tiny-fact-card h4 {
    color: #2d3047;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.mama-tiny-fact-card h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--mama-tiny-primary);
    border-radius: 2px;
}

.mama-tiny-fact-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* Mini Stats Row */
.mama-tiny-mini-stats-row {
    gap: 2rem;
}

.mama-tiny-mini-stat-item {
    padding: 15px 25px;
    background: rgba(255, 107, 157, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 157, 0.1);
    transition: all 0.3s ease;
}

.mama-tiny-mini-stat-item:hover {
    background: rgba(255, 107, 157, 0.1);
    transform: scale(1.05);
}

.mama-tiny-mini-stat-item h3 {
    font-weight: 700;
   background: linear-gradient(135deg, var(--mama-tiny-primary), #B6F2B6);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mama-tiny-mini-stat-item small {
    color: #6c757d;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mama-tiny-fact-card {
        margin-bottom: 20px;
    }
    
    .mama-tiny-mini-stats-row {
        gap: 1rem;
    }
    
    .mama-tiny-mini-stat-item {
        padding: 10px 15px;
        margin: 5px;
    }
}

/* Animation for counters */
@keyframes mama-tiny-countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mama-tiny-counter.mama-tiny-animated {
    animation: mama-tiny-countUp 0.6s ease-out;
}
.mama-tiny-mini-stats-row {
    gap: 2rem;
    position: relative;
}

.mama-tiny-mini-stat-item {
    padding: 25px 30px;
   /* Light green gradient */
background: linear-gradient(135deg, #F0FAF2 0%, #DFF7E5 100%);

    border-radius: 20px;
    border: 1px solid rgba(255, 107, 157, 0.15);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    min-width: 160px;
    box-shadow: 
        0 5px 15px rgba(255, 107, 157, 0.1),
        0 10px 30px rgba(255, 107, 157, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.mama-tiny-mini-stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
background: linear-gradient(90deg, 
    transparent, 
    rgba(94, 186, 98, 0.4), /* soft green */
    transparent);
    transition: left 0.6s ease;
}

.mama-tiny-mini-stat-item:hover::before {
    left: 100%;
}

.mama-tiny-mini-stat-item:hover {
    transform: translateY(-8px) scale(1.05);
box-shadow: 
    0 15px 35px rgba(94, 186, 98, 0.2),
    0 20px 50px rgba(94, 186, 98, 0.1),
    0 0 0 3px rgba(94, 186, 98, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);

border-color: rgba(94, 186, 98, 0.3);


}

.mama-tiny-stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px auto;
background: linear-gradient(135deg, var(--mama-tiny-primary), #5EBA62);

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 
        0 5px 15px rgba(255, 107, 157, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.mama-tiny-mini-stat-item:hover .mama-tiny-stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 8px 25px rgba(255, 107, 157, 0.4),
        0 0 20px rgba(255, 107, 157, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    animation: mama-tiny-iconPulse 2s infinite;
}

@keyframes mama-tiny-iconPulse {
    0%, 100% {
        box-shadow: 
            0 8px 25px rgba(255, 107, 157, 0.4),
            0 0 20px rgba(255, 107, 157, 0.3);
    }
    50% {
        box-shadow: 
            0 8px 25px rgba(255, 107, 157, 0.4),
            0 0 30px rgba(255, 107, 157, 0.4),
            0 0 40px rgba(255, 107, 157, 0.2);
    }
}

.mama-tiny-mini-stat-item h3 {
    font-weight: 800;
    font-size: 2.2rem;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--mama-tiny-primary), #5EBA62);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.mama-tiny-mini-stat-item small {
    color: #6c757d;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

/* Magical Glow Effect */
.mama-tiny-stat-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.6s ease;
    opacity: 0;
    z-index: 1;
}

.mama-tiny-mini-stat-item:hover .mama-tiny-stat-glow {
    width: 200px;
    height: 200px;
    opacity: 1;
    animation: mama-tiny-glowPulse 2s ease-in-out infinite;
}

@keyframes mama-tiny-glowPulse {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Floating Animation */
@keyframes mama-tiny-float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

.mama-tiny-mini-stat-item {
    animation: mama-tiny-float 4s ease-in-out infinite;
}

.mama-tiny-mini-stat-item:nth-child(1) { animation-delay: 0s; }
.mama-tiny-mini-stat-item:nth-child(2) { animation-delay: 0.5s; }
.mama-tiny-mini-stat-item:nth-child(3) { animation-delay: 1s; }
.mama-tiny-mini-stat-item:nth-child(4) { animation-delay: 1.5s; }

/* Particle Effects */
.mama-tiny-mini-stat-item::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
background: linear-gradient(45deg, 
    transparent, 
    rgba(94, 186, 98, 0.1), 
    rgba(94, 186, 98, 0.05), 
    transparent);

    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mama-tiny-mini-stat-item:hover::after {
    opacity: 1;
    animation: mama-tiny-borderGlow 2s linear infinite;
}

@keyframes mama-tiny-borderGlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Counter Animation Enhancement */
.mama-tiny-mini-counter {
    position: relative;
}

.mama-tiny-mini-counter::after {
    content: '+';
    position: absolute;
    right: -15px;
    top: 0;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.mama-tiny-mini-stat-item:hover .mama-tiny-mini-counter::after {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mama-tiny-mini-stats-row {
        gap: 1rem;
    }
    
    .mama-tiny-mini-stat-item {
        padding: 20px 15px;
        min-width: 130px;
        margin: 10px;
    }
    
    .mama-tiny-mini-stat-item h3 {
        font-size: 1.8rem;
    }
    
    .mama-tiny-stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}


/* Magic Sparkle Effect */
@keyframes mama-tiny-sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1) rotate(180deg);
    }
}

.mama-tiny-mini-stat-item:hover .mama-tiny-stat-icon::before {
    content: '✨';
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 0.8rem;
    animation: mama-tiny-sparkle 1s ease-in-out;
}


.mama-tiny-about-images {
    height: 500px;
    position: relative;
}

.mama-tiny-floating-image {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(255, 107, 157, 0.2);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid white;
}

.mama-tiny-floating-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mama-tiny-image-1 {
    width: 250px;
    height: 300px;
    top: 50px;
    left: 50px;
    z-index: 3;
    animation: mama-tiny-floatPrimary 4s ease-in-out infinite;
}

.mama-tiny-image-2 {
    width: 220px;
    height: 280px;
    top: 150px;
    right: 30px;
    z-index: 2;
    animation: mama-tiny-floatSecondary 5s ease-in-out infinite 1s;
}

.mama-tiny-image-3 {
    width: 200px;
    height: 250px;
    bottom: 50px;
    left: 150px;
    z-index: 4;
    animation: mama-tiny-floatTertiary 6s ease-in-out infinite 2s;
}

@keyframes mama-tiny-floatPrimary {
    0%, 100% { transform: translateY(0px) rotate(-2deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes mama-tiny-floatSecondary {
    0%, 100% { transform: translateY(0px) rotate(3deg); }
    50% { transform: translateY(-20px) rotate(-3deg); }
}

@keyframes mama-tiny-floatTertiary {
    0%, 100% { transform: translateY(0px) rotate(-1deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

.mama-tiny-floating-image:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 30px 60px rgba(255, 107, 157, 0.3);
    z-index: 10;
}

.mama-tiny-floating-image:hover img {
    transform: scale(1.1);
}

.mama-tiny-image-sparkle {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), 
        rgba(255, 255, 255, 0.4) 0%, 
        transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mama-tiny-floating-image:hover .mama-tiny-image-sparkle {
    opacity: 1;
}

/* Floating Baby Elements */
.mama-tiny-floating-element {
    position: absolute;
    font-size: 2rem;
    z-index: 4;
    animation: mama-tiny-floatAround 8s ease-in-out infinite;
    filter: drop-shadow(0 5px 15px rgba(255, 107, 157, 0.3));
}

.mama-tiny-element-1 { top: 20px; right: 100px; animation-delay: 0s; }
.mama-tiny-element-2 { top: 200px; left: 20px; animation-delay: 2s; }
.mama-tiny-element-3 { bottom: 100px; right: 50px; animation-delay: 4s; }
.mama-tiny-element-4 { bottom: 30px; left: 200px; animation-delay: 6s; }

@keyframes mama-tiny-floatAround {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    25% { transform: translate(20px, -15px) rotate(90deg) scale(1.2); }
    50% { transform: translate(-10px, -25px) rotate(180deg) scale(1); }
    75% { transform: translate(-20px, -10px) rotate(270deg) scale(1.1); }
}

/* Magic Text */
.mama-tiny-magic-text {
 background: linear-gradient(45deg, #5EBA62, #A9E6A3, #DFF8DF, #5EBA62);

    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: mama-tiny-shimmer 3s ease-in-out infinite;
}

@keyframes mama-tiny-shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Magic Features */
.mama-tiny-magic-features {
 background: linear-gradient(135deg, #F0FAF2 0%, #DFF8DF 100%);

    border-radius: 20px;
    padding: 30px;
    margin: 30px 0;
    border: 1px solid rgba(255, 107, 157, 0.1);
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.1);
}

.mama-tiny-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.mama-tiny-feature-item:hover {
    transform: translateX(10px);
}

.mama-tiny-feature-item:last-child {
    margin-bottom: 0;
}

.mama-tiny-feature-icon {
    width: 50px;
    height: 50px;
  background: linear-gradient(135deg, var(--mama-tiny-primary), #5EBA62);

    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(255, 107, 157, 0.3);
    transition: all 0.3s ease;
}

.mama-tiny-feature-item:hover .mama-tiny-feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

.mama-tiny-feature-content h5 {
    color: #2d3047;
    margin-bottom: 5px;
    font-weight: 600;
}

.mama-tiny-feature-content p {
    color: #6c757d;
    margin: 0;
    font-size: 0.9rem;
}

/* Stats Preview */
.mama-tiny-stats-preview {
    display: flex;
    justify-content: space-between;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(255, 107, 157, 0.1);
    border: 1px solid rgba(255, 107, 157, 0.1);
}

.mama-tiny-stat-preview {
    text-align: center;
    flex: 1;
}

.mama-tiny-stat-preview .mama-tiny-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--mama-tiny-primary);
    margin-bottom: 5px;
}

.mama-tiny-stat-preview .mama-tiny-label {
    font-size: 0.8rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Magic Button */
.mama-tiny-btn-magic {
   background: linear-gradient(135deg, var(--mama-tiny-primary), #A8E6A3, #5EBA62);

    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 157, 0.3);
}

.mama-tiny-btn-magic::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
 background: linear-gradient(
    90deg, 
    transparent, 
    rgba(94, 186, 98, 0.3),  /* light green overlay */
    transparent
);

    transition: left 0.5s ease;
    color: white;
}

.mama-tiny-btn-magic:hover::before {
    left: 100%;
    color: white;
}

.mama-tiny-btn-magic:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 157, 0.4);
    color: white;
}

.mama-tiny-btn-sparkle {
    display: inline-block;
    animation: mama-tiny-sparkleTwinkle 2s ease-in-out infinite;
}

.mama-tiny-btn-sparkle:nth-child(2) {
    animation-delay: 1s;
}

@keyframes mama-tiny-sparkleTwinkle {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mama-tiny-about-images {
        height: 400px;
        margin-bottom: 30px;
    }
    
    .mama-tiny-floating-image {
        position: relative;
        margin-bottom: 20px;
    }
    
    .mama-tiny-image-1, .mama-tiny-image-2, .mama-tiny-image-3 {
        position: relative;
        width: 100%;
        height: 250px;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        margin: 0 auto 20px auto;
    }
 
    
    .mama-tiny-floating-element {
        display: none;
    }
    
    .mama-tiny-stats-preview {
        flex-direction: column;
        gap: 15px;
    }
}

/* Enhanced Project Items */
.mama-tiny-project-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.mama-tiny-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.mama-tiny-project-item img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.mama-tiny-project-item:hover img {
    transform: scale(1.05);
}

/* Hover Eye Effect */
.mama-tiny-hover-eye {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: rgba(14, 150, 32, 0.95);
    color: white;
    padding: 12px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.mama-tiny-hover-eye i {
    font-size: 1.1rem;
    animation: mama-tiny-eyeBlink 2s ease-in-out infinite;
}

@keyframes mama-tiny-eyeBlink {
    0%, 90%, 100% { transform: scale(1); }
    95% { transform: scale(1.1); }
}

.mama-tiny-project-item:hover .mama-tiny-hover-eye {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.mama-tiny-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
}

.mama-tiny-project-item:hover .mama-tiny-image-overlay {
    opacity: 1;
}

.mama-tiny-project-title {
    background: rgba(255, 107, 157, 0.9);
    color: white;
    padding: 10px;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
}

.mama-tiny-project-item:hover .mama-tiny-project-title {
    transform: translateY(0);
}

/* Lightbox Styles */
.mama-tiny-portfolio-lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    animation: mama-tiny-lightboxFadeIn 0.3s ease;
}

@keyframes mama-tiny-lightboxFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.mama-tiny-lightbox-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 1000px;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mama-tiny-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(45, 143, 25, 0.8);
}

.mama-tiny-lightbox-close:hover {
    background: var(--mama-tiny-primary);
    transform: scale(1.1);
}

/* Lightbox Navigation */
.mama-tiny-lightbox-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1001;
}

.mama-tiny-nav-btn {
     background: rgba(45, 143, 25, 0.8);

    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.mama-tiny-nav-btn:hover {
    background: var(--mama-tiny-primary);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.4);
}

.mama-tiny-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: scale(1);
}

/* Lightbox Image */
.mama-tiny-lightbox-image-container {
    position: relative;
    max-width: 90%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mama-tiny-lightbox-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: mama-tiny-imageZoomIn 0.4s ease;
}

@keyframes mama-tiny-imageZoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.mama-tiny-lightbox-caption {
    text-align: center;
    color: white;
    margin-top: 20px;
}

.mama-tiny-image-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--mama-tiny-primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mama-tiny-lightbox-content {
        width: 95%;
        height: 95vh;
    }
    
    .mama-tiny-nav-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .mama-tiny-lightbox-navigation {
        padding: 0 10px;
    }
    
    .mama-tiny-lightbox-close {
        top: 10px;
        right: 15px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }
    
    .mama-tiny-hover-eye {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
    
    .mama-tiny-hover-eye i {
        font-size: 1rem;
    }
    
    .mama-tiny-project-item img {
        height: 200px;
    }
}
.testimonial-carousel .owl-item .testimonial-item {
    padding: 25px;
    text-align: center;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.testimonial-carousel .owl-item.center .testimonial-item {
    /* background: var(--mama-tiny-primary); */
    /* background-color: rgb(51, 51, 131) !important; */
    background-color: #0D6EFD !important;
    color: white;
}
.owl-item.center, .name{
    color: white;
}

/* testimonial css  */
 
.testimonial-controls {
    z-index: 10;
}

.testimonial-prev,
.testimonial-next,
.play-pause-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background-color: var(--primary);
    color: white;
    transform: scale(1.1);
}

.play-pause-btn {
    background-color: var(--primary);
    color: white;
    border: none;
}

.play-pause-btn:hover {
    background-color: #ff4d8a;
    transform: scale(1.1);
}

.owl-carousel .owl-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.testimonial-item {
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    margin: 10px;
    border: 1px solid #f8f9fa;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Custom dots for carousel */
.owl-theme .owl-dots {
    margin-top: 20px;
}

.owl-theme .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 5px;
    background: #ddd;
    transition: all 0.3s ease;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--primary);
    transform: scale(1.2);
}

/* Auto-scroll indicator */
.autoplay-status {
    font-size: 0.8rem;
    color: #6c757d;
    margin-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonial-controls {
        flex-wrap: wrap;
    }
    
    .testimonial-prev,
    .testimonial-next,
    .play-pause-btn {
        margin: 5px;
    }
}



.hero-header {
  background: linear-gradient(135deg, #F0FAF2 0%, #DFF7E5 100%) !important;
}


.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 36px;
    height: 46px;
    border-radius: 100%;
    border: none;
    outline: none;
    padding: 18px 20px 20px 28px;
    background: var(--primary);
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 16px solid #fff;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

.hero-header img {
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.hero-header img:hover {
    transform: translateY(-5px);
}

