html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Urbanist', sans-serif;
    background-color: #000000;
    /* Very dark background */
    color: #FFFFFF;
    overflow-x: hidden;
    /* Prevent horizontal scroll from any minor overflows */
}

.neon-red {
    color: #FF0000;
}

.bg-neon-red {
    background-color: #FF0000;
}

.border-neon-red {
    border-color: #FF0000;
}

.shadow-red-glow {
    box-shadow: 0 0 20px 5px rgba(255, 0, 0, 0.3), 0 0 30px 10px rgba(255, 0, 0, 0.2);
}

.shadow-subtle-red-glow {
    box-shadow: 0 0 10px 2px rgba(255, 0, 0, 0.3);
}

#hero-pin-track {
    /* This element defines the scroll duration for the pinning effect */
    position: relative;
    /* Height will be set by JS: 100vh (for the pinned view) + horizontal scroll distance equivalent in vertical scroll */
}

#hero-pinned-content {
    /* This element sticks and contains the 100vh content */
    position: sticky;
    top: 0;
    /* Sticks to the top of the viewport when its parent scrolls */
    width: 100%;
    height: 100vh;
    /* Fills the viewport when sticky */
    overflow: hidden;
    /* Important for containing positioned elements */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Pushes text to top, images to bottom */
}

.hero-custom-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

/* .hero-arc-glow {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -70vh;
    width: 200vw;
    height: 150vh;
    background: radial-gradient(ellipse at center, rgba(255, 0, 0, 0.20) 0%, rgba(255, 0, 0, 0) 50%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.8;
} */

.hero-dotted-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='2' cy='2' r='0.4' fill='%23CCFF00' opacity='0.1'/%3E%3Ccircle cx='7' cy='7' r='0.3' fill='%23CCFF00' opacity='0.08'/%3E%3C/svg%3E");
    background-size: 30px 30px;
    z-index: 2;
}

.hero-background-effects {
    /* Common parent for background elements within pinned content */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background-base {
    width: 100%;
    height: 100%;
    background-color: #000000;
}

.hero-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    max-width: 1200px;
    max-height: 800px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('assets/d-shape.png');
    z-index: 1;
}

/* .hero-sphere-glow-1,
.hero-sphere-glow-2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
} */

#hero-text-area {
    padding-top: 10rem;
    /* Adjust based on header height + desired margin */
    /* padding-bottom: 2rem; */
    /* Space above image scroller */
    text-align: center;
    position: relative;
    z-index: 5;
    flex-grow: 1;
    /* Takes up available vertical space */
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: space-evenly; */
}

@media screen and (max-width: 375px) {
    #hero-text-area {
        margin-top: 3rem;
    }
}

@media (max-width: 450px) {
    #hero-text-area {
        padding-top: 5rem;
    }
}

#horizontal-image-scroller-container {
    /* width: 100%; */
    /* height: 260px; */
    /* Defines the visual height of the image row area */
    overflow: hidden;
    /* Crucial for clipping the horizontally scrolling content */
    position: relative;
    z-index: 10;
    /* Subtle background for the scroller bar */
    /* Slight blur for the scroller bar background */
    display: flex;
    align-items: center;
    padding: 2rem 1rem;
}

/* Add gradient overlays for blur effect */
#horizontal-image-scroller-container::before,
#horizontal-image-scroller-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 20;
    pointer-events: none;
}

#horizontal-image-scroller-container::before {
    left: 0;
    background: linear-gradient(to right, #000000 0%, #00000000 100%);
}

#horizontal-image-scroller-container::after {
    right: 0;
    background: linear-gradient(to left, #000000 0%, #00000000 100%);
}

.horizontal-scroll-content {
    display: flex;
    flex-wrap: nowrap;
    gap: 1.5rem;
    /* 24px */
    /* padding: 0 2rem; */
    /* 32px padding on sides of the image strip */
    align-items: center;
    will-change: transform;
    /* Performance hint */
    -ms-overflow-style: none;
    scrollbar-width: none;
    /* Hide scrollbar */
}

.horizontal-scroll-content::-webkit-scrollbar {
    display: none;
}

