 
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            transition: padding-top 0.3s ease;
        }
                :root {
            --zapptext-blue:#1e9fd3;
            --zapptext-hover-blue:#168aaf;
            --primary-body:rgb(30,159,211,0.15);
        }
          
        /*Common css for multiple pages */
        .card:hover {
            box-shadow:0px 0px 5px 2px rgba(0,0,0,0.1)  !important;
        }
        .zapptext-blue {
            color:var(--zapptext-blue) !important;
        }
        .primary-body {
            background-color:var(--zapptext-blue);
        }
        .zapptext-bg-blue {
            background-color:var(--primary-body) !important;
        }
        /* sms verification css  */
        .bg-peach {
            background-color: rgb(252,236,203);
        }
        .bg-navy-blue {
            background-color:rgb(15,33,56);
        }
        .link-arrow::after {
            content:"➔"; 
            color:#007874 !important;
            font-size:20px;
        }
        .bg-blue {
            background-color: rgb(226,240,232);
        }
        .text-heading{
            color: black;
            font-size: 4rem;
            line-height: 4.5rem;
            font-weight: 400;
            margin-bottom: 1.5rem;
           }
        @media (max-width:1024px) {
            .text-heading{
                font-size:40px !important;
                line-height: 2.5rem;
            }
        }
        .link-style {
            color:#007874 !important;
            text-underline-offset:0.25em;
            font-weight:600;
            text-decoration:underline;
        }
        .section-padding {
        padding:50px 0px;
        }
        @media (max-width:420px) {
        .section-padding {
            padding:30px 0px;
            /*margin-top: 30px;*/
        }
        }
        .bg-light-blue {
            background-color:#f7f9fa;
        }
        .bg-info-blue {
            background-color:#f7f9fa;
        }
                    /*button hover animation */
                    /*If you want arrow animation for your button add "btn-animation" class and place button content inside a span with class name "btn-text"*/
        .btn-animation {
        padding:10px 34px !important;
        position:relative;
        transition:transform,opacity 1s ease-in-out;
        }
        .btn-animation::after {
            content:"→";
            position:absolute;
            font-size:25px;
            font-weight:bold;
            top:0px;
            opacity:0;
            transform:translateX(-20px);
            overflow:hidden;
        }
        .btn-animation:hover::after {
            transform:translateX(-5px);
            opacity:1;
            transition:all 0.3s ease;
        }
        .btn-animation:hover .btn-text {
            transform:translateX(-10px);
        }
        .btn-text {
            display:inline-block;
            transition:transform 0.3s ease;
        }
        
        /* Styles for image scaling on  hover  */
        /*For image hover animation to work, inside anchor tag create a div with class "transform-card" and inside that create a div with class "transform-card-image" and inside that place image  */
        a:hover .transform-card img {
            transform:scale(1.05);
        }
        .transform-card-image {
            overflow:hidden;
            border-radius:20px 20px 0px 0px;
        }
        .transform-card img {
            transition: transform 0.3s ease; /* Smooth transition for the scaling effect */
            transform-origin: center; /* Scales from the center of the image */
        }
        .light-grey {
            color:#B7C1C7;
         }
          .small-title {
            font-size:16px !important;
            letter-spacing:2.5px;
            font-weight:600;
            color:rgb(75, 87, 94);
            text-transform:uppercase;
         }
         .text-body-color {
             color:#4B575E !important;
         }
         
          /*Common css for multiple pages ends here*/
        /* Top bar styles */
.top-bar-container {
    height: 40px;
    transition: height 0.3s ease;
    will-change: height;
}

.top-bar {
    background-color: white;
    padding: 8px 0;
    border-bottom: 1px solid var(--sinch-border-gray);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    height: 40px;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.top-bar.hidden {
    transform: translateY(-100%);
}

.top-bar-space-gone {
    height: 0;
}

/* Main navbar styles */
.main-navbar-container {
    height: 80px;
    transition: height 0.3s ease;
}

.main-navbar {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1021;
    padding: 20px 0;
    height: 80px;
    transition: top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backface-visibility: hidden;
    transform: translateZ(0);
}

.main-navbar.scrolled-up {
    top: 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 24px;
    color:var(--zapptext-blue) ;
    margin-right: 40px;
}
.navbar-brand:hover {
    color:var(--zapptext-hover-blue);
}

.nav-link {
    color: var(--sinch-dark-gray);
    font-weight: 500;
    padding: 0.5rem 1rem;
    font-size: 16px;
}

.nav-link:hover, .nav-link:focus {
    color: var(--sinch-blue);
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.155em;
    content: "";
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-bottom: 0;
    border-left: 0.35em solid transparent;
}

/* Mega menu styles */
.megamenu {
    margin-top:16px;
    position: absolute;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 30px 0;
    display: none;
    z-index: 1050;
    border-top: 1px solid var(--sinch-border-gray);
}

.megamenu.show {
    display: block;
}

.megamenu-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Products megamenu specific styles */
.products-megamenu {
    display: flex;
}

.products-nav {
    width: 250px;
    border-right: 1px solid var(--sinch-border-gray);
    padding-right: 20px;
}

.products-content {
    flex: 1;
    padding-left: 30px;
}

.products-nav-btn, .all-pro-nav-btn {
    display: block;
    width: 100%;
    text-align: left;
    padding: 12px 15px;
    margin-bottom: 4px;
    border: none;
    background: none;
    font-weight: 500;
    color: var(--sinch-dark-gray) !important;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.2s;
}

.products-nav-btn:hover, .products-nav-btn.active, .all-pro-nav-btn.active, .all-pro-nav-btn:hover {
    background-color: #f0f7ff;
    color: var(--sinch-blue);
}

/* Other megamenu columns */
.megamenu-col {
    padding: 0 15px;
}

.megamenu-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--sinch-dark-gray);
}

.megamenu-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.megamenu-col ul li {
    margin-bottom: 10px;
}

.megamenu-col ul li a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.megamenu-col ul li a:hover {
    color: var(--sinch-blue);
    text-decoration: underline;
}

