/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "DM Sans", sans-serif;
    line-height: 1.5;
    background-color: white;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased; 
    text-rendering: optimizeLegibility
}
a{
    text-decoration: none;
    color: #015192;
}
p{
    margin-bottom: 1rem;
}

video{
    max-width: 100%;
    height: auto;
}

.d-inline-block{
    display: inline-block;
}

.primary{
    fill: var(--LogoGrad, linear-gradient(175deg, #C7E5AE 24.63%, #01A09D 257.46%));
}

.media {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.media-img {
    width: 100px; /* Adjust as needed */
    height: auto;
    margin-right: 15px;
    flex-shrink: 0; /* Prevent image from shrinking */
}

.hamburger {
    display: none; /* Hide by default */
}

#navbar {
    background-color: #E9F5ED;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    transition: background-color 0.3s, box-shadow 0.3s;
}

#navbar.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #000;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-left: 1.5rem;
}

.nav-links a:hover {
    color: #015AA2;
}

.hero {
    padding-top: 4rem;
    padding-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.app-preview {
    display: flex;
    justify-content: center;
    max-width: 56rem;
}

.app-preview video {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}
/* Responsive Styles */
.img-fluid{
    max-width: 100%;
}
/* End Responsive Styles */

/* Custom for different pages */
/* Fonts Style */
.dm-sans {
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
}
.dm-sans-normal {
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
.dm-sans-semibold {
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}
.dm-sans-600 {
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}
.dm-sans-bold {
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}
.work-sans {
    font-family: "Work Sans", sans-serif;
    font-optical-sizing: auto;
}
.work-sans-normal {
    font-family: "Work Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
.work-sans-semibold{
    font-family: "Work Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}
.work-sans-600{
    font-family: "Work Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}
.work-sans-bold{
    font-family: "Work Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}
/* End Fonts Style */

/* Colors Style */
.primary {
    color: #53B89D;
}
.highlight {
    color: #015AA2;
}
.grey{
    color: #757575;
}
.grey_1 {
    color: #505050;
}
.grey_2{
    color: #5F5F5F;
}
.grey_3{
    color: #666;
}
.sirocco_grey{
    color: #656A66;
}
.dark_grey{
    color: #4D4D4D;
}
.light_green_bg{
    background-color: #E9F5ED;
}
.light_green2_bg{
    background-color: #E5F4F0;
}
.light_green3_bg{
    background-color: #EFF6F2;
}
.salt_pan_bg{
    background-color: #F8FCF4;
}

/* End Colors Style */

/* Font Sizes */
h1, .h1{
    font-size: 5rem;
    line-height: 1.25;
}
h2, .h2{
    font-size: 3rem;
    line-height: 1;
}
h3, .h3{
    font-size: 2rem;
    line-height: 1.25;
    font-weight: 600;
}
h4, .h4{
    font-size: 1.25rem;
    font-weight: 500;
}
h5, .h5{
    font-size: 1.125rem;
    font-weight: 500;
}
h6, .h6{
    font-size: 0.75rem;
}
p{
    font-size: 1rem;
}
.font_large{
    font-size: 4rem;
}
.font_xl{
    font-size: 8rem;
    line-height: 1.25;
}
/* End Font Sizes */

/* Button Styles */
.btn{
    display: inline-flex;
    height: 4rem;
    padding: 1.25rem 2.5rem;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    flex-shrink: 0;
    color: white;
    border: none;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 500;
    line-height: 125%;
    cursor: pointer;
}
.primary_button{
    border-radius: 3.125rem;
    background: linear-gradient(180deg, #91CFA3 0.75%, #53B89D 117.12%);
    transition: all 0.2s ease-out;  /* Animation properties */
}
.primary_button:hover{
    background: linear-gradient(180deg, #91CFA3 -46.37%, #04C9B7 132.91%);
    box-shadow: 0px 5px 18px 0px rgba(4, 201, 183, 0.50);
    transform: translateY(-3px);  /* Add hover transformation */
}
.primary_button:active{
    background: #42937E;
}
.secondary_button{
    border-radius: 3.125rem;
    background: #679CC7;
    transition: all 0.2s ease-out;  /* Animation properties */
}
.secondary_button:hover{
    border-radius: 3.125rem;
    background: linear-gradient(180deg, #04C9B7 -80.95%, #1A6BAB 141.27%);
    box-shadow: 0px 5px 18px 0px rgba(26, 107, 171, 0.50);
    transform: translateY(-3px);  /* Add hover transformation */
}
.secondary_button:active{
    background: #015AA2;
}
/* End Button Styles */

/* Alignment Style */
.mb-2{
    margin-bottom: 0.88rem;
}
.mb-3{
    margin-bottom: 1rem;
}
.mb-4{
    margin-bottom: 2.25rem;
}
.mb-6{
    margin-bottom: 3.75rem;
}
.mt-3{
    margin-top: 1rem;
}

.mt-4{
    margin-top: 2rem;
}
.mt-4{
    margin-top: 2.25rem;
}
.pt-0{
    padding-top: 0 !important;
}
.pl-4{
    padding-left: 2.25rem;
}
.px-0{
    padding-left: 0;
    padding-right: 0;
}
.px-5{
    padding-left: 3rem;
    padding-right: 3rem;
}
.pt-3{
    padding-top: 1rem !important;
}

.container {
    width: 100%;
    max-width: 78.375rem;
    min-height: 1rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2.4rem;
    padding-right: 2.4rem;
    position: relative;
}
.text-center{
    text-align: center;
}

.text-right{
    text-align: right;
}
.mx-auto{
    margin-left: auto;
    margin-right: auto;
}
.hero_card_radius{
    border-radius: 3.75rem;
}
.align-middle{
    vertical-align: middle;
}
/* End Alignment Style */
.green_outer_card{
    border-radius: 30px;
    border: 2px solid #91CFA3;
    background: #FFF;
}
.green_thick_card{
    border-radius: 30px;
    border-top: 24px solid #91CFA3;
    border-right: 8px solid #91CFA3;
    border-bottom: 8px solid #91CFA3;
    border-left: 8px solid #91CFA3;
    background: #FFF;
    max-width: 34.375rem;
    padding: 4rem 3.25rem;
}
.block {
    padding: 4rem 1rem;
    opacity: 0; /* Initially hidden */
    transform: translateY(100px); /* Initially moved down */
    transition: opacity 1s ease-out, transform 1s ease-out; /* Animation */
}

.block .content {
    opacity: 0; /* Initially hidden */
    transform: translateY(100px); /* Initially moved down */
    transition: opacity 1s ease-out, transform 1s ease-out; /* Animation */
}

.block.visible {
    opacity: 1; /* Visible */
    transform: translateY(0); /* Move to initial position */
}

.block.visible .content {
    opacity: 1; /* Visible */
    transform: translateY(0); /* Move to initial position */
}
.stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    padding: 1rem;
    border-radius: 10px;
}
.row{
    display: flex;
    display: -ms-flexbox;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
}
.row_gap{
    gap: 2rem;
}
.col-md-4{
    width: 100%;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%;
}

.col-md-6{
    width: 100%;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%;
}
.col_space{
    justify-content: space-between;
}

.list-inline{
    list-style: none;
    display: flex;
    gap: 2rem;
}

.accordion {
    margin: 20px;
    border-radius: 4px;
}

.accordion-item {
    margin-bottom: 1.5rem;
}
.panel-color{
    background: rgba(199, 229, 174, 0.20);
    border-radius: 15px;
}

.panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 15px;
    border-top: 1px solid #C7E5AE;
    background: rgba(199, 229, 174, 0.20);
    padding: 1rem 1.7rem 1rem 1.5rem;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s ease;
}

.panel-header.active {
    background: #C7E5AE;
}

.panel-header:hover {
    background: #C7E5AE;
}
.panel-hd-text{
    padding-right: 0.5rem;
}

.panel-body {
    display: none;
    padding: 1rem 1.5rem;
    color: #575757;
    background: rgba(199, 229, 174, 0.20);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.panel-shadow {
    border-radius: 15px;
    -moz-box-shadow: 0 15px 30px 0 rgba(0, 122, 255, 0.35);
    -webkit-box-shadow: 0 15px 30px 0 rgba(0, 122, 255, 0.35);
    box-shadow: 0 15px 30px 0 rgba(0, 122, 255, 0.35);
}

.panel-icon {
    font-size: 14px;
}

.grid-container-6-3 {
    display: grid;
    grid-template-columns: 54% 43%;
    gap: 3%;
    width: 100%;
    margin: 20px auto;
}

.grid-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 20px;
}

.grid-video{
    align-self: flex-end;
    border-radius: 1.25rem;
}

.position-relative{
    position: relative;
}
.green-border {
    border-radius: 0.79875rem;
    border: 1.278px solid #93C7A4;
    background: #FFF;
    box-shadow: 0px 11.159px 39.058px 0px rgba(75, 120, 90, 0.25);
    display: inline-flex;
    padding: 0.79875rem;
}

.m365_logo{
    margin-left: 6.22rem;
    margin-right: 6.22rem;
}

.banner-img{
    border-radius: 1.16463rem;
    box-shadow: 0px 20px 100px 0px rgba(33, 74, 42, 0.50);
    max-width: 56rem;  
    z-index: 1;
}

.xs-logo-box{
    margin-right: 1rem;
    visibility: hidden;
}

.xs-logo-box:last-child {
    margin-right: 0; 
}

/* CSS for positioning logos initially and animating them */
#logos-box{
    width: 100%;
}

.zen-manage-video{
    border-radius: 60px;
}

/* .zen-tab-content-card{
    padding: 4.75rem 3.56rem;
} */

.tabs {
    display: flex; /* Arrange tabs and content horizontally */
    margin: 0 auto; /* Center the tabs */
    padding-right: 3rem; 
}

.tab-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tab-item {
    padding: 10px 20px;
    cursor: pointer;
    display: inline-block;
    border-bottom: none;
}

.tab-indicator{
    width: 0.5rem;
    height: 2rem;
    background: #E4EEF6;
    margin-right: 1rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

.tab-body{
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease; 
}

.tab-header {
    color: #B8B8B8;
    transition: color 0.3s ease;
    margin-bottom: 0.63rem;
}

.tab-item.active .tab-header, .tab-item:hover .tab-header{
    color: #000;
}

.tab-item.active .tab-body {
    display: block;
    opacity: 1;
}

.tab-item.active .tab-indicator{
    background: linear-gradient(#11FEE8, #004A6A);
    box-shadow: 0px 5px 10px 0px rgba(4, 201, 183, 0.60);
}

.tab-item:not(.active):hover .tab-indicator{
    background: #015AA2;
}

.tab-content {
    width: 100%;
    padding: 20px;
}

.content-item {
    display: none; /* Hide all content initially */
    opacity: 0; /* Set initial opacity to 0 for fade effect */
    transition: opacity 0.3s ease-in-out; /* Smooth fade transition */
}

.content-item.active {
    display: block;
    opacity: 1; /* Show active content */
}

.media-body {
    flex-grow: 1; /* Allow body to grow */
}

.vertical-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* height: 200px;  */
}

.grey_dot {
    width: 0.625rem;
    height: 0.625rem;
    background: #95ADB9;
    border-radius: 50%;
    transition: width 0.3s ease, height 0.3s ease, background 0.3s ease;
    flex-shrink: 0;
}

.vertical-bar .grey_dot.active{
    width: 1.875rem;
    height: 2.25rem;
    background: linear-gradient(0deg, #11FEE8 -49.87%, #004A6A 99.33%);
    box-shadow: 0px 5px 18px 0px rgba(4, 201, 183, 0.66);
    margin-top: -0.9375rem;
    border-radius: 1.125rem;
}

.grey_vertical_dashed {
    width: 0.125rem;
    height: 5.625rem;
    border-left: 0.125rem dashed #ccc;
}

.grey_horizontal_dashed {
    flex-grow: 1;
    height: 0.125rem;
    border-top: 0.125rem dashed #ccc;
    vertical-align: middle;
}

.horizontal-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 1.875rem;
    width: 100%;
    padding: 0 0.5rem;
    box-sizing: border-box;
}

.horizontal-bar .grey_dot.active {
    width: 2.25rem; 
    height: 1.875rem;
    background: linear-gradient(0deg, #11FEE8 -49.87%, #004A6A 99.33%);
    box-shadow: 0px 5px 18px 0px rgba(4, 201, 183, 0.66);
    border-radius: 1.125rem;
    vertical-align: middle;
}

.scroll-tab-body{
    opacity: 0;
    transition: opacity 0.3s ease;
    display: none;
}

.scroll-tab-body.active{
    display: block;
    margin-top: 0;
    opacity: 1;
    /* pointer-events: auto; */
}
.scrollable-block{
    padding: 4rem 1rem;
}

.outlook-cal-wrapper {
    position: absolute;
    max-width: 26.3125rem;
    max-height: 5.4375rem;
    flex-shrink: 0;
    border-radius: 1.25rem;
    background: #C8E7D1;
    bottom: -100%;
    left: -2.75rem;
    padding: 0.7rem;
    box-sizing: border-box;
    transition: bottom 0.5s ease, opacity 0.5s ease, visibility 0s 0.5s;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0px 11.159px 39.058px 0px rgba(75, 120, 90, 0.25);
}
.outlook-cal-wrapper.show {
    bottom: 1.75rem; 
    opacity: 1; 
    visibility: visible;
    transition-delay: 0s, 0s, 0s; /* No delay for showing */
}

.outlook-white-box{
    min-width: 1.125rem;
    padding: 0.625rem 1.875rem;
    align-items: center;
    gap: 1.125rem;
    border-radius: 0.625rem;
    background: #FFF;
    text-align: left;
}

.cal-icon{
    position: absolute;
    left: -0.75rem;
    width: 1.625rem;
    height: 1.625rem;
    border-radius: 50%;
    background-color: #53B89D;
    text-align: center;
    padding-top: 4px;
    top: 30%;
}

.pl-md-3{
    padding-left: 1rem;
}

.px-3{
    padding-left: 1rem;
    padding-right: 1rem;
}

.col{
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    position: relative;
    width: 100%;
}

.col-md-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
}
.h-100{
    height: 100%;
}

.lazy-video {
    background: url('path/to/placeholder-image.jpg') no-repeat center center;
    background-size: cover;
}

.d-md-none{
    display: none;
}
.horizontal-unbroken-body{
    max-width: 15.8125rem;
    margin-left: 2rem;
}

.half_green_white_bg{
    position: relative;
    overflow: hidden;
    padding-bottom: 6rem;
}

.half_green_white_bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: #E9F5ED;
    border-bottom-left-radius: 6.25rem;
    border-bottom-right-radius: 6.25rem;
    z-index: -1;
}

.green_circle::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10rem;
    min-width: 30rem;
    min-height: 30rem;
    background: #DEF1E3;
    border-radius: 50%;
    /* transform: translate(50%, 50%); */
    z-index: -1;
}

/* .half_green_white_bg{
    position: relative;
    overflow: hidden;
} */

/* .half_green_white_bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: #E9F5ED;
    border-bottom-left-radius: 6.25rem;
    border-bottom-right-radius: 6.25rem;
    z-index: -1;
}

.half_green_white_bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: white;
    z-index: -1;
} */
.manage-with-zen-bg{
    background: linear-gradient(to bottom, white 85%, #EFF6F2 15%);
}
.pricing-block-bg{
    background: linear-gradient(to bottom, #EFF6F2 85%, white 15%);
}


/* Responsive Styles */
@media (max-width: 768px) {
    h1, .h1{
        font-size: 2.25rem;
    }
    h2, .h2{
        font-size: 1.875rem;
    }
    h3, .h3{
        font-size: 1.5rem;
    }  
    h4, .h4{
        font-size: 1rem;
    }
    h5, .h5{
        font-size: 0.875rem;
    }
    h6, .h6{
        font-size: 0.75rem;
    }
    p{
        font-size: 0.875rem;
    }
    .font_large{
        font-size: 2.25rem;
    }
    .font_xl{
        font-size: 4rem;
        line-height: 1.25;
    }

    .px-xs-0{
        padding-left: 0;
        padding-right: 0;
    }

    .px-xs-3{
        padding-left: 1rem;
        padding-right: 1rem;
    }
    /* .nav-links {
        display: none;
    } */
    .grid-container-6-3 {
        grid-template-columns: 1fr;
    }
    .accordion {
        margin: 0;
    }
    .logo {
        margin-left: auto;
        margin-right: auto;
    }
    .xs-logo-box{
        /* display: none; */
        visibility: visible;
    }
    .col-100{
        width: 100%;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .pl-xs-0{
        padding-left: 0;
    }
    .pt-xs-0{
        padding-top: 0;
    }
    .text-xs-center{
        text-align: center;
    }
    .mx-xs-auto{
        margin-left: auto;
        margin-right: auto;
    }
    .outlook-cal-wrapper{
        left: 0.5rem;
        right: 0.5rem;
    }
    .outlook-cal-wrapper.show{
        bottom: 1rem;
    }
    .zen-manage-video{
        border-radius: 1.25rem;
    }
    .d-xs-none{
        display: none;
    }
    .d-md-none{
        display: block;
    }
    .hero{
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    .scrollable-block{
        padding: 1rem 0;
    }
    .grey_dot{
        display: inline-block;
    }
    .tabs {
        overflow-x: auto;
        white-space: nowrap;
        -ms-overflow-style: none;  /* Internet Explorer 10+ */
        scrollbar-width: none;  /* Firefox */
    }

    .tabs::-webkit-scrollbar {
        display: none;  /* Safari and Chrome */
    }
    
    .tab-list {
        display: flex;
        flex-wrap: nowrap;
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .tab-item {
        flex: 0 0 auto;
        display: inline-block;
        white-space: normal; /* Ensures content inside the tab wraps correctly */
        margin-right: 1rem; /* Adjust as needed for spacing between tabs */
        width: 17rem;
    }
    
    .tab-item .media {
        display: flex;
        align-items: center;
    }
    .tab-body{
        display: block;
        opacity: 1;
    }
    .tab-indicator {
        transform: rotate(-90deg);
        margin-left: 10px;
    }
    .tab-body p{
        color: #B8B8B8;
    }
    .tab-item.active .tab-body p{
        color: #5F5F5F;
    }
    .tab-item .get-start-btn{
        display: none;
    }
    .tab-item.active .get-start-btn{
        display: block;
    }
    .hero_card_radius{
        border-radius: 1.25rem;
    }
    .green_circle::after{
        min-width: 0;
        min-height: 0;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 4rem; /* Adjust according to your header height */
        left: 0;
        background-color: #E9F5ED;
        padding: 1rem;
        box-shadow: 0px 14px 18px 0px rgba(4, 201, 183, 0.66);
        z-index: 2;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }

    #navbar.fixed .nav-links{
        background-color: white;
    }
    
    .nav-links.show {
        display: flex;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        gap: 0.4rem;
        margin-top: -10px;
    }

    .hamburger span {
        height: 2px;
        width: 25px;
        background-color: #015192;
        border-radius: 2px;
    }
    #navbar {
        padding: 1rem 0;
    }
    .panel-icon {
        right: 1rem;
    }
    .m365_logo{
        margin-left: 2rem;
        margin-right: 2rem;
    }
}

@media (max-width: 568px) {
    .m365_logo{
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }
}