.project-card {
    flex-shrink: 0;
    padding: 5px;
    height: 250px;
    overflow: hidden;
    border-radius: 1rem;
    transition: background 0.3s ease-out, transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.brand-container {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: linear-gradient(to bottom, #323232, #FF0000) border-box;
    border-radius: 1em;
    border: 1.5px solid transparent;
}

.project-card:hover {
    transform: translateY(-5px) scale(1.015);
    /* background: linear-gradient(to bottom left, rgba(255, 0, 0, 0) 0%, #910208 60%); */
    /* background-color: #390707; */
}

.project-card img {
    /* width: 100%; */
    height: 100%;
    object-fit: cover;
    border-radius: 0.75rem;
    /* border: 5px solid #fff; */
}



@media screen and (max-height: 720px) {
    .project-card {
        height: 210px;
    }
    .start-btn {
        padding: 10px 25px !important;
    }
    #hero-text-area h1 {
        font-size: 2.5rem !important;
    }
    #horizontal-image-scroller-container {
        margin-bottom: 0.5rem !important;
    }
}

@media screen and (max-width: 450px) {
    #horizontal-image-scroller-container {
        padding: 4rem 1rem;
    }

    .project-card {
        height: 220px;
    }

}

@media screen and (max-width: 375px) {
    #hero-text-area h1 {
        font-size: 2rem !important;
    }
    #horizontal-image-scroller-container {
        padding: 2rem 1rem;
    }

    .project-card {
        height: 200px;
    }
}

@keyframes pulse-slow {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

.animate-pulse-slow {
    animation: pulse-slow 3s infinite ease-in-out;
}

/* Header styling */
header {
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out, backdrop-filter 0.3s ease-in-out;
}

header.scrolled {
    background-color: rgba(0, 0, 0, 0.5);
    /* Darker semi-transparent bg on scroll */
    backdrop-filter: blur(10px);
    /* Frosted glass effect */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    /* Subtle shadow */
}

.logo {
    width: 100%;
    height: 100%;
}

/* Header Styles */
header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

/* Style for when header should have a background (scrolled) */
header.fixed.bg-black\/50 {
    background-color: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(5px) !important;
}

header.fixed.header-hidden-when-menu-open {
    background-color: transparent !important;
    backdrop-filter: none !important;
}

header.fixed.header-hidden-when-menu-open .logo {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}


.tab-active {
    background-color: #9d0208 !important;
    /* Ensure override */
    color: white !important;
}

.pricing-tab-active {
    background-color: #9d0208 !important;
    /* Ensure override */
    color: white !important;
}

/* Custom scrollbar for a more modern feel */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #18181b;
    /* zinc-900 */
}

::-webkit-scrollbar-thumb {
    background: #FF0000;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #cc0000;
}

.hero-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90vh;
    height: 90vh;
    background: radial-gradient(circle at center, #910208 0%, rgba(255, 0, 0, 0) 60%);
    border-radius: 50%;
    z-index: 0;
    opacity: 0.9;
    pointer-events: none;
}

.hero-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    max-width: 1200px;
    max-height: 800px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('assets/d-shape.png');
    z-index: 1;
}

.logo {
    width: 100%;
    height: 100%;
}


@media screen and (max-width: 2560px) {
    .hero-image {
        max-width: 100vh;
        max-height: 100vh;
    }
}

@media (max-width: 1280px) {
    .logo {
        width: 60% !important;
    }

    .hero-image {
        max-width: 1000px;
        max-height: 700px;
    }
}

@media (max-width: 1024px) {
    .logo {
        width: 150px !important;
    }

    .hero-shape {
        width: 70vh;
        height: 70vh;
        opacity: 0.7;
    }

    .hero-image {
        max-width: 80%;
        max-height: 80%;
    }
}

@media (max-width: 768px) {
    .logo {
        width: 120px !important;
    }

    .hero-shape {
        width: 50vh;
        height: 50vh;
        opacity: 0.5;
    }

    .hero-image {
        max-width: 100%;
        max-height: 100%;
    }
}

@media (max-width: 640px) {
    .hero-shape {
        width: 40vh;
        height: 40vh;
        opacity: 0.4;
    }

    .hero-image {
        max-width: 100%;
        max-height: 100%;
        top: 45%;
    }
}

.solution-card:hover .solution-icon-inner {
    transform: scale(1.1) rotate(-5deg);
    color: #FF0000;
}

.step-number-container {
    border: 2px solid #4b5563;
    /* gray-600 */
    color: #9ca3af;
    /* gray-400 */
    width: 48px;
    /* Increased size */
    height: 48px;
    /* Increased size */
    transition: all 0.3s ease;
}

.step-number-container:hover,
.step-active .step-number-container {
    border-color: #FF0000;
    color: #FF0000;
    transform: scale(1.1);
}

.step-line {
    flex-grow: 1;
    height: 2px;
    background: repeating-linear-gradient(90deg, #4b5563, #4b5563 6px, transparent 6px, transparent 12px);
    /* gray-600 */
    margin: 0 1.5rem;
    /* Increased margin */
}

.pricing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-color: #323232;
    border-width: 2px;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    height: 90%;
    min-height: 0;
}