/* CTA buttons */
.btn-sinch {
    background-color: var(--sinch-blue);
    color: white;
    border-radius: 6px;
    padding: 10px 20px;
    font-weight: 500;
    font-size: 14px;
    border: none;
    transition: background-color 0.2s;
}

.btn-sinch-outline {
    border: 1px solid var(--sinch-blue);
    color: var(--sinch-blue);
    border-radius: 6px;
    padding: 10px 20px;
    font-weight: 500;
    font-size: 14px;
    background: white;
    transition: all 0.2s;
}

.btn-sinch:hover, .btn-sinch-outline:hover {
    background-color: var(--sinch-dark-blue);
    color: white;
}

/* Utility classes */
.text-sinch-blue {
    color: var(--sinch-blue);
}

.divider {
    border-top: 1px solid var(--sinch-border-gray);
    margin: 20px 0;
}

/* Hover dropdown functionality */
@media (min-width: 992px) {
    .dropdown:hover .top-dropdown-menu {
        display: block;
    }
    
    /* .megamenu:hover {
        display: block;
    } */
}

/* Search box */
.search-box {
    position: relative;
    margin-right: 20px;
}

.search-box input {
    padding-left: 30px;
    border: 1px solid var(--sinch-border-gray);
    border-radius: 4px;
    height: 32px;
    font-size: 14px;
}

.search-box i {
    position: absolute;
    left: 10px;
    top: 8px;
    color: #777;
}

/* Mobile menu styles */
@media (max-width: 991.98px) {
    /* Off-canvas menu styles */
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: -100%;
        width: 320px;
        height: 100vh;
        padding: 20px;
        background: white;
        z-index: 1050;
        transition: left 0.3s ease;
        overflow-y: auto;
        margin-top: 0;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-collapse.show {
        left: 0;
    }

    
    .mobile-menu-backdrop.show {
        opacity: 1;
        visibility: visible;
    }
    
    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 20px;
        margin-bottom: 20px;
        border-bottom: 1px solid var(--sinch-border-gray);
    }
    
    .close-menu {
        background: none;
        border: none;
        font-size: 24px;
        color: var(--sinch-dark-gray);
    }
    
    .mobile-menu-cta {
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    /* Adjust navbar positioning */
    .main-navbar {
        top: 0;
        height: auto;
    }
    
    .main-navbar-container {
        height: auto;
    }
    
    .top-bar-container {
        display: none;
    }
    
    /* Mega menu adjustments */
    .megamenu {
        position: static;
        box-shadow: none;
        padding: 15px;
        display: none;
    }
    
    .megamenu.show {
        display: block;
    }
    
    .products-megamenu {
        flex-direction: column;
    }
    
    .products-nav {
        width: 100%;
        border-right: none;
        padding-right: 0;
        margin-bottom: 15px;
    }
    
    .products-content {
        padding-left: 0;
    }
    
    .nav-item.dropdown {
        margin-bottom: 10px;
    }
    
    .dropdown-menu {
        border: none;
    }
    
    /* Navbar items styling */
    .navbar-nav {
        flex-direction: column;
    }
    
    .nav-link {
        padding: 12px 0;
    }
}
/* Add this to your existing CSS */
@media (max-width: 991.98px) {
    body {
        padding-top: 60px; /* Adjust this value based on your navbar height */
    }
    
    /* If you're using a specific container for your first section */
    .container:first-child, 
    .main-content {
        /*padding-top: 20px; */
    }
}
@media (max-width: 768px) {
    body {
        padding-top: 40px !important; /* Adjust this value based on your navbar height */
    }
    
    /* If you're using a specific container for your first section */
    .container:first-child, 
    .main-content {
        /*padding-top: 20px; */
    }
}

/* NAVBAR updated styles  */
.link-hover:hover {
    background-color:#EBEEF0;
    color:#000 !important;
}
.Image-card-height {
    height:65px;
}


@media (min-width:992px) {
    .megamenu {
        overflow-y:auto;
        height:400px;
        overflow-x:hidden;
    }
}
.products-nav-section-footer {
    background-color:#dce2e5;
}

/*Navbar css ends here */


      
        .hero-section {
            background:var(--primary-body);
            padding: 5rem 0;
            border-bottom: 1px solid #dee2e6;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .primary-nav {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .secondary-nav {
            background-color: var(--primary-green);
        }
        
        .secondary-nav .nav-link {
            color: white !important;
            padding: 0.75rem 1.5rem;
            font-weight: 500;
        }
        
        /* Highlight active/focused nav item */
        .secondary-nav .nav-item.active .nav-link,
        .secondary-nav .nav-item:focus .nav-link,
        .secondary-nav .nav-item:hover .nav-link {
            background-color: rgba(255,255,255,0.15);
            border-radius: 4px;
        }
        
        .dropdown-menu {
            /*margin-top: 16px;*/
            border: none;
            border-radius: 0 0 0.375rem 0.375rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            font-size: 0.9rem;
        }
        
        /* Mega dropdown styles */
        .dropdown-mega {
            position: static !important;
        }
        
        .dropdown-mega-menu {
            width: 100%;
            left: 0;
            padding: 1.5rem;
            font-size: 0.9rem;
        }
        
        .dropdown-business-menu {
            width: 600px;
            padding: 1.5rem;
        }
        
        .mega-menu-section {
            padding: 0 1rem;
        }
        
        .business-menu-section {
            padding: 0 1rem;
        }
        
        .mega-menu-section h5,
        .business-menu-section h5 {
            color: var(--primary-green);
            margin-bottom: 1rem;
            font-weight: 600;
            font-size: 1rem;
        }
        
        .mega-menu-section ul,
        .business-menu-section ul {
            list-style: none;
            padding: 0;
        }
        
        .mega-menu-section ul li,
        .business-menu-section ul li {
            margin-bottom: 0.5rem;
        }
        
        .mega-menu-section ul li a,
        .business-menu-section ul li a {
            color: #333;
            text-decoration: none;
            transition: color 0.2s;
            font-size: 0.9rem;
        }
        
        .mega-menu-section ul li a:hover,
        .business-menu-section ul li a:hover {
            color: var(--primary-green);
        }
        
        .mega-menu-divider,
        .business-menu-divider {
            border-left: 1px solid #eee;
            height: 100%;
        }
        
        .btn-primary-custom {
            background-color: var(--primary-green);
            border-color: var(--primary-green);
            padding: 0.5rem 1.5rem;
            font-weight: 500;
            color:white;
        }
        
        .btn-primary-custom:hover {
            background-color: var(--dark-green);
            border-color: var(--dark-green);
        }
        
        .btn-outline-custom {
            border-color: var(--primary-green);
            color: var(--primary-green);
            padding: 0.5rem 1.5rem;
            font-weight: 500;
        }
        
        .btn-outline-custom:hover {
            background-color: var(--primary-green);
            color: white;
        }
        
        .feature-card {
            border: none;
            border-radius: 0.5rem;
            transition: transform 0.3s ease;
            height: 100%;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .feature-icon {
            font-size: 2rem;
            color: var(--primary-green);
            margin-bottom: 1rem;
        }
        
        .search-box {
            position: relative;
            width: 200px;
        }
        
        .search-box input {
            padding-left: 2.5rem;
            border-radius: 20px;
            border: 1px solid #dee2e6;
        }
        
        .search-box i {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: #6c757d;
        }
        
        .language-selector {
            border-left: 1px solid #dee2e6;
            padding-left: 1rem;
        }
        
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 30px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--primary-green);
        }
        
        /* Image hover effect styles */
        .transition-all {
            transition: all 0.3s ease-in-out;
        }
        
        .image-hover-container {
            position: relative;
            overflow: hidden;
            height: 300px;
            border-radius: 0.5rem;
        }
        
        .image-hover-container img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .image-hover-container img:last-child {
            opacity: 0;
        }
        
        .image-hover-container:hover img:first-child {
            opacity: 0;
        }
        
        .image-hover-container:hover img:last-child {
            opacity: 1;
        }
        
        /* Pricing links */
        .pricing-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .pricing-links a {
            color: var(--primary-green);
            font-weight: 500;
            text-decoration: none;
            font-size: 0.9rem;
        }
        
        .pricing-links a:hover {
            text-decoration: underline;
        }
        
        .expert-cta {
            background-color: #f8f9fa;
            padding: 1.5rem;
            border-radius: 0.5rem;
            margin-top: 1rem;
        }
        
        /* Reset and base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'DM Sans', sans-serif;
        }
        
        /* Section styling */
        .Zapptext-services {
            background: white;
            padding: 50px 20px;
            text-align: center;
        }
        
        /* Heading styles - Eye-catching design */
        .services-heading {
            /*margin-bottom: 50px;*/
            position: relative;
            display: inline-block;
        }
        
        .services-heading h2 {
            font-size: 30px;
            font-weight: 800;
            color:var(--zapptext-blue); /* Your requested green */
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            display: inline-block;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        
        .services-heading h2:after {
            content: '';
            position: absolute;
            width: 70%;
            height: 4px;
            background:var(--zapptext-blue);
            bottom: -10px;
            left: 15%;
            border-radius: 2px;
        }
        
        .services-heading p {
            font-size: 18px;
            color: #495057;
            max-width: 700px;
            margin: 25px auto 0;
            line-height: 1.7;
            font-weight: 500;
        }
        
        /* Cards container */
        .services-cards {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 50px;
            max-width: 1300px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Individual card styling */
        .service-card {
            width: 410px;
            height: 400px;
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
            position: relative;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .card-image {
            width: 100%;
            height: 100%;
            background-color: var(--primary-body);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .card-image:hover {
            background-color: #d4edda;
        }
        
        /* Card text that appears on hover */
        .card-hover-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            padding: 35px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background-color: var(--zapptext-blue); /* Your green with transparency */
            color: white;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .card-image:hover .card-hover-content {
            opacity: 1;
        }
        
        .card-hover-content h3 {
            font-size: 24px;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .card-hover-content p {
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 25px;
        }
        
        /* Default content (hidden when hovering) */
        .default-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            padding: 20px;
            transition: all 0.3s ease;
        }
        
        .card-image:hover .default-content {
            opacity: 0;
            transform: translate(-50%, -60%);
        }
        
        .default-content h3 {
            font-size: 24px;
            color: var(--zapptext-blue);
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .default-content .icon {
            font-size: 60px;
            margin-bottom: 25px;
            color: #28a745;
            filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
        }

        /* Affordable SMS Packages Section */
        .sms-packages {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 100px 0;
            overflow: hidden;
        }
        
        .packages-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Heading Styles */
        .section-heading {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-heading h2 {
            font-size: 42px;
            font-weight: 800;
            color: #28a745;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-heading h2:after {
            content: '';
            position: absolute;
            width: 70%;
            height: 4px;
            background: #28a745;
            bottom: -10px;
            left: 15%;
            border-radius: 2px;
        }
        
        .section-heading p {
            font-size: 20px;
            color: #495057;
            max-width: 700px;
            margin: 25px auto 0;
            line-height: 1.7;
            font-weight: 500;
        }
        
        /* Benefits Grid */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .benefit-card {
            background: white;
            border-radius: 10px;
            padding: 40px 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .benefit-card.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .benefit-card:hover {
            transform: translateY(-10px) !important;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .benefit-icon {
            font-size: 50px;
            color: #28a745;
            margin-bottom: 20px;
        }
        
        .benefit-card h3 {
            font-size: 22px;
            color: #343a40;
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .benefit-card p {
            color: #6c757d;
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 20px;
        }
        
        /* Pricing Highlights */
        .pricing-highlights {
            margin-top: 60px;
            text-align: center;
        }
        
        .pricing-highlights h3 {
            font-size: 28px;
            color: #343a40;
            margin-bottom: 30px;
        }
        
        .price-tag {
            display: inline-block;
            background: #28a745;
            color: white;
            font-size: 36px;
            font-weight: 700;
            padding: 15px 40px;
            border-radius: 50px;
            margin-bottom: 30px;
            box-shadow: 0 10px 20px rgba(40, 167, 69, 0.2);
        }
        
        .price-features {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .price-feature {
            background: #e8f5e9;
            color: #28a745;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 14px;
        }
        
        /* Animation delays */
        .benefit-card:nth-child(1) { transition-delay: 0.1s; }
        .benefit-card:nth-child(2) { transition-delay: 0.2s; }
        .benefit-card:nth-child(3) { transition-delay: 0.3s; }
        .benefit-card:nth-child(4) { transition-delay: 0.4s; }
        
        /* ===== NEW AFFORDABLE SMS PACKAGES SECTION ===== */
        .sms-packages-section {
            background:var(--primary-body);
            padding: 100px 0;
            overflow: hidden;
            position: relative;
        }
        
        .sms-packages-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            /*background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="%2328a745" opacity="0.05" d="M0,0 L100,0 L100,100 Q50,80 0,100 Z"></path></svg>') no-repeat;*/
            background-size: 100% auto;
            background-position: bottom;
            z-index: 0;
        }
        
        .sms-packages-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 5px;
            position: relative;
            z-index: 1;
        }
        
        .sms-packages-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .sms-packages-header h2 {
            font-size: 30px;
            font-weight: 800;
            color:var(--zapptext-blue);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            text-transform:uppercase;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        
        .sms-packages-header h2::after {
            content: '';
            position: absolute;
            width: 70%;
            height: 4px;
            background-color:var(--zapptext-blue);
            bottom: -10px;
            left: 15%;
            border-radius: 2px;
        }
        
        .sms-packages-header p {
            font-size: 20px;
            color: #495057;
            max-width: 700px;
            margin: 25px auto 0;
            line-height: 1.7;
            font-weight: 500;
        }
        
        .sms-packages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }
        
        .sms-package {
            background: white;
            border-radius: 15px;
            padding: 20px 40px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(40, 167, 69, 0.1);
            transform: translateY(50px);
            opacity: 0;
        }
        
        .sms-package.animate {
            transform: translateY(0);
            opacity: 1;
        }
        
        .sms-package::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--zapptext-blue);
            transition: all 0.3s ease;
        }
        
        .sms-package:hover {
            transform: translateY(-10px) !important;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }
        
        .sms-package:hover::before {
            width: 8px;
        }
        
        .package-icon {
            font-size: 50px;
            color: #28a745;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        
        .sms-package:hover .package-icon {
            transform: scale(1.1) rotate(5deg);
        }
        
        .package-title {
            font-size: 24px;
            color: var(--zapptext-blue);
            margin-bottom: 15px;
            font-weight: 700;
            position: relative;
            padding-bottom: 10px;
        }
        
        .package-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--zapptext-blue);
            transition: all 0.3s ease;
        }
        
        .sms-package:hover .package-title::after {
            width: 70px;
        }
        
        .package-description {
            color: #6c757d;
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 20px;
        }
        
        .package-price {
            font-size: 25px;
            font-weight: 700;
            color: var(--zapptext-blue);
            margin: 10px 0;
        }
        
        .package-features {
            list-style: none;
            padding: 0;
            margin-bottom: 25px;
        }
        
        .package-features li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 10px;
            color: #495057;
        }
        
        .package-features li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--zapptext-blue);
        }
        
        .package-cta {
            display: inline-block;
            padding: 12px 30px;
            background: #28a745;
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid #28a745;
        }
        
        .package-cta:hover {
            background: transparent;
            color: #28a745;
            transform: translateY(-3px);
        }
        
        .sms-package:nth-child(1) { transition-delay: 0.1s; }
        .sms-package:nth-child(2) { transition-delay: 0.2s; }
        .sms-package:nth-child(3) { transition-delay: 0.3s; }
        .sms-package:nth-child(4) { transition-delay: 0.4s; }
        
        /* Floating message animation */
        .floating-message {
            position: absolute;
            font-size: 120px;
            color: rgba(40, 167, 69, 0.3);
            z-index: 0;
            animation: float 15s infinite ease-in-out;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }
        
        .floating-message:nth-child(1) {
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }
        
        .floating-message:nth-child(2) {
            top: 14%;
            right: 2%;
            animation-delay: 2s;
        }
        
        .floating-message:nth-child(3) {
            top: -3%;
            right: 38%;
            animation-delay: 4s;
        }
        /* Stats Counter Section */
        .stats-section {
            background-color:var(--zapptext-blue); /* Solid green background */
            color: white;
            padding: 25px 0;
            text-align: center;
        }
        
        .stats-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }
        
        .stat-item {
            padding: 20px;
        }
        
        .stat-number {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 10px;
            line-height: 1;
        }
        
        .stat-number::after {
            content: '+';
            display: inline;
            margin-left: 5px;
        }
        
        .percentage .stat-number::after {
            content: '%';
        }
        
        .stat-label {
            font-size: 18px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Testimonials Section */
        .testimonials-section {
            padding: 60px 0;
            font-family: 'Segoe UI', Arial, sans-serif;
        }
        
        .testimonials-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 5px;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-header h2 {
            font-size: 30px;
            font-weight: 800;
            color:var(--zapptext-blue);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            text-transform:uppercase;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        
        .section-header p {
            font-size: 18px;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .testimonial-card {
            background: white;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 80px;
            color: rgba(40, 167, 69, 0.1);
            font-family: Georgia, serif;
            line-height: 1;
            z-index: 0;
        }
        
        .client-info {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        
        .client-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 20px;
            border: 3px solid var(--zapptext-blue);
        }
        
        .client-details h4 {
            font-size: 18px;
            font-weight: 700;
            color: #333;
            margin-bottom: 5px;
        }
        
        .client-details p {
            font-size: 14px;
            color: #666;
            margin: 0;
        }
        
        .testimonial-text {
            font-size: 16px;
            color: #555;
            line-height: 1.7;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        
        .rating {
            color: #ffc107;
            font-size: 20px;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }
        
        .company-logo {
            height: 30px;
            opacity: 0.7;
            transition: opacity 0.3s ease;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-card:hover .company-logo {
            opacity: 1;
        }
        
        /* Decorative elements */
        .testimonial-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, rgba(40, 167, 69, 0.1) 0%, rgba(0,0,0,0) 70%);
            z-index: 0;
        }
        /* Footer Styles */
        /*.Zapptext-footer {*/
            /*background-color: #28a745;  Green background */
        /*    color: white;*/
        /*    padding: 50px 0 10px;*/
        /*    font-family: 'Segoe UI', Arial, sans-serif;*/
        /*}*/
        
        /*.footer-container {*/
        /*    max-width: 1300px;*/
        /*    margin: 0 auto;*/
        /*    padding: 0 5px;*/
        /*    display: grid;*/
        /*    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));*/
        /*    gap: 40px;*/
        /*}*/
        
        /*.footer-brand {*/
        /*    margin-bottom: 20px;*/
        /*}*/
        
        /*.footer-brand h2 {*/
        /*    font-size: 28px;*/
        /*    font-weight: 700;*/
        /*    margin-bottom: 15px;*/
        /*    letter-spacing: 1px;*/
        /*}*/
        
        /*.footer-divider {*/
        /*    width: 50px;*/
        /*    height: 3px;*/
        /*    background-color: white;*/
        /*    margin: 15px 0;*/
        /*    opacity: 0.3;*/
        /*}*/
        
        /*.footer-services h3,*/
        /*.footer-contact h3 {*/
        /*    font-size: 18px;*/
        /*    font-weight: 600;*/
        /*    margin-bottom: 20px;*/
        /*    text-transform: uppercase;*/
        /*    letter-spacing: 1px;*/
        /*}*/
        
        /*.footer-services ul {*/
        /*    list-style: none;*/
        /*    padding: 0;*/
        /*    margin: 0;*/
        /*}*/
        
        /*.footer-services li {*/
        /*    margin-bottom: 10px;*/
        /*    font-size: 15px;*/
        /*    opacity: 0.9;*/
        /*}*/
        
        /*.contact-item {*/
        /*    margin-bottom: 15px;*/
        /*}*/
        
        /*.contact-item strong {*/
        /*    display: block;*/
        /*    font-size: 15px;*/
        /*    margin-bottom: 5px;*/
        /*}*/
        
        /*.contact-item p {*/
        /*    margin: 0;*/
        /*    font-size: 15px;*/
        /*    opacity: 0.9;*/
        /*}*/
        
        /*.footer-bottom {*/
        /*    text-align: center;*/
        /*    margin-top: 50px;*/
        /*    padding-top: 20px;*/
        /*    border-top: 1px solid rgba(255,255,255,0.5);*/
        /*    font-size: 14px;*/
        /*    opacity: 0.8;*/
        /*}*/
        
        /*@media (max-width: 768px) {*/
        /*    .footer-container {*/
        /*        grid-template-columns: 1fr;*/
        /*        gap: 30px;*/
        /*    }*/
        /*}*/ 
        
        /*Updated Footer section styles*/ 
        /* footer styles  */    
        .footer-link-text {
            text-decoration:none !important;
            color:#4B575E; 
            font-size:14px;
        }
        .footer-link-text:hover {
            color:#000;
        }
        
        .footer-end {
            background-color:rgb(235,238,240);
        }
        
        /*image animations*/
          .sms-animation-section {
            /*min-height: 120vh;*/
            background:var(--primary-body);
            position: relative;
            padding: 40px 0;
            overflow: hidden;
        }
        
        .sms-container {
            max-width: 1300px;
            margin: 0 auto;
            /*display: flex;*/
            align-items: center;
            /*height: 100vh;*/
            position: relative;
        }
        
        .sms-images-container {
            width: 100%;
            height: 100%;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .sms-image {
            position: absolute;
            width: 100%;
            max-width: 500px;
            border-radius: 16px;
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s ease;
        }
        
        .sms-image-engage {
            z-index: 30;
        }
        
        .sms-image-build {
            z-index: 20;
            transform: translateY(30%);
        }
        
        .sms-image-connect {
            z-index: 40;  
            transform: translateY(-30%);
        }
        
        .sms-content {
            width: 100%;
            padding: 0 5%;
            position: relative;
        }
        
        .sms-heading {
            font-size: 35px;
            font-weight: 800;
            margin-bottom: 30px;
            transform: translateX(50px);
            opacity: 0;
            background: linear-gradient(90deg, #28a745, #007bff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }
        
        .sms-description {
            font-size: 40px;
            color: #495057;
            line-height: 1.1;
            margin-bottom: 20px;
            font-weight: 400;
        }
        
        .sms-features {
            display: grid;
            gap: 20px;
        }
        
        .sms-feature {
            padding:15px 25px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            opacity: 0;
            border-left: 5px solid var(--zapptext-blue);
            transition: all 0.3s ease;
        }
        
        .sms-feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.12);
        }
        
        .sms-feature h3 {
            color: #000;
            font-size: 24px;
            margin-bottom: 15px;
            font-weight: 700;
            display: flex;
            align-items: center;
        }
        
        .sms-feature h3:before {
            content: "✓";
            display: inline-block;
            margin-right: 10px;
            font-weight: bold;
        }
        
        .sms-feature p {
            color: #6c757d;
            font-size: 18px;
            line-height: 1.5;
        }
        
        .word-wrapper {
            display: inline-block;
            overflow: hidden;
            margin-right: 5px;
        }
        
        .sms-word {
            display: inline-block;
            opacity: 0.3;
            transform: translateY(20px);
            transition: all 0.5s ease;
        }
        
        .sms-word.active {
            opacity: 1;
            transform: translateY(0);
        }
        @media(max-width:992px) {
            .image-column {
                height:350px;
            }
        }
        /*fixed image scrollable content*/
        
         .sms-platform-section {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: #ffffff;
            overflow: hidden;
        }

        /* Image Container - For smooth transitions */
        .sms-image-container {
            width: 90%;
            max-width: 500px;
            height: 80vh;
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            margin: 0 auto;
        }

        /* Images - Absolutely positioned within container */
        .sms-platform-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
            opacity: 0;
            transition: opacity 0.6s ease;
        }

        .sms-platform-image.active {
            opacity: 1;
        }

        /* Content Items */
        .sms-platform-item {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 2rem 0;
        }

        /* Typography */
        .sms-platform-item h2 {
            font-size: 14px;
            font-weight: 600;
            color: var(--zapptext-blue);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 15px;
        }

        .sms-platform-item h3 {
            font-size: 36px;
            font-weight: 700;
            color: #111827;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .sms-platform-item p {
            font-size: 18px;
            color: #4b5563;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .sms-feature-list {
            margin-bottom: 30px;
        }

        .sms-feature-item {
            padding: 10px 0;
            font-size: 16px;
            color: #374151;
            position: relative;
            padding-left: 25px;
        }

        .sms-feature-item:before {
            content: "✓";
            color: var(--zapptext-blue);
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        .sms-platform-btn {
            padding: 12px 24px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            margin-right: 15px;
            margin-bottom: 10px;
        }

        .sms-platform-btn-primary {
            background-color: var(--zapptext-blue);
            color: white;
            border: none;
        }

        .sms-platform-btn-primary:hover {
            background-color: #1d4ed8;
            transform: translateY(-2px);
        }

        .sms-platform-btn-secondary {
            background-color: white;
            color: var(--zapptext-blue);
            border: 1px solid var(--zapptext-blue);
        }

        .sms-platform-btn-secondary:hover {
            background-color: #f0f5ff;
            transform: translateY(-2px);
        }

        /* Visuals Column - Sticky on desktop */
        .sms-platform-visuals {
            position: sticky;
            top: 0;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f8f9fa;
        }
        .sms-platform-content {
            height:100vh;
            overflow-y:auto;
        }
        .sms-platform-content::webkit-scrollbar {
            display:none;
        }
        
        /* Mobile adjustments */
        @media (max-width: 991.98px) {
            .sms-platform-section {
                height: auto;
            }
            
            .sms-platform-item {
                min-height: auto;
                padding: 4rem 0;
            }
            
            .sms-platform-item h3 {
                font-size: 28px;
            }
            
            .sms-platform-item p {
                font-size: 16px;
            }
            
            .sms-image-container {
                height: 60vh;
                margin-bottom: 2rem;
            }
            
            .sms-platform-visuals {
                position: relative;
                height: auto;
                padding: 2rem 0;
                background: white;
            }
        }
        /*.sms-platform-section {*/
        /*    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;*/
        /*    height: 100vh;*/
        /*    width: 100%;*/
        /*    background: #ffffff;*/
        /*    overflow: hidden;*/
        /*}*/

        /*.sms-platform-container {*/
            /*width: 100%;*/
        /*    height: 100%;*/
            /*display: flex;*/
        /*}*/

        /* Content Column (Left) */
        /*.sms-platform-content {*/
            /*width: 50%;*/
        /*    height: 100%;*/
            /*padding: 10vh 5% 10vh 8%;*/
        /*    overflow-y: auto;*/
        /*    scrollbar-width: none;*/
        /*    -ms-overflow-style: none;*/
        /*}*/

        /*.sms-platform-content::-webkit-scrollbar {*/
        /*    display: none;*/
        /*}*/

        /* Visuals Column (Right) - Fixed Position */
        /*.sms-platform-visuals {*/
            /*width: 50%;*/
        /*    height: 100%;*/
        /*    position: sticky;*/
        /*    top: 0;*/
        /*    display: flex;*/
        /*    align-items: center;*/
        /*    justify-content: center;*/
        /*    background: #f8f9fa;*/
        /*}*/

        /* Image Container - For smooth transitions */
        /*.sms-image-container {*/
        /*    width: 90%;*/
        /*    max-width: 500px;*/
        /*    height: 80vh;*/
        /*    position: relative;*/
        /*    overflow: hidden;*/
        /*    border-radius: 12px;*/
        /*    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);*/
        /*}*/

        /* Images - Absolutely positioned within container */
        /*.sms-platform-image {*/
        /*    width: 100%;*/
        /*    height: 100%;*/
        /*    object-fit: cover;*/
        /*    position: absolute;*/
        /*    top: 0;*/
        /*    left: 0;*/
        /*    opacity: 0;*/
        /*    transition: opacity 0.6s ease;*/
        /*}*/

        /*.sms-platform-image.active {*/
        /*    opacity: 1;*/
        /*}*/

        /* Content Items */
        /*.sms-platform-item {*/
        /*    min-height: 90vh;*/
        /*    display: flex;*/
        /*    flex-direction: column;*/
        /*    justify-content: center;*/
        /*    margin-bottom: 5vh;*/
        /*}*/

        /* Typography */
        /*.sms-platform-item h2 {*/
        /*    font-size: 14px;*/
        /*    font-weight: 600;*/
        /*    color:var(--zapptext-blue);*/
        /*    text-transform: uppercase;*/
        /*    letter-spacing: 0.1em;*/
        /*    margin-bottom: 15px;*/
        /*}*/

        /*.sms-platform-item h3 {*/
        /*    font-size: 36px;*/
        /*    font-weight: 700;*/
        /*    color: #111827;*/
        /*    margin-bottom: 20px;*/
        /*    line-height: 1.3;*/
        /*}*/

        /*.sms-platform-item p {*/
        /*    font-size: 18px;*/
        /*    color: #4b5563;*/
        /*    line-height: 1.6;*/
        /*    margin-bottom: 30px;*/
        /*    max-width: 90%;*/
        /*}*/

        /* Feature List */
        .sms-feature-list {
            margin-top: 30px;
        }

        .sms-feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-size: 16px;
            color: #4b5563;
        }

        .sms-feature-item:before {
            content: "✓";
            color: var(--zapptext-blue);
            margin-right: 10px;
            font-weight: bold;
        }

        /* Buttons */
        .sms-platform-buttons {
            display: flex;
            gap: 16px;
            margin-top: 20px;
        }

        .sms-platform-btn {
            padding: 14px 28px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .sms-platform-btn-primary {
            background:var(--zapptext-blue);
            color: white;
            border: none;
        }

        .sms-platform-btn-primary:hover {
            background:var(--zapptext-hover-blue);
        }

        .sms-platform-btn-secondary {
            background: transparent;
            color: var(--zapptext-blue);
            border: 2px solid var(--zapptext-blue);
        }

        .sms-platform-btn-secondary:hover {
             background-color:rgba(255, 255, 255, 0.12);
;
        }
        
        /*form styles*/
        .form-container {
            background-color:var(--primary-body);
            /*padding:50px 0px;*/
        }
        .form-container form label {
            font-weight:500;
        } 
        .small-text {
            font-size:12px;
        }
        .form-container .form-card {
            border-radius: 30px;
        }
        
        /*btn-styles */
        .btn-yellow, .btn-outline-yellow {
            color:#fff;
            background-color: var(--zapptext-blue);
            padding:10px 26px;
            border:none;
            border-radius:8px;
            font-weight:600;
            text-decoration:none;
        }
        
        .btn-yellow:hover {
            background-color:var(--zapptext-hover-blue);
        }
        .btn-outline-yellow {
            color:var(--zapptext-hover-blue) ;
            border:2px solid var(--zapptext-blue);
            background-color: transparent;
        }
        .btn-outline-yellow:hover {
            background-color:rgba(255, 255, 255, 0.12);
        }
        
        /*explore-cards section*/
        .explore-more {
            padding:50px 0px;
        }
        .card-content svg {
            color:black;
        }
        .explore-more-card{
            border-radius: 20px;
         }
         .explore-more-card img {
            border-radius:20px 20px 0px 0px;
         }
         .explore-card-desc {
            height:100px;
         }
         
         /*RCS messaging */
         .RCS-msgs, .AI-msgs {
            font-family:sans-serif;
            padding:50px 0px;
         }
         .AI-msgs {
            background-color:rgb(252,236,203);
         }
         .rcs-image-card {
            padding-right:70px;
         }
         .ai-image-card {
            padding-left:70px;
         } 
         .rcs-content h5, .ai-content h5 {
            font-size:18px;
         }
         
         /*global network styles */
         .global-network {
            background-color: #fff;
            padding:30px 0px;
            font-family:sans-serif !important;
         }
         
          /*applications section start */
           .text-uppercase{
            color: rgb(75 87 94);
            font-size: 1rem;
            font-weight: 500;
            line-height: 1.5rem;
            letter-spacing: .156em;
            margin-bottom: .5rem;
           }
           
          
           .paragaraph{
            color: rgb(75 87 94);
           }
        .clients-logo{
            color: #808A91;
        }
        .card-title{
            color: rgb(0 0 0);
            font-weight: 400;
            font-size: 1.125rem;
            line-height: 1.75rem;
        }
        .card-paragraph{
            color: rgb(75 87 94);
        }
        
        .section-heading{
            color: rgb(75 87 94);
            font-size: 1rem;
            font-weight: 600;
            line-height: 1.5rem;
            letter-spacing: 0.156em;
            margin-bottom: .5rem;
            font-weight: 600;
            font-size: 15px;
        }
        .main-heading{
            color: #000;
            font-size: 28px;
            line-height: 2.5rem;
            letter-spacing: 2px;
        
        }
        .paragraph-section{
            color: rgb(75 87 94);
            margin-bottom: 1rem;
            font-size: 15px;
            letter-spacing: 1px;
          
        }
        .platform-feature-list{
            color:rgb(75 87 94);
            font-size: 16px;
            letter-spacing: 1px;
        }
        .btn-arrow-hover {
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
        padding-right: 2.5rem;
        }
        
        .btn-arrow-hover .btn-text {
           
        }
        
        .btn-arrow-hover .btn-arrow {
            position: absolute;
            right: 1rem;
            opacity: 0;
            transition: all 0.3s ease;
            transform: translateX(-20px);
        }
        .btn-arrow-hover:hover .btn-arrow {
            opacity: 1;
            transform: translateX(0PX);
        }
        
        /* Outline button styling */
        .btn-outline-warning {
            color: #000000; /* Bootstrap warning color */
            border-color: #EB9605;
            background-color: transparent;
        }
        
        .btn-outline-warning:hover {
            background-color: #ffffff;
            color: #000000;
        }
        #fourt-section{
            background-color: #f7f9fa !important;
        }
        .bg-warning {
            background-color: #EB9605 !important;
        }
        #seven-section{
            background-color: rgb(235 238 240) !important; 
        }
        .text-black{
            line-height: 35px;
            letter-spacing: 1px;
        }
        .explore-more-link{
            font-size: 25px;
            /*letter-spacing: 4px;*/ 
            color:#06998B !important;
        }
        .bi-arrow-right{
            color: #06998B !important;;
        }
         /*applications section end */
         
 
         /*engage page css*/
         
         .engage-banner-section {
            background-color: rgb(226,240,232);
        }
        .engine-section {
            background-color:#f7f9fa;
        }
        .link-style {
            color:#007874 !important;
            text-underline-offset:0.25em;
            font-weight:600;
        }

        .carousel-inner {
          overflow: visible; /* Allows content to extend beyond container */
        }
         
        .customer-story-card,  .carousel-story-card {
          margin: 0 15px; /* Adds spacing between slides */
        }
        .carousel.slide {
          overflow: hidden;
        }
        .customer-story-card,  .carousel-story-card {
            background-color: rgb(252,236,203);
        }
        @media (max-width:410px) {
            .customer-story-card {
                height:650px !important;
            }
        }
        
        /*swiper section*/
        .card-border-radius {
            border-radius:20px;
        }
        .feature-card-height {
            height:235px;
        }


        /* dark section  */
         .body-dark {
            background-color: rgb(20,24,28);
         }
         .link-dark-style {
            color:#51B8A6 !important;
         }
         .dark-card-height {
            height:270px;
         }
         
         /*level up msgs */
        /*  .level-up-msgs-card {*/
        /*    height:420px;*/
        /*}*/
        /*@media (max-width:1100px) {*/
        /*    .level-up-msgs-card {*/
        /*    height:345px;*/
        /*}*/
        /*} */
/*engage css end here */


/*Chatbot css starts here */
@media (max-width:425px) {
    .carousel-story-card {
        height:450px !important;
    }
    .insights-card-height{
            height:400px !important;
        }
}
@media (min-width:425px) and (max-width:992px) {
    .carousel-story-card {
        height:360px !important;
    }
    .insights-card-height{
            height:420px !important;
        }
}
@media (min-width:992px) {
    .carousel-story-card {
        height:400px !important;
    }
    .insights-card-height{
            height:500px;
        }
}
.bg-info-blue {
            background-color:#f7f9fa;
        }
        .bg-grey {
            background-color:rgb(235,238,240);
        }
        .card-border-radius {
            border-radius:20px;
        }
        .insights-card-height{
            height:500px;
        }
        @media (max-width:1024px) {
            .btn-container {
                align-items: start !important;
            }
        }
        
/*Chatbot css ends here*/
/* Contact Center css start */
.Contact-baner{
        background-color: rgb(224 241 255);
    }
    .Banner-Heading{
        color: rgb(75 87 94);
        font-size: 1rem;
        font-weight: 500;
        line-height: 1.5rem;
        letter-spacing: .156em;
        margin-bottom: .5rem;  
    }
    .Banner-MainHeading{
        color: rgb(0 0 0);
        font-size: 4rem;
        line-height: 4.5rem;
        font-weight: 300;
        letter-spacing: -.03em;
    }
    .Banner-paragaraph{
        margin-bottom: 1rem;
        color: rgb(75 87 94);
        word-spacing: 1px;
        letter-spacing: 1.1px;
    }
    .Banner-text{
        color: rgb(0 0 0);
        font-size: 1rem !important;
        line-height: 1.5rem !important;
        letter-spacing: 1px;
    }
    .btn-arrow-hover {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    padding-right: 2.5rem;
}
.btn-arrow-hover .btn-arrow {
    position: absolute;
    right: 1rem;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateX(-20px);
}
.btn-arrow-hover:hover .btn-arrow {
    opacity: 1;
    transform: translateX(0PX);
}

/* Outline button styling */
.btn-outline-warning {
    color: #000000; /* Bootstrap warning color */
    border-color: #EB9605;
    background-color: transparent;
}

.btn-outline-warning:hover {
    background-color: #ffffff;
    color: #000000;
}
.card-title{
   color:  rgb(0 0 0);
   font-weight: 500 !important;
   font-size: 1.125rem;
    line-height: 1.75rem;
    letter-spacing: 1px;
}
.card-paragraph {
    color: rgb(75 87 94);
    font-size: 14px !important;
    line-height: 1.5rem !important;
    letter-spacing: 0.2px;

}
.section-heading {
    letter-spacing: 2px;
    font-weight: 500;
}
.Scale-baner{
    background-color: rgb(252 236 203);
}
.Scale-Heading{
    color: #000;
    line-height: 35px;
    font-weight: 400;
    font-size: 28px;
}
.Scale-paragaraph{
    color: rgb(75 87 94);
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 1px;
}

    
/* Contact Center css end */


/*Products page css starts here*/
 .sticky-sidebar {
            position: sticky;
            top: 7rem;
            height: calc(100vh - 4rem);
            overflow-y: auto;
        }
        .content-section {
            padding: 4rem 0;
        }
        .nav-link {
            color: #6c757d;
            padding: 0.5rem 0;
        }
        .nav-link:hover, .nav-link.active {
            color: #0d6efd;
        }
        .nav-link.active {
            font-weight: 600;
        }
        .main-section {
            padding: 6rem 0;
            background-color: #f8f9fa;
        }
        .product-card {
            background: #ffffff;
            border-radius: 8px;
            padding: 2rem;
            height: 100%;
            transition: transform 0.3s ease;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }
        .product-card:hover {
            transform: translateY(-5px);
        }
        .product-image {
            width: 100%;
            height: auto;
            margin-bottom: 1.5rem;
        }
        .product-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #1a237e;
        }
        .product-description {
            color: #6c757d;
            margin-bottom: 1.5rem;
        }
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1a237e;
            margin-bottom: 1rem;
        }
        .section-description {
            font-size: 1.25rem;
            color: #6c757d;
            margin-bottom: 3rem;
        }
        
/*products css ends here */


/*one-partner-all-your-customer-communications page services tab pane css starts here*/
        /* Services Tab Styles */
        .services-tabs {
            border-bottom: 1px solid #dee2e6;
            display: flex;
            overflow-x: auto;
            gap:10px;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        .services-tabs::-webkit-scrollbar {
            display: none;
        }
        .services-tabs .navi-link {
            border: none;
            color: #6c757d;
            padding: 1rem 0.5rem;
            margin-right: 1.5rem;
            font-weight: 500;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
            white-space: nowrap;
            background-color:none;
        }
        .services-tabs .navi-link.active, 
        .services-tabs .navi-link:hover {
            color: #0d6efd;
            border-bottom-color: #0d6efd;
            background-color: transparent;
        }
        .tab-pane {
            padding: 2rem 0;
        }
        .tab-pane.fade {
            transition: opacity 0.3s ease-in-out;
        }
        
/*one-partner-all-your-customer-communications page services tab pane css ends here*/