@media (max-width: 768px) {
    .pricing-card {
        height: auto !important;
        min-height: 0 !important;
    }
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
}

.pricing-card-popular {
    height: 95%;
    border-width: 2px;
    /* Ensure border is visible */
    border-color: #9d0208;
    /* Initial scale for popular */
    margin-top: 50px; /* Compensate for the badge height */
}

.contact-card {
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: #FF0000;
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(255, 0, 0, 0.1), 0 4px 6px -2px rgba(255, 0, 0, 0.08);
}

.nav-link-hover:hover {
    color: #FF0000;
    transition: color 0.2s ease-in-out;
}

/* Scroll animation classes */
.fade-in-initial {
    opacity: 0;
    transform: translateY(30px);
    /* Start slightly lower */
    transition: opacity 0.8s cubic-bezier(0.645, 0.045, 0.355, 1), transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 768px) {
    .grid-cols-1.md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.solution-card {
    background-color: #000000;
    border: 2px solid #444;
    border-radius: 18px;
    transition: border-color 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.10);
}

.solution-card:hover {
    background-color: #171717;
}

.solution-card-pop {
    border-radius: 18px;
}

.solution-card-pop:hover {
    /* box-shadow: 0 0px 32px 0 #000000; */
    border-top: 5px solid #9d0208 !important;
    /* background-color: #171717 !important; */
}

.solution-card:hover h3 {
    color: #eeeeee;
}

.solution-card:hover img {
    color: #ffffff;
    filter: none !important;
    opacity: 1 !important;
}

/* Image container and zoom effect */
.image-container {
    position: relative;
}

.image-container img {
    transition: transform 0.3s ease;
    transform-origin: center;
}

.image-container:hover img {
    transform: scale(1.1);
}

.scroll-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    aspect-ratio: 4/3;
}

.scroll-image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 4s cubic-bezier(0.25, 0.25, 0.25, 1);
    transform: translateY(0);
}

.scroll-image-container:hover img {
    transform: translateY(calc(-100% + 100% * (4/3) / var(--img-aspect)));
}

/* .solution-card-pop>* {
    position: relative;
    z-index: 1;
} */

/* How it works steps - accurate to image, improved dotted line and step width */
.hiw-steps-row {
    display: flex;
    justify-content: start;
    align-items: flex-start;
    gap: 120px;
    /* Increased gap between steps */
    position: relative;
    margin: 0 auto;
    width: 100%;
}

.hiw-step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    min-width: 260px;
    max-width: 320px;
}

.hiw-step-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    width: 100%;
    /* Ensure header takes full width */
}

.hiw-step-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: #111;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hiw-step-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin-left: 18px;
    color: #fff;
    display: inline-block;
    white-space: nowrap;
}

.hiw-step-desc {
    color: #b3b3b3;
    font-size: 1rem;
    margin-left: 66px;
    margin-top: 0;
    max-width: 240px;
    text-align: left;
}

@media (max-width: 1200px) {
    .hiw-steps-row {
        gap: 80px;
    }

    .hiw-step {
        min-width: 180px;
        max-width: 220px;
    }

    .hiw-step-desc {
        max-width: 180px;
    }
}

@media (max-width: 900px) {
    .hiw-steps-row {
        gap: 50px;
    }

    .hiw-dots {
        width: 40px;
    }
}

@media (max-width: 700px) {
    .hiw-steps-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
        padding: 0 20px;
    }

    .hiw-step {
        min-width: 0;
        max-width: 100%;
    }

    .hiw-step-desc {
        margin-left: 0;
        max-width: 100%;
    }
}

.footer-link {
    color: #eeeeee;
    transition: color 0.2s ease-in-out;
    line-height: 2.5;
    font-size: 16px;
}

.footer-link:hover {
    color: #FF0000;
}

/* Header Styles */
header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    /* background-color: rgba(0, 0, 0, 0.8); */
    /* Keep transparent by default */
    /* backdrop-filter: blur(10px); */
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
    /* For scroll effect */
}

/* Style for when header should have a background (scrolled) */
header.fixed.bg-black\/50 {
    background-color: rgba(0, 0, 0, 0.5) !important;
    /* Tailwind class might override this */
    backdrop-filter: blur(5px) !important;
}

header.fixed.header-hidden-when-menu-open {
    background-color: transparent !important;
    backdrop-filter: none !important;
}

header.fixed.header-hidden-when-menu-open .logo {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Fullscreen Menu Styles */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000000;
    background: linear-gradient(53deg, rgba(10, 0, 0, 1) 0%, rgba(5, 0, 0, 1) 56%, rgba(0, 0, 0, 1) 100%);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9998;
    clip-path: circle(0% at 100% 0%);
    visibility: hidden;
    transition: clip-path 0.6s cubic-bezier(0.65, 0, 0.35, 1),
        visibility 0s linear 0.6s;
}

.fullscreen-menu.active {
    clip-path: circle(150% at 100% 0%);
    visibility: visible;
    transition: clip-path 0.6s cubic-bezier(0.65, 0, 0.35, 1),
        visibility 0s linear 0s;
}

.fullscreen-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.fullscreen-menu li {
    margin: 20px 0;
    opacity: 0;
    /* Initially hidden for animation */
    transform: translateY(50px);
    /* Initial position for slide-up */
}

.fullscreen-menu.active li {
    opacity: 1;
    transform: translateY(0);
    animation: menuItemFadeInUp 0.8s ease-out forwards;
}

/* Staggered animation delays */
.fullscreen-menu.active li:nth-child(1) {
    animation-delay: 0.2s;
}

.fullscreen-menu.active li:nth-child(2) {
    animation-delay: 0.25s;
}

.fullscreen-menu.active li:nth-child(3) {
    animation-delay: 0.3s;
}

.fullscreen-menu.active li:nth-child(4) {
    animation-delay: 0.35s;
}

.fullscreen-menu.active li:nth-child(5) {
    animation-delay: 0.4s;
}

.fullscreen-menu.active li:nth-child(6) {
    animation-delay: 0.45s;
}

/* Add more if you have more menu items */

@keyframes menuItemFadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
        /* Matched to li's initial transform */
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fullscreen-menu a {
    font-family: 'Urbanist', sans-serif;
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 300;
    text-decoration: none;
    position: relative;
    padding: 10px 0;
    color: #FFFFFF;
    transition: color 0.3s ease;
}

.fullscreen-menu a:hover {
    color: #FF0000;
}

.fullscreen-menu a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #FF0000;
    transform: scaleX(0);
    transform-origin: bottom left;
    transition: transform 0.3s ease-out;
}

.fullscreen-menu a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Menu Toggle Button Styles */
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 30px;
    box-sizing: content-box;
}

.menu-toggle .bar {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #FFFFFF;
    border-radius: 2px;
    transition: transform 0.3s ease-in-out,
        opacity 0.3s ease-in-out,
        background-color 0.3s ease-in-out;
}

.menu-toggle .bar+.bar {
    margin-top: 6px;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: #FFFFFF;
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: #FFFFFF;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: #FFFFFF;
}

header.header-hidden {
    transform: translateY(-100%);
}

/* Modal Animation Styles */
#contactUsModal,
#bookCallModal {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#contactUsModal.show,
#bookCallModal.show {
    opacity: 1;
    visibility: visible;
}

#contactUsModal .modal-content,
#bookCallModal .modal-content {
    transform: translateY(50px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

#contactUsModal.show .modal-content,
#bookCallModal.show .modal-content {
    transform: translateY(0);
    opacity: 1;
}

/* Date and Time Input Styling */
input[type="date"],
input[type="time"] {
    position: relative;
    cursor: pointer;
}

input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
    background: transparent;
    color: transparent;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

input[type="date"]::-webkit-datetime-edit,
input[type="time"]::-webkit-datetime-edit {
    color: #9ca3af;
}

input[type="date"]::-webkit-datetime-edit-fields-wrapper,
input[type="time"]::-webkit-datetime-edit-fields-wrapper {
    color: #9ca3af;
}

input[type="date"]::-webkit-datetime-edit-text,
input[type="time"]::-webkit-datetime-edit-text {
    color: #9ca3af;
}

input[type="date"]::-webkit-datetime-edit-month-field,
input[type="date"]::-webkit-datetime-edit-day-field,
input[type="date"]::-webkit-datetime-edit-year-field,
input[type="time"]::-webkit-datetime-edit-hour-field,
input[type="time"]::-webkit-datetime-edit-minute-field {
    color: #9ca3af;
}

/* Firefox specific styling */
input[type="date"]::-moz-calendar-picker-indicator,
input[type="time"]::-moz-calendar-picker-indicator {
    background: transparent;
    color: transparent;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
}

/* Ensure the entire input field is clickable */
input[type="date"],
input[type="time"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}


/* SERVICE MODAL START */
.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke: #4CAF50;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #fff;
    margin:  auto;
    background-color: transparent;
    animation: fill-bg .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}



.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {
    0%,
    100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

/* @keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px #4CAF50;
    }
} */
@keyframes fill-bg {
    100% {
        background-color: #4CAF50;
    }
}
/* SERVICE MODAL END */

