:root {
    --heading-font: "Questrial",   sans-serif;
    --nav-font: "Open Sans",   sans-serif;
}
a {
    text-decoration: none!important;
}
.heading .subhead {
    display: none;
}
:root {
    --background-color: #ffffff;
    --default-color: #000;
    --heading-color: #c762cb;
    --accent-color: #c762cb;
    --surface-color: #ffffff;
    --contrast-color: #ffffff;
}
:root {
    --nav-color: rgba(0,  0,  0,  0.875);
    --nav-hover-color: #c762cb;
    --nav-mobile-background-color: #ffffff;
    --nav-dropdown-background-color: #ffffff;
    --nav-dropdown-color: #000000;
    --nav-dropdown-hover-color: #5c99ee;
}
.light-background {
    --background-color: #f8fbff;
    --surface-color: #ffffff;
}
.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}
:root {
    scroll-behavior: smooth;
}
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: "Poppins", sans-serif;
}
p, li {
    line-height: 30px;
    letter-spacing: .5px;
    font-weight: 500;
}
a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}
a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
    color: var(--heading-color);
    font-family: "Poppins", sans-serif;
}
.header {
    --background-color: #ffffff;
    color: var(--default-color);
    transition: all 0.5s;
    z-index: 997;
    background-color: var(--background-color);
}
.header .topbar {
    background-color: #6d0458;
    height: 40px;
    padding: 0;
    font-size: 14px;
    transition: all 0.5s;
}
.header .topbar .contact-info i {
    font-style: normal;
    color: var(--contrast-color);
}
.header .topbar .contact-info i a, .header .topbar .contact-info i span {
    padding-left: 5px;
    color: var(--contrast-color);
}
@media (max-width:575px) {
    .header .topbar .contact-info i a, .header .topbar .contact-info i span {
    font-size: 13px;
}
}.header .topbar .contact-info i a {
    line-height: 0;
    transition: 0.3s;
}
.header .topbar .contact-info i a:hover {
    color: var(--contrast-color);
    text-decoration: underline;
}
.header .topbar .social-links a {
    color: color-mix(in srgb, var(--contrast-color), transparent 40%);
    line-height: 0;
    transition: 0.3s;
    margin-left: 20px;
}
.header .topbar .social-links a:hover {
    color: var(--contrast-color);
}
.header .branding {
    min-height: 60px;
    box-shadow: 3px 2px 12px 0 #ddd;
    padding: 10px 0;
}
.header .logo img {
    width: 200px;
    margin-right: 8px;
}
.scrolled .header {
    box-shadow: 0 0 18px rgb(0 0 0 / .1);
}
.scrolled .header {
    --background-color: #ffffff;
}
@media (min-width:1200px) {
    .navmenu {
    padding: 0;
}
.navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}
.navmenu li {
    position: relative;
}
.navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
}
.navmenu>ul>li:last-child {
    padding-right: 0;
}
.navmenu a, .navmenu a:focus {
    color: #ab3894;
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
}
.navmenu a i, .navmenu a:focus i {
    font-size: 13px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
}
.navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 1px;
    bottom: -6px;
    left: 0;
    background-color: var(--accent-color);
    visibility: hidden;
    width: 0;
    transition: all 0.3s ease-in-out 0s;
}
.navmenu a:hover:before, .navmenu li:hover>a:before, .navmenu .active:before {
    visibility: visible;
    width: 100%}
.navmenu li:hover>a, .navmenu .active, .navmenu .active:focus {
    color: var(--nav-hover-color);
}
.navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0 0 30px rgb(0 0 0 / .1);
}
.navmenu .dropdown ul li {
    min-width: 200px;
}
.navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
}
.navmenu .dropdown ul a i {
    font-size: 12px;
}
.navmenu .dropdown ul a:hover, .navmenu .dropdown ul .active:hover, .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
}
.navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}
.navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
}
.navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
}
}@media (max-width:1199px) {
    .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
}
.navmenu {
    padding: 0;
    z-index: 9997;
}
.navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
}
.navmenu a, .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
}
.navmenu a i, .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}
.navmenu a i:hover, .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
}
.navmenu a:hover, .navmenu .active, .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
}
.navmenu .active i, .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
}
.navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
}
.navmenu .dropdown ul ul {
    background-color: rgb(33 37 41 / .1);
}
.navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgb(33 37 41 / .03);
}
.mobile-nav-active {
    overflow: hidden;
}
.mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
}
.mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgb(33 37 41 / .8);
    transition: 0.3s;
}
.mobile-nav-active .navmenu>ul {
    display: block;
}
}@media (min-width:1200px) {
    .navmenu .megamenu-2 {
    position: static;
}
.navmenu .megamenu-2 .mobile-megamenu {
    display: none;
}
.navmenu .megamenu-2 .desktop-megamenu {
    background-color: var(--nav-dropdown-background-color);
    box-shadow: 0 5px 20px rgb(0 0 0 / .1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    border-radius: 6px;
    z-index: 99;
    padding: 0;
    display: flex;
    max-height: 89vh;
    overflow: hidden;
}
.navmenu .megamenu-2:hover>.desktop-megamenu {
    opacity: 1;
    top: 100%;
    visibility: visible;
}
.navmenu .megamenu-2 .tab-navigation {
    width: 300px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
    border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding: 25px 0;
    flex-shrink: 0;
}
.navmenu .megamenu-2 .tab-navigation .nav-tabs {
    border: none;
}
.navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item {
    width: 100%;
    padding-left: 10px;
}
.navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px 20px;
    border: none;
    width: 100%;
    background: #fff0;
    transition: all 0.3s;
    border-radius: 0;
    color: #1a1a1a;
}
.navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
}
.navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link.active i {
    background: linear-gradient(90deg, #6d0458, #df00c3);
    color: #fff;
}
.navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link.active span {
    color: var(--accent-color);
    font-weight: 600;
}
.navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link i {
    font-size: 20px;
    transition: 0.3s;
    flex-shrink: 0;
    padding: 7px 12px;
    border-radius: 30px;
}
.navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link span {
    font-size: 14px;
    font-weight: 700!important;
    color: #1a1a1a!important;
}
.navmenu .megamenu-2 .tab-content {
    flex: 1;
    padding: 5px 10px;
    overflow-y: auto;
}
.navmenu .megamenu-2 .tab-content .content-grid {
    display: grid;
    grid-template-columns: 4fr 4fr 4fr;
    gap: 20px;
    margin-bottom: 30px;
    align-items: start;
}
.navmenu .megamenu-2 .tab-content .content-grid .product-section .seotag {
    color: var(--heading-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--accent-color);
}
.navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 9px 0;
    border-bottom: 2px solid #fff0;
    border-radius: 8px;
    transition: all 0.3s;
    color: #000;
}
.navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link:hover {
    background-color: #ffecfb;
    border-radius: 0;
    border-bottom: 2px solid #e308b5;
}
.navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link:hover i {
    color: #000;
}
.navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link i {
    color: color-mix(in srgb, var(--nav-dropdown-color), transparent 20%);
    font-size: 18px;
    transition: all 0.3s;
    min-width: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}
.navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link div {
    flex: 1;
    min-width: 0;
}
.navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link div span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
    line-height: 1.3;
}
.navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link div small {
    color: color-mix(in srgb, var(--nav-dropdown-color), transparent 40%);
    font-size: 12px;
    line-height: 1.3;
    display: block;
}
.navmenu .megamenu-2 .tab-content .featured-banner {
    background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
    border-radius: 10px;
    padding: 25px;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}
.navmenu .megamenu-2 .tab-content .featured-banner .banner-content {
    display: flex;
    align-items: center;
    gap: 20px;
}
.navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}
.navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info {
    flex: 1;
    min-width: 0;
}
.navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info h5 {
    color: var(--heading-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.3;
}
.navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info p {
    color: var(--nav-dropdown-color);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
}
.navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info .cta-btn {
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
}
.navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info .cta-btn:hover {
    color: color-mix(in srgb, var(--accent-color), black 15%);
}
.navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info .cta-btn:hover i {
    transform: translateX(4px);
}
.navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info .cta-btn i {
    transition: 0.3s;
}
.navmenu .megamenu-2 .tab-content .resources-layout .resource-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    align-items: start;
}
.navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category {
    background-color: var(--surface-color);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    transition: all 0.3s;
}
.navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category:hover {
    box-shadow: 0 5px 20px rgb(0 0 0 / .05);
    transform: translateY(-2px);
    border-color: var(--accent-color);
}
.navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category i {
    color: var(--accent-color);
    font-size: 24px;
    margin-bottom: 15px;
    display: block;
}
.navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category h5 {
    color: var(--heading-color);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}
.navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category p {
    color: var(--nav-dropdown-color);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
}
.navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category .resource-link {
    color: var(--accent-color);
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
}
.navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category .resource-link:hover {
    color: color-mix(in srgb, var(--accent-color), black 15%);
}
.navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category .resource-link:hover i {
    transform: translateX(3px);
}
.navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category .resource-link i {
    transition: 0.3s;
}
}@media (max-width:1199px) {
    .navmenu .megamenu-2 .desktop-megamenu {
    display: none;
}
.navmenu .megamenu-2 .mobile-megamenu {
    position: static;
    display: none;
    z-index: 99;
    padding: 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
    border-radius: 6px;
    overflow: hidden;
}
.navmenu .megamenu-2 .mobile-megamenu li {
    position: relative;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.navmenu .megamenu-2 .mobile-megamenu li:last-child {
    border-bottom: none;
}
.navmenu .megamenu-2 .mobile-megamenu li a {
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--nav-dropdown-color);
    font-size: 15px;
    transition: 0.3s;
    font-weight: 500;
}
.navmenu .megamenu-2 .mobile-megamenu li a:hover {
    color: var(--nav-dropdown-hover-color);
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}
.navmenu .megamenu-2 .mobile-megamenu li ul {
    padding: 0;
    background-color: color-mix(in srgb, var(--default-color), transparent 97%);
}
.navmenu .megamenu-2 .mobile-megamenu li ul li a {
    padding-left: 17px;
    font-size: 14px;
    font-weight: 400;
    padding: 6px 10px;
    background: #c762cb;
    color: #fff;
}
.navmenu .megamenu-2 .mobile-megamenu.dropdown-active {
    display: block;
}
}input[type=text], input[type=email], textarea {
    color: var(--default-color);
    background-color: var(--surface-color);
    font-size: 14px;
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}
input[type=text]:focus, input[type=email]:focus, textarea:focus {
    border-color: var(--accent-color);
}
input[type=text]::placeholder, input[type=email]::placeholder, textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}
.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}
.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}
.scroll-top.active {
    visibility: visible;
    opacity: 1;
}
.hero .herotag {
    position: relative;
    display: ruby-text;
    padding: 8px 12px;
    background: #b3007d;
    border-radius: 5px;
    color: #fff;
}
.hero .herotag h6 {
    font-weight: 600;
    color: #fff;
}
.hero .container {
    position: relative;
    z-index: 2;
    padding: 0 15px;
}
.hero .hero-content {
    padding-right: 30px;
    text-align: center;
}
@media (max-width:991px) {
    .hero .hero-content {
    padding-right: 0;
    text-align: center;
    margin-bottom: 50px;
}
}.hero .hero-content h1 {
    font-size: 37px;
    font-weight: 700;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 20px;
}
.hero .hero-content h1 span {
    color: #fd77e2;
    text-shadow: -1px 5px 3px #460539;
}
.hero .btn-secondary:hover {
    background: #c762cb!important;
    color: #fff;
    border-color: #fff;
    box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 80%);
    transform: translateY(-2px);
}
.hero .btn-secondary {
    background: #fff;
    color: #000;
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .8px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 70%);
    border: 2px solid #fff0;
}
@media (max-width:768px) {
    .features-list h4 {
    font-size: 20px;
    text-align: left;
}
.features-list li {
    text-align: left;
}
.aboutus .welcome-i {
    padding-top: 20px;
}
.heading p {
    font-size: 14px;
    line-height: 22px;
}
.heading h2 {
    font-size: 20px!important;
}
.hero .hero-content {
    padding-top: 50px;
}
.hero .hero-content h1 {
    font-size: 23px!important;
}
.hero .hero-content h1 span {
    font-size: 20px!important;
}
}@media (max-width:576px) {
    .hero .hero-content p {
    font-size: 14px!important;
}
.hero .hero-content h1 {
    font-size: 22px!important;
}
}.hero .hero-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 35px;
}
@media (max-width:991px) {
    .hero .hero-content p {
    max-width: 100%}
}@media (max-width:576px) {
    .hero .hero-content p {
    font-size: 16px;
}
}.hero .hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
@media (max-width:576px) {
    .hero .hero-actions {
    flex-direction: column;
    gap: 20px;
}
}.hero .btn-primary {
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .8px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 70%);
    border: 2px solid #fff0;
}
.hero .btn-primary:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 80%);
    transform: translateY(-2px);
}
.hero .btn-video {
    color: var(--default-color);
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}
.hero .btn-video i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--contrast-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}
.hero .btn-video:hover {
    color: var(--accent-color);
}
.hero .btn-video:hover i {
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
    box-shadow: 0 12px 35px color-mix(in srgb, var(--accent-color), transparent 60%);
    transform: scale(1.1);
}
.hero .hero-image {
    position: relative;
    text-align: center;
}
@media (max-width:991px) {
    .hero .hero-image {
    margin-top: 50px;
}
}.hero .hero-image::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, color-mix(in srgb, var(--accent-color), transparent 90%) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: pulse 4s ease-in-out infinite;
}
@media (max-width:768px) {
    .hero .hero-image: :before {
    width: 300px;
    height: 300px;
}
}.hero .floating {
    max-width: 85%;
    height: auto;
    animation: floating 3s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px color-mix(in srgb, var(--default-color), transparent 85%));
}
.aboutus {
    background: url(../img/aboutbg.webp);
    position: relative;
    padding: 40px 0;
    background-position: top center;
    background-size: cover;
}
.aboutus .heading h2 {
    font-weight: 700;
    color: #000;
}
.animate-border {
    position: relative;
    display: block;
    width: 115px;
    height: 3px;
    background: #6d0458;
    overflow: hidden;
}
.check-list-info {
    margin-top: -.5em;
    padding-left: 0;
    margin-bottom: -.5em;
    list-style: none;
}
.check-list-info li {
    position: relative;
    padding: .5rem 0 .5rem 1.875rem;
    font-size: 1rem;
    line-height: 1.5;
}
.check-list-info li:before {
    position: absolute;
    top: 10px;
    left: 0;
    font-family: "bootstrap-icons";
    content: "\f633";
    font-weight: 900;
    font-size: 1.25rem;
    line-height: 1.5rem;
    color: #000;
}
.promo-item {
    border-radius: 10px;
    -webkit-filter: drop-shadow(0 0 20px rgb(0 0 0 / .07));
    filter: drop-shadow(0 0 20px rgb(0 0 0 / .07));
    background-color: #fff;
    padding: 30px;
    margin-top: 30px;
    position: relative;
    min-height: 260px;
    overflow: hidden;
    z-index: 1;
}
.promo-item:before {
    content: '';
    position: absolute;
    right: -65px;
    width: 95px;
    height: 95px;
    top: -55px;
    border-radius: 50px;
    background-color: #6d0458;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    z-index: -1;
}
.promo-item:hover:before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    background-color: #6d0458;
}
.promo-item h3 {
    color: #000!important;
    font-size: 20px;
}
.promo-item:hover h3, .promo-item:hover p {
    color: #fff!important;
}
.promo-img {
    margin-bottom: 15px;
    background: #6d0458;
    padding: 8px 15px;
    display: inline-block;
    border-radius: 15px;
    color: #fff;
}
.call-to-action {
    background: url(../img/cta-bg.png);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0;
}
.cta-form-wrap .p-0 {
    float: left;
}
.cta-form-group {
    position: relative;
    z-index: 1;
    margin: 0 -45px 0 0;
    right: -43px;
}
.cta-form-wrap input[type=email] {
    position: relative;
}
.cta-form-wrap input[type=url], .cta-form-wrap input[type=email] {
    border-radius: 50px;
    padding: 15px 30px;
    font-size: 14px;
    border: none;
}
.cta-form-border {
    border-left: 1px solid #ebebeb;
    left: 25px;
}
.cta-form-wrap input[type=submit] {
    font-size: 14px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
    background: #6d0458;
    color: #fff;
    padding: 14px 37px;
    border-radius: 50px;
    -webkit-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    border: none;
    position: relative;
    z-index: 2;
    margin-left: -36px;
}
@media (min-width:320px) and (max-width:991px) {
    .cta-form-group: after {
    display: none;
}
.cta-form-group {
    margin: 0;
    right: 0;
}
.cta-form-border {
    left: 0;
    border: none;
}
}@media (min-width:768px) and (max-width:991px) {
    .cta-form-wrap .p-0 {
    margin-bottom: 20px;
}
}.cta-image img.img-left {
    top: -10px;
    left: 6%}
.cta-image img {
    position: absolute;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
}
.heading h2 {
    font-weight: 700;
    color: #000;
}
.ctaring {
    width: 611px;
    height: 611px;
    background-image: url(../img/cta-ring.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.ctaring {
    position: absolute;
    top: 1%;
    left: 6%;
    z-index: 1;
    -webkit-animation: fa-spin 50s infinite linear;
    animation: fa-spin 50s infinite linear;
    opacity: .8;
    filter: drop-shadow(2px 4px 6px black);
}
@keyframes fa-spin {
    0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}
100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}
}.howwework {
    background: url(../img/howwework-bg.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 40px 0;
}
.workbox {
    border-radius: 8px;
    border: 1px solid #ffffff1a;
    background-color: #6d0458;
    padding: 24px 20px;
    transition: all 0.4s;
}
.workbox .heading h3 {
    font-weight: 600;
    color: #fff;
    margin-top: 20px;
    transition: 0.5s;
    font-size: 20px;
}
.workbox .heading h4 a {
    color: #fff;
}
.workbox p {
    color: #fff;
}
.workbox.mt-30 {
    margin-top: 30px;
}
.heading .subhead {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 4px;
    color: #6d0458;
}
.workbox .icon {
    height: 60px;
    width: 60px;
    border: 1px solid #fff3;
    background-color: #fff4;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    transition: all .4s;
}
.workbox:hover {
    transition: all .4s;
    border: 1px solid #ab3894;
    transform: translateY(-10px);
}
.workbox:hover .icon {
    background-color: #fff;
    transition: all .4s;
}
.services {
    position: relative;
    padding: 50px 0;
    z-index: 1;
    background: #fff;
}
.services .service-widget-area {
    position: relative;
    z-index: 1;
    transition: all 0.4s;
    box-shadow: rgb(50 50 93 / .25) 0 50px 100px -20px, rgb(0 0 0 / .3) 0 30px 60px -30px;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 30px;
}
.services .service-widget-area:hover .content20-widget-area {
    top: 0;
    box-shadow: 0;
    transition: all 0.6s;
}
.services .service-widget-area:hover .content-area {
    bottom: -200px;
    transition: all 0.4s;
}
.services .service-widget-area .img1 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 4px;
}
.services .service-widget-area .content-area {
    position: absolute;
    bottom: 0;
    width: 100%;
    border-radius: 0 0 5px 5px;
    border: 1px solid rgb(255 255 255 / .1);
    background: rgb(199 98 203 / 45%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 25px 20px 20px;
    transition: all 0.4s;
}
@media (max-width:767px) {
    .stickycard {padding:30px 0px!important;}
    
    h2{font-size:24px!important;}
    
    .footer .ftrcontact .info{padding-bottom:15px;}
    .services .service-widget-area .content-area {
    padding: 36px 24px 24px;
}
}@media only screen and (min-width:768px) and (max-width:991px) {
    .services .service-widget-area .content-area {
    padding: 36px 24px 24px;
}
}.services .service-widget-area .content-area .icons {
    height: 70px;
    width: 70px;
    display: inline-block;
    transition: all 0.4s;
    border-radius: 50%;
    line-height: 70px;
    background: #fff;
    text-align: center;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    margin-left: -35px;
    top: -50px;
}
.services .service-widget-area .content-area a {
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    display: block;
    transition: all 0.4s;
}
.services .service-widget-area .content20-widget-area {
    border-radius: 5px;
    background: #6d0458;
    text-align: center;
    padding: 20px 30px;
    position: absolute;
    top: -400px;
    height: 100%;
    transition: all 0.6s;
}
@media (max-width:767px) {
    .services .service-widget-area .content20-widget-area {
    padding: 22px;
}
}@media only screen and (min-width:768px) and (max-width:991px) {
    .services .service-widget-area .content20-widget-area {
    padding: 14px;
}
}.services .service-widget-area .content20-widget-area .icons {
    height: 70px;
    width: 70px;
    display: inline-block;
    transition: all 0.4s;
    border-radius: 50%;
    line-height: 70px;
    background: #fff;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 10px;
}
.services .service-widget-area .content20-widget-area a {
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    display: block;
    transition: all 0.4s;
}
.services .service-widget-area .content20-widget-area .readmore {
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
    display: inline-block;
    transition: all 0.4s;
}
.services .service-widget-area .content20-widget-area .readmore i {
    margin-left: 4px;
}
.services .service-widget-area .content20-widget-area p {
    color: rgb(255 255 255 / .8);
    text-align: center;
    font-size: 16px;
    padding-top: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
}
.testimonial {
    background: url(../img/testimonialb.png);
    position: relative;
    padding: 60px 0 70px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
@media (max-width:767.98px) {
    .testimonial {
    padding: 60px 0 30px;
}
}.testimonial .testimonial-carousel .owl-nav {
    position: absolute;
    width: 122px;
    height: 66px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 18px;
    border-radius: 100px;
    background-color: #fff;
    z-index: 3;
    left: -84%;
    top: 68%}
.testimonial .testimonial-carousel .owl-nav .owl-prev, .testimonial .testimonial-carousel .owl-nav .owl-next {
    width: 46px;
    height: 46px;
    margin-top: 11px;
    font-size: 20px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: var(--theme-color1);
    background-color: #fff0;
    border: 1px solid #e6e0fa;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.testimonial .testimonial-carousel .owl-nav .owl-prev:before, .testimonial .testimonial-carousel .owl-nav .owl-next:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    -webkit-transform: scale(.2);
    transform: scale(.2);
    opacity: 0;
    background: var(--gradient-1);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}
.testimonial .testimonial-carousel .owl-nav .owl-prev .icon, .testimonial .testimonial-carousel .owl-nav .owl-next .icon {
    position: relative;
    z-index: 1;
}
.testimonial .testimonial-carousel .owl-nav .owl-prev:after, .testimonial .testimonial-carousel .owl-nav .owl-next:after {
    display: none;
}
.testimonial .testimonial-carousel .owl-nav .owl-prev:hover, .testimonial .testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--theme-color-white);
}
.testimonial .testimonial-carousel .owl-nav .owl-prev:hover:before, .testimonial .testimonial-carousel .owl-nav .owl-next:hover:before {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}
.testimonial-section-two .content-column .inner-column .icon-26 {
    position: absolute;
    bottom: -60px;
    left: 220px;
}
@media (max-width:1199.98px) {
    .testimonial-section-two .content-column .inner-column .icon-26 {
    display: none;
}
}.testimonial-section-two .blocks-column {
    margin-bottom: 50px;
}
.testimonial-section-two .blocks-column .inner-column {
    position: relative;
    overflow: hidden;
    margin-right: -365px;
}
@media (max-width:1199.98px) {
    .testimonial-section-two .blocks-column .inner-column {
    margin-right: 0;
}
}.testimonial-section-two .blocks-column .inner-column .swiper-outer {
    position: relative;
    max-width: 590px;
}
.testimonial-block-two {
    padding-left: 20px;
    padding-bottom: 20px;
    position: relative;
}
@media (max-width:575.98px) {
    .testimonial-block-two {
    padding-left: 10px;
    padding-bottom: 10px;
}
}.testimonial-block-two:before {
    content: "";
    position: absolute;
    top: 20px;
    right: 20px;
    left: 0;
    bottom: 0;
    padding: 2px;
    border-radius: 20px 20px 80px 20px;
    background: linear-gradient(to right, #6d0458 0%, #c762cb 100%);
    -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}
.testimonial-block-two .inner-box {
    position: relative;
    overflow: hidden;
    padding: 0 30px 20px;
    border-radius: 20px 20px 80px 20px;
    background-color: #fff;
    z-index: 3;
}
@media (max-width:575.98px) {
    .testimonial-block-two .inner-box {
    padding: 0 15px 20px;
}
}.testimonial-block-two .inner-box .shape {
    position: absolute;
    top: 0;
    right: 0;
    pointer-events: none;
}
.shape {
    width: 395px;
    height: 100%;
    background-image: url(../img/shape-19.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.testimonial-block-two .inner-box .icon-quote-2 {
    position: absolute;
    top: 32px;
    right: 18px;
}
.testimonial-block-two .inner-box .icon-quote-2 {
    width: 56px;
    height: 40px;
    background: url(../img/icon-quote-2.png);
}
.testimonial-block-two .inner-box .content-box {
    position: relative;
    z-index: 3;
}
.testimonial-block-two .inner-box .author-image {
    position: relative;
    display: inline-block;
    padding: 27px 10px 10px;
    border-radius: 0 0 100px 100px;
    background: linear-gradient(to right, #6d0458 0%, #e343b3 100%);
    margin-bottom: 30px;
}
@media (max-width:767.98px) {
    .testimonial-block-two .inner-box .author-image {
    margin-bottom: 20px;
}
}.testimonial-block-two .inner-box .author-image img {
    position: relative;
    width: 70px;
    border-radius: 50%}
.testimonial-block-two .inner-box .text {
    position: relative;
    font-size: 16px;
    line-height: 24px;
    color: #333;
    margin-bottom: 20px;
}
@media (max-width:767.98px) {
    .testimonial-block-two .inner-box .text {
    margin-bottom: 20px;
}
}@media (max-width:575.98px) {
    .testimonial-block-two .inner-box .text {
    font-size: 16px;
    line-height: 28px;
}
}.testimonial-block-two .inner-box .author-box {
    position: relative;
    padding-right: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
@media (max-width:575.98px) {
    .testimonial-block-two .inner-box .author-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-right: 0;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 5px;
}
}.testimonial-block-two .inner-box .author-box .name {
    position: relative;
    font-weight: 700;
    color: var(--theme-color1);
    margin-bottom: 0;
}
.testimonial-block-two .inner-box .author-box .designation {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0;
}
.testimonial-block-two .inner-box .rating {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style-type: none;
    padding-left: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
}
.testimonial-block-two .inner-box .rating i {
    color: #ed8a33;
    font-size: 13px;
}
.benifitdigital .benefitlist {
    display: flex;
}
.benifitdigital {
    position: relative;
    z-index: 1;
}
.benifitdigital .case-header-area {
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}
@media (max-width:767px) {
    .benifitdigital .case-header-area {
    margin-bottom: 30px;
}
}@media only screen and (min-width:768px) and (max-width:991px) {
    .benifitdigital .case-header-area {
    margin-bottom: 30px;
}
}.benifitdigital .benefitlist {
    display: flex;
}
@media only screen and (min-width:768px) and (max-width:991px) {
    .benifitdigital .benefitlist {
    flex-direction: column;
}
}@media (max-width:767px) {
    .benifitdigital .benefitlist {
    flex-direction: column;
}
}.benifitdigital .benefitlist>.benefitcard {
    flex: 1;
}
.benifitdigital .benefitlist .benefitcard {
    min-height: 400px;
}
.benifitdigital .benefitlist .benefitcard .cs_case_study_in {
    transition: all 0.2s ease;
    left: 80px;
    opacity: 0;
}
@media only screen and (min-width:768px) and (max-width:991px) {
    .benifitdigital .benefitlist .benefitcard .cs_case_study_in {
    left: 0;
    opacity: 1;
}
}.benifitdigital .benefitlist .benefitcard.active {
    flex: 3;
}
.benifitdigital .benefitlist .benefitcard.active .cs_case_study_in {
    opacity: 1;
    left: 0;
    transition: all 0.6s ease;
    transition-delay: 0.3s;
}
.benifitdigital .benefitlist .benefitcard.active .cs_case_study_icon {
    transform: scale(0) rotate(360deg);
    transition-delay: 0.1s;
}
.benifitdigital .benefitcard {
    height: 700px;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}
@media only screen and (min-width:1200px) and (max-width:1399px) {
    .benifitdigital .benefitcard {
    height: 600px;
}
}.benifitdigital .benefitcard .cs_case_study_title a {
    text-decoration: none;
    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 100% 3px;
}
.benifitdigital .benefitcard .cs_case_study_number {
    left: 70px;
    top: 70px;
    z-index: 1;
}
@media only screen and (min-width:768px) and (max-width:991px) {
    .benifitdigital .benefitcard .cs_case_study_number {
    left: 30px;
    top: 40px;
}
}.benifitdigital .benefitcard .cs_case_study_category {
    margin-bottom: 15px;
}
.benifitdigital .benefitcard .cs_case_study_thumb {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
}
.benifitdigital .benefitcard .cs_case_study_in {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 88px 72px;
}
@media only screen and (min-width:1200px) and (max-width:1399px) {
    .benifitdigital .benefitcard .cs_case_study_in {
    padding: 50px;
}
}@media only screen and (min-width:768px) and (max-width:991px) {
    .benifitdigital .benefitcard .cs_case_study_in {
    padding: 30px;
}
}.benifitdigital .benefitcard .cs_case_study_icon {
    left: 70px;
    bottom: 86px;
    z-index: 1;
    height: 55px;
    width: 55px;
    transition: all 0.6s ease;
}
@media only screen and (min-width:1200px) and (max-width:1399px) {
    .benifitdigital .benefitcard .cs_case_study_icon {
    left: 40px;
    bottom: 50px;
}
}@media only screen and (min-width:768px) and (max-width:991px) {
    .benifitdigital .benefitcard .cs_case_study_icon {
    display: none;
}
}.benifitdigital .cs_case_study_thumb {
    background-image: url(../img/service/Evaluation-at-every-step.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.benifitdigital .cs_case_study_thumb.cs_case_study_thumb2 {
    background-image: url(../img/service/Focused-on-a-systematic-approach.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.benifitdigital .cs_case_study_thumb.cs_case_study_thumb3 {
    background-image: url(../img/service/Clients-Requirement-In-Focus.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.benifitdigital .cs_case_study_thumb.cs_case_study_thumb4 {
    background-image: url(../img/service/We-are-the-best-industry-experts.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.benifitdigital .cs_case_study_thumb.cs_case_study_thumb5 {
    background-image: url(../img/service/AI-Driven-Approach.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.benifitdigital .cs_case_study_thumb.cs_case_study_thumb6 {
    background-image: url(../img/service/Customer-Satisfaction-at-Par.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.benifitdigital .cs_case_study_thumb.cs_case_study_thumb7 {
    background-image: url(../img/service/Scope-of-improvement.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.benifitdigital .benefitcard.cs_hover_active {
    margin: 0 8px;
    border-radius: 5px;
    height: 475px;
}
@media only screen and (min-width:768px) and (max-width:991px) {
    .benifitdigital .benefitcard.cs_hover_active {
    margin: 0 0 24px 0;
}
}@media (max-width:767px) {
    .benifitdigital .benefitcard.cs_hover_active {
    margin: 0 0 24px 0;
}
}.benifitdigital .benefitcard.cs_hover_active.active .content-area1 {
    opacity: 0;
    transition: all 0.4s;
}
.benifitdigital .benefitcard.cs_hover_active.active .content-area {
    left: 0;
    transition: all 0.4s;
    opacity: 1;
}
.benifitdigital .content-area1 {
    position: absolute;
    transform: rotate(-90deg);
    width: 290px;
    height: auto;
    left: -80px;
    bottom: 162px;
    transition: all 0.4s;
    opacity: 1;
}
.benifitdigital .content-area1 a {
    font-size: 20px;
    line-height: 20px;
    color: #fff;
    font-weight: 600;
    display: inline-block;
    text-transform: capitalize;
    transition: all 0.4s;
    width: 100%}
.benifitdigital .content-area {
    position: absolute;
    z-index: 1;
    transition: all 0.4s;
    padding: 0 24px 24px 24px;
    bottom: 0;
    left: -100%;
    opacity: 0;
}
.benifitdigital .content-area a {
    font-size: 20px;
    line-height: 20px;
    color: #fff;
    font-weight: 600;
    display: inline-block;
    text-transform: capitalize;
    transition: all 0.4s;
    width: 100%;
    margin-bottom: 8px;
}
.benifitdigital .content-area p {
    font-size: var(--ztc-font-size-font-s16);
    line-height: var(--ztc-font-size-font-s26);
    font-weight: var(--ztc-weight-regular);
    color: #fff;
    transition: all 0.4s;
}
.faqsection {
    position: relative;
    padding: 0 0;
    background: url(../img/faq-pattern-5.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.faqsection .faq-section {
    box-shadow: 0 10px 25px rgb(0 0 0 / .08);
}
.faqsection .faqimg {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}
.faqsection .accordion-item {
    background: #fff;
    border: none;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgb(0 0 0 / .05);
    transition: all 0.3s ease;
}
.faqsection .accordion-item.show {
    border-radius: 20px;
    transition: all 0.3s ease;
}
.faqsection .accordion-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgb(0 0 0 / .1);
}
.faqsection .accordion-button {
    background: #fff0;
    color: #333;
    font-weight: 600;
    font-size: 1.05rem;
    border: none;
    padding: 18px 20px 18px 50px;
    position: relative;
    box-shadow: none;
    transition: all 0.3s ease;
}
.faqsection .accordion-button::after {
    display: none;
}
.faqsection .accordion-button::before {
    content: "\F4FE";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    color: #fff;
    transition: all 0.3s ease;
    background: #6d0458;
    padding: 2px 4px;
    border-radius: 20px;
}
.faqsection .accordion-button:not(.collapsed)::before {
    content: "\F2EA"}
.faqsection .accordion-button:focus {
    box-shadow: none;
}
.faqsection .accordion-body {
    padding: 0 20px 20px 50px;
    color: #555;
    font-size: .95rem;
    line-height: 1.6;
}
.footer {
    position: relative;
    background: linear-gradient(135deg, #6d0458, #8b1574, #d103a8);
    color: #fff;
    padding: 50px 0 10px;
    box-shadow: 0 -10px 30px rgb(0 0 0 / .5);
}
.footer .ftr-description {
    background: rgb(255 255 255 / .05);
    padding: 25px;
    border-radius: 15px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    backdrop-filter: blur(6px);
}
.footer .ftr_right {
    background: rgb(255 255 255 / .05);
    padding: 25px;
    border-radius: 15px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    backdrop-filter: blur(6px);
}
.footer .socialmedia ul {
    list-style: none;
    padding-left: 0;
    gap: 10px;
    margin-bottom: 0;
}
.footer .socialmedia ul li a:hover {
    background-color: #fff0;
    background: rgb(255 255 255 / .05);
    transition: all ease-in 0.3s;
}
.footer .socialmedia ul li a {
    background: #fff;
    padding: 6px 8px;
    border-radius: 19px;
    font-size: 18px;
}
.footer .socialmedia ul li a i.bi-facebook {
    color: #1877F2;
}
.footer .socialmedia ul li a i.bi-twitter-x {
    color: #000;
}
.footer .socialmedia ul li a i.bi-instagram {
    color: #E60023;
}
.footer .socialmedia ul li a i.bi-linkedin {
    color: #0A66C2;
}
.footer .ftr_right .ftrlink .heading p {
    position: relative;
    font-size: 15px;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    padding-bottom: 10px;
}
.footer .ftr_right .ftrlink .heading p::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 190px;
    height: 3px;
    background: linear-gradient(90deg, #f500ff 0%, #ffffff 50%, #ffffff00 100%);
    border-radius: 3px;
    margin-top: 4px;
}
.footer .ftrlink .list {
    list-style: none;
    padding-left: 0;
}
.footer .ftrlink .list li a {
    color: #fff;
    transition: 0.2s;
    display: flex!important;
}
.footer .ftrlink .list li {
    font-size: 16px;
    line-height: 26px;
    padding-bottom: 5px;
    font-size: 16px;
    line-height: 26px;
    padding-bottom: 5px;
    font-weight: 600;
    letter-spacing: .3px;
}
.footer .ftrlink .list li:hover a {
    color: #ffb6ff;
    transition: .3s ease all;
    text-decoration: underline;
}
.footer .bottom-footer {
    border-top: 1px solid rgb(255 255 255 / .2);
    margin-top: 40px;
    padding-top: 15px;
}
.footer .bottom-footer p {
    font-size: 14px;
    color: #f1f1f1;
    letter-spacing: .4px;
}
.footer .bottom-footer strong {
    color: #fff;
}
.breadcrumbinner {
    background: linear-gradient(to right, #6d0458e0, #058372eb, #6d0458d9), url(../img/breadcrumbgga.webp1);
    background-size: cover;
    padding-bottom: 30px;
    background-position: bottom;
}
.breadcrumbinner .innerbnr-btn:hover {
    background: linear-gradient(90deg, #ff00ea, #ae00ff);
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgb(0 195 255 / .6);
}
.breadcrumbinner .innerbnr-btn {
    background: linear-gradient(346deg, #ffc6f4, #f3f3f3);
    padding: 13px 14px;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 0 15px rgb(0 195 255 / .3);
    color: #000;
    font-weight: 600;
}
.aboutus .aboutimage img {
    border-radius: 50%;
    box-shadow: 3px 6px 17px #8f8d8d;
    border: 2px solid #c762cb;
    animation-direction: alternate;
}
.missionvision {
    position: relative;
    padding: 50px 0;
    background: url(../img/missinbg.webp) top center;
    background-repeat: no-repeat;
    background-size: cover;
}
.missionvision .card-item:hover {
    background: #6d0458;
}
.missionvision .card-item {
    position: relative;
    background: rgb(255 255 255 / .05);
    border: 1px solid rgb(255 255 255 / .1);
    border-radius: 10px;
    padding: 20px 30px;
    margin-bottom: 25px;
    transition: all 300ms ease;
}
.missionvision .card-item p {
    color: #fff;
    padding: 16px 0;
    line-height: 30px;
    text-align: justify;
    letter-spacing: .6px;
}
.missionvision .card-item .title .iconbox img {
    width: 25px;
    height: 25px;
}
.missionvision .card-item .title .iconbox {
    background: #fff;
    padding: 5px;
    border-radius: 6px;
}
.missionvision .card-item .title i {
    font-size: 22px;
    background: #fff;
    padding: 3px 9px;
    border-radius: 10px;
    color: #6e075a;
}
.missionvision .card-item .title h6 {
    margin-bottom: 0;
    font-size: 21px;
    font-weight: 600;
    color: #fff;
}
.stickycard {
    background: #fff;
    padding: 50px 0;
}
.stickycard .stickybox {
    background: #fde7f8;
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border-radius: 20px;
    border: 1px solid rgb(255 255 255 / .3);
    padding: 25px 30px;
    box-shadow: 0 6px 20px rgb(109 4 88 / .2);
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #2e2e2e;
}
.stickycard .stickybox:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgb(109 4 88 / .4);
    border-color: #6d0458;
}
.stickycard .stickybox:nth-child(1) {
    background: rgb(255 190 242 / .35);
}
.stickycard .stickybox:nth-child(2) {
    background: rgb(255 138 230 / .3);
}
.stickycard .stickybox:nth-child(3) {
    background: rgb(240 96 211 / .25);
}
.stickycard .stickybox:nth-child(4) {
    background: rgb(240 96 211 / .2);
}
.stickycard .stickybox:nth-child(5) {
    background: rgb(240 96 211 / .15);
}
.stickycard .stickybox .title h3 {
    font-size: 1.2rem;
    color: #6d0458;
    font-weight: 600;
    margin-bottom: 12px;
    position: relative;
}
.stickycard .stickybox .title h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 20%;
    height: 2px;
    background: linear-gradient(90deg, #1d1d1d, #ff8ad9);
    border-radius: 10px;
}
.stickycard .stickybox p {
    color: #000;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}
.stickycard .stickybox {
    border: 2px solid #8b157447;
}
.sec_agency {
    background: linear-gradient(45deg, #6d0458d6, #fb8dff59), url(../img/spinonbg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 40px 0;
    background-attachment: fixed;
}
.sec_agency .sec_content:hover {
    background: #060606a1;
}
.sec_agency .sec_content {
    position: relative;
    background: rgb(249 243 243 / 12%);
    color: #fff;
    border: 1px solid #c762cb;
    border-radius: 10px;
    padding: 20px 30px;
    margin-bottom: 25px;
    transition: all 300ms ease;
}
.sec_agency .sec_content .check-list-info li:before {
    position: absolute;
    top: 10px;
    left: 0;
    font-family: "bootstrap-icons";
    content: "\f633";
    font-weight: 900;
    font-size: 1.25rem;
    line-height: 1.5rem;
    color: #fff;
}
.footer .ftrcontact {
    position: relative;
    background: rgb(255 255 255 / .05);
    border: 1px solid rgb(255 255 255 / .1);
    border-radius: 50px;
    padding: 20px 30px;
    margin-bottom: 25px;
    transition: all 300ms ease;
}
.footer .ftrcontact .info .icon i {
    font-size: 24px;
    background: #fff;
    color: #000;
    padding: 6px 8px;
    border-radius: 32px;
}
.footer .ftrcontact .info .infotext p {
    margin-bottom: 0;
}
.footer .ftrcontact .info .infotext h5 a {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}
.process {
    background: #f5f5f5;
    padding: 25px 0;
}
.process .verticaltabs {
    border: 1px solid #6e075a;
    padding: 20px 0;
    border-radius: 10px;
    box-shadow: 1px 3px 4px #000;
    align-items: stretch;
}
.process .verticaltabs #v-pills-tab .nav-link.active {
    background: #6d0458;
    color: #fff;
}
.process .verticaltabs #v-pills-tab .nav-link.active::before {
    content: '';
    height: 20px;
    width: 20px;
    position: absolute;
    background-color: #6d0458;
    top: 32%;
    right: -10px;
    transform: rotate(-45deg);
}
.process .verticaltabs #v-pills-tab .nav-link {
    position: relative;
    display: block;
    padding: 1rem 1.25rem;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid rgb(0 0 0 / .125);
    color: #000;
    border-radius: 0;
    box-shadow: none;
}
.process .tab-content {
    border: 1px solid #00000017;
    padding: 19px;
    height: 100%;
    border-radius: 20px;
    background: #fff;
}
.process .tab-content .tabs-content h2 {
    color: #6d0458;
    font-size: 20px;
    font-weight: 600;
}
.process .tab-content .tabs-content p {
    color: #060606;
}
.contactus {
    background: url(../img/missinbg.webp);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 40px 0;
}
.contactus .contact-info {
    position: relative;
    background: rgb(255 255 255 / .08);
    border: 1px solid rgb(255 255 255 / .25);
    border-radius: 20px;
    padding: 30px 15px;
    margin-bottom: 20px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 5px 15px rgb(199 98 203 / .15), inset 0 0 10px rgb(255 255 255 / .05);
    transition: all 0.5s ease;
    text-align: center;
    overflow: hidden;
}
.contactus .contact-info:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 8px 20px rgb(199 98 203 / .45), 0 0 15px rgb(255 255 255 / .25);
    background: rgb(151 50 172 / .15);
}
.contactus .contact-info:hover::before {
    opacity: .6;
}
.contactus .contact-info .info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%}
.contactus .contact-info .icon i {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #c762cb, #ff9ee0);
    color: #fff;
    font-size: 25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px rgb(199 98 203 / .45);
    transition: all 0.6s ease;
    margin-bottom: 20px;
}
.contactus .contact-info:hover .icon i {
    transform: rotate(360deg) scale(1.15);
    box-shadow: 0 0 40px rgb(199 98 203 / .75);
}
.contactus .contact-info .infotext {
    position: relative;
    z-index: 2;
    text-align: center;
}
.contactus .contact-info .infotext p {
    color: rgb(255 255 255 / .85);
    font-size: 17px;
    margin-bottom: 6px;
    letter-spacing: .5px;
}
.contactus .contact-info .infotext h5 {
    font-size: 16px;
    font-weight: 600;
}
.contactus .contact-info .infotext h5 a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}
.contactus .contact-info .infotext h5 a:hover {
    color: #ff9ee0;
}
.contactus .contact-form {
    padding: 30px;
    background: #f7b6f5;
    border-radius: 10px;
}
.counter-section {
    background: linear-gradient(282deg, #6d0458, #a81f7a);
    color: #fff;
    backdrop-filter: blur(10px);
    border-top: 2px solid rgb(255 255 255 / .1);
}
.counter-box {
    background: rgb(255 255 255 / .1);
    border: 1px solid rgb(255 255 255 / .15);
    border-radius: 20px;
    padding: 40px 20px;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.counter-box::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgb(255 255 255 / .15), transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}
.counter-box:hover::before {
    transform: scale(1);
}
.counter-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgb(109 4 88 / .4);
    border-color: rgb(255 255 255 / .3);
}
.counter-box .icon {
    background: rgb(255 255 255 / .15);
    border: 2px solid #fff;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 30px;
    color: #fff;
    transition: all 0.4s ease;
}
.counter-box:hover .icon {
    background: #fff;
    color: #6d0458;
    transform: rotate(10deg) scale(1.1);
}
.counter-box h3.counter {
    font-size: 2rem!important;
    font-weight: 700!important;
    color: #fff;
    margin-bottom: 5px;
}
.counter-box h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}
.counter-box p {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    letter-spacing: .5px;
}
.blog-section {
    background: linear-gradient(135deg, #f9f9f9, #fff);
    padding-top: 80px;
    padding-bottom: 80px;
}
.blog-section .blog-card {
    position: relative;
    background: rgb(255 255 255 / .15);
    border-radius: 20px;
    border: 1px solid rgb(255 255 255 / .25);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: all 0.5s ease;
    transform-style: preserve-3d;
    box-shadow: 0 5px 25px rgb(109 4 88 / .15);
    cursor: pointer;
}
.blog-section .blog-card:hover {
    transform: translateY(-10px) rotateX(3deg) rotateY(3deg);
    box-shadow: 0 15px 35px rgb(109 4 88 / .35);
    border-color: rgb(109 4 88 / .3);
}
.blog-section .blog-img img {
    border-radius: 20px 20px 0 0;
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: all 0.6s ease;
}
.blog-section .blog-card:hover .blog-img img {
    transform: scale(1.08);
    filter: brightness(1.1);
}
.blog-section .blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgb(109 4 88 / .08);
    padding: 12px 20px;
    font-size: .85rem;
    color: #6d0458;
    border-bottom: 1px solid rgb(109 4 88 / .1);
    font-weight: 600;
}
.blog-section .blog-meta i {
    color: #6d0458;
    margin-right: 5px;
}
.blog-section .blog-content {
    position: relative;
    padding: 25px;
    color: #000;
    z-index: 2;
}
.blog-section .blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}
.blog-section .blog-card:hover .blog-title {
    color: #6d0458;
    letter-spacing: .5px;
}
.blog-section .blog-text {
    font-size: .95rem;
    color: rgb(36 36 36 / .8);
    margin-bottom: 20px;
    line-height: 1.6;
}
.blog-section .read-more {
    color: #6d0458;
    font-weight: 600;
    font-size: .95rem;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}
.blog-section .read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}
.blog-section .read-more:hover {
    color: #ffb6f2;
}
.blog-section .read-more:hover i {
    transform: translateX(5px);
}
.blog-section .blog-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgb(109 4 88 / .15), transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
    z-index: 0;
}
.blog-section .blog-card:hover::before {
    transform: scale(1);
}
.single-post {
    padding: 40px 0;
}
.single-post .post-banner .single-overlay {
    position: absolute;
    background: linear-gradient(0deg, #181818, #fff0);
    bottom: 0;
    left: 0;
    padding: 4rem 1rem 1rem;
    right: 0;
}
.single-post .post-banner .single-overlay h1 {
    font-weight: 600;
    letter-spacing: .4px;
    color: #fff;
    text-shadow: 3px 1px 4px #d30aab;
}
.single-post .blog-content .metatag p {
    color: #6d0458;
}
.blog-content h1, .blog-content h2, .blog-content h3 {
    color: #6d0458;
    font-weight: 600;
}
.blog-content h1 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 15px;
}
.blog-content h2 {
    margin-top: 30px;
    font-size: 1.5rem;
}
.blog-content h3 {
    margin-top: 25px;
    font-size: 1.3rem;
}
.blog-content p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 30px;
    letter-spacing: .5px;
    text-align: justify;
    color: #131313;
}
.blog-content img {
    border-radius: 15px;
    transition: all 0.4s ease;
}
.blog-content img:hover {
    transform: scale(1.03);
}
.blog-content ul, .blog-content ol {
    margin-left: 25px;
    margin-bottom: 25px;
}
.blog-content ul li, .blog-content ol li {
    margin-bottom: 10px;
    color: #444;
    position: relative;
    padding-left: 10px;
}
.blog-content ol {
    padding-left: 0;
}
.blog-content ol li::marker {
    color: #6d0458;
}
.blog-content ul {
    list-style: none;
    padding-left: 0;
}
.blog-content ul li::before {
    content: "•";
    color: #6d0458;
    position: absolute;
    left: -15px;
    font-size: 20px;
    line-height: 1;
}
.blog-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgb(0 0 0 / .05);
}
.blog-content th, .blog-content td {
    border: 1px solid #eee;
    padding: 12px 15px;
    text-align: left;
}
.blog-content th {
    background: linear-gradient(135deg, #6d0458, #b44fa5);
    color: #fff;
}
.blog-content td {
    background: #fff;
}
.single-post .seotag p {
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 700;
    color: #6d0458;
}
.single-post .seotag {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 0;
}
.single-post .seotag .tagitem a::after {
    content: "|";
    position: relative;
    left: 16px;
}
.single-post .seotag .tagitem a:hover {
    background: #460439;
    color: #db85df;
}
.single-post .seotag .tagitem a {
    padding: 0 7px 3px 8px;
    background: #db85df;
    margin-right: 10px;
    color: #460439;
    transition: all ease-in-out 0.5s;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: .5px;
    border-radius: 5px;
    box-shadow: -1px 4px 6px #0000005e;
}
.sidebar {
    position: sticky;
    top: 90px;
    background: rgb(255 255 255 / .9);
    backdrop-filter: blur(12px);
    padding: 35px;
    border-radius: 20px;
    transition: all 0.3s ease;
}
.sidebar:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgb(109 4 88 / .2);
}
.sidebar .widget {
    margin-bottom: 45px;
}
.sidebar h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #6d0458;
    font-weight: 600;
    position: relative;
    padding-bottom: 8px;
}
.sidebar h4::after {
    content: "";
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #6d0458, #b44fa5);
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 3px;
}
.sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar ul li {
    margin-bottom: 9px;
    background: linear-gradient(135deg, #6d0458, #b44fa5);
    padding: 3px 9px;
    border-radius: 2px;
    color: #fff;
}
.sidebar ul li a {
    color: #fff;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
}
.sidebar ul li a:hover {
    color: #fff;
    transform: translateX(5px);
}
.recent-posts li {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 12px;
    margin-bottom: 12px;
}
.recent-posts img {
    width: 65px;
    height: 65px;
    border-radius: 12px;
    object-fit: cover;
    margin-right: 15px;
    transition: all 0.3s ease;
}
.recent-posts img:hover {
    transform: scale(1.05);
}
.recent-posts a {
    font-weight: 500;
    color: #333;
    font-size: 15px;
    transition: 0.3s;
}
.recent-posts a:hover {
    color: #6d0458;
}
@media (max-width:992px) {
    .blog-content {
    padding: 35px;
    margin-bottom: 40px;
}
.sidebar {
    padding: 25px;
}
}.testimonial .testionialitem .testimonial-block-two {
    animation: rotate 2.5s linear infinite;
    transition: all .3s ease;
    border-radius: 56px 30px 121px 31px;
    display: flex;
    height: 100%}
.testionialitem .col-md-6 {
    padding-bottom: 20px;
}
.case-study {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}
.case-study .case-card {
    margin-bottom: 14px;
    padding: 1.4rem;
    background: #fff;
    transition: all 0.4s ease;
    border: .1rem solid #CBE5FF;
    border-radius: 1.5rem;
    box-shadow: 0 .4rem 1.1rem #F3F3F3;
    position: relative;
}
.case-study .case-card:hover {
    box-shadow: 0 10px 20px rgb(109 4 88 / .25);
}
.case-study .casestudy-img {
    overflow: hidden;
    border-radius: 1rem;
}
.case-study .case-card img {
    width: 100%;
    border-radius: 1rem;
    overflow: hidden;
    border-radius: 20px;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.case-study .case-card:hover img {
    transform: scale(1.1);
    overflow: hidden;
}
.case-study .case-content {
    padding: 15px;
    text-align: left;
}
.case-study .case-content h5 {
    font-weight: 700;
    color: #6d0458;
    font-size: 16px;
    margin-bottom: 20px;
}
.case-study .case-content p span {
    background: #ffe8fa;
    display: inline-flex;
    font-size: .8rem;
    color: #6e0659;
    padding: 2px 13px;
    border-radius: 20px;
    transition: .3s;
    line-height: 23px;
}
.case-study .case-content .btn-read {
    border: 1px solid #b3007d;
    color: #b3007d;
    border-radius: 50px;
    padding: 5px 12px;
    font-weight: 600;
    letter-spacing: .5px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgb(109 4 88 / .3);
}
.case-study .case-content .btn-read:hover {
    transform: scale(1.05);
    color: #fff;
    box-shadow: 0 0 20px rgb(109 4 88 / .6);
    background: linear-gradient(90deg, #b3007d, #6d0458);
}
.blog-content td {
    color: #111;
}
.portfolio {
    background: #fff;
    padding: 40px 0;
    position: relative;
}
.portfolio-item {
    text-align: center;
    margin-bottom: 14px;
    padding: 1.4rem;
    background: #fff;
    border: .1rem solid #CBE5FF;
    border-radius: 1.5rem;
    box-shadow: 0 .4rem 1.1rem #F3F3F3;
    position: relative;
}
.portfolio .portfolio-img .caption {
    position: absolute;
    right: 1rem;
    top: 8px;
    font-size: 13px!important;
    background: #b3007d;
    padding: 2px 7px;
    border-radius: 2.5rem;
    color: #fff;
}
.portfolio .portfolio-item .port-text {
    margin-top: 15px;
    display: block;
    font-size: 1rem;
    font-weight: 600;
}
.portfolio .portfolio-item .port-text ul li {
    border: 1px solid #6d0458;
    border-radius: 13px;
    font-size: 12px;
    padding: 3px 12px;
    line-height: 19px;
}
.portfolio .portfolio-item .port-text ul {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
    margin-bottom: 0;
    display: flex;
    gap: 10px;
}
.portfolio-img img {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: .8rem;
    background: #fff;
    overflow: hidden;
    transition: 0.3s;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.portfolio-content {
    padding: 25px;
    position: relative;
}
.portfolio-category {
    color: #6e075a;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}
.portfolio-title {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}
.portfolio-item:hover .portfolio-title {
    color: #460439;
}
.portfolio-description {
    color: #333;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}
.btn-portfolio {
    background: #b3007d;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-portfolio:hover {
    background: #111;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgb(108 99 255 / .3);
}
.view-icon {
    font-size: 14px;
    transition: all 0.3s ease;
}
.btn-portfolio:hover .view-icon {
    transform: translateX(3px);
}
.portfolio .filter-btn {
    padding: 6px 10px;
    margin-bottom: 10px;
    background: #f55bc675;
    border: 1px solid rgb(255 255 255 / .15);
    text-align: left;
    border-radius: 12px 22px;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
}
.filter-btn:focus {
    box-shadow: none!important;
}
@media (max-width:768px) {
    .nav-tabs {
    flex-wrap: wrap;
    gap: 10px;
}
.filter-btn {
    padding: 8px 18px;
    font-size: 14px;
}
}.filter-buttons {
    gap: 10px;
    margin-bottom: 10px;
}
.filter-btn {
    background: #fff;
    margin-right: 8px;
    border: 1px solid #e0e0e0;
    padding: 8px 20px;
    border-radius: 30px;
    display: block;
    font-weight: 600;
    color: #6c757d;
    transition: all 0.3s ease;
}
.filter-btn.active, .filter-btn:hover {
    background: #b3007d;
    color: #fff;
    border-color: #b3007d;
}
@media (max-width:768px) {
    .portfolio {
    padding: 50px 0;
}
.portfolio-img {
    height: 200px;
}
.filter-buttons {
    margin-bottom: 30px;
}
}.hero {
    position: relative;
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    color: #fff;
    overflow: hidden;
}
.hero video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    background: #000;
}
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 66%);
    z-index: 2;
}
.hero .container {
    position: relative;
    z-index: 3;
}
@media (max-width:992px) {
    .hero h1 {
    font-size: 2rem;
}
.hero p {
    font-size: 1rem;
}
.hero video {
    width: 200vw;
    height: 100%}
}.missionvision .card-item .list-style {
    list-style-type: none;
    padding-left: 0;
    margin-top: 20px;
}
.missionvision .card-item .list-style li {
    color: #fff;
    position: relative;
    padding: .5rem 0 .5rem 1.875rem;
    font-size: 1rem;
    line-height: 1.5;
}
.missionvision .card-item .list-style li::before {
    position: absolute;
    top: 10px;
    left: 0;
    font-family: "bootstrap-icons";
    content: "\F1C5";
    font-weight: 900;
    font-size: 1.25rem;
    line-height: 1.5rem;
    color: #fff;
}
.packages {
    padding: 40px 0;
}
.packages .packcard {
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 6px 25px rgb(0 0 0 / .08);
    margin-bottom: 40px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}
.packages .packcard .pkgtype {
    text-align: center;
    padding: 16px 15px;
    font-size: 21px;
    font-weight: 700;
    background: #ffcaf4;
    text-transform: capitalize;
    color: #000;
    min-height: 104px;
}
.packages .packcard .price-circle p {
    margin-bottom: 0;
    color: #fff;
    font-weight: 700;
}
.packages .packcard .price-circle {
    margin-bottom: 0;
    text-align: center;
    height: 110px;
    width: 110px;
    margin: 0 auto;
    position: relative;
    bottom: 50px;
    background: #710d5d;
    display: flex;
    border: 3px solid #fff;
    box-shadow: 0 3.159px 3.159px 0 rgb(0 0 0 / .12);
    align-items: center;
    justify-content: center;
    border-radius: 80px;
}
.pkgread {
    display: none;
    transition: max-height 6s ease;
}
.packages .packcard .pkgbody {
    padding: 0 15px;
    margin-bottom: 20px;
    transition: max-height 0.6s ease;
}
.packages .packcard .pkgbody h3 {
    font-size: 16px;
    text-align: center;
    background: #6d0458;
    padding: 10px 6px;
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    letter-spacing: .5px;
}
.packages .packcard .pkgbody ul {
    list-style: none;
    padding-left: 0;
}
.packages .packcard .pkgbody ul li:nth-child(odd) {
    background: #f5f5f5;
}
.packages .packcard .pkgbody ul li {
    color: #043038;
    font-family: "Open Sans", Sans-serif;
    font-size: 14px;
    font-style: normal;
    text-transform: capitalize;
    width: 100%;
    font-weight: 400;
    display: inline-flex;
    line-height: normal;
    padding: 10px 10px 10px 10px;
}
.packages .packcard .pkgbody ul li.lock_item {
    color: #999;
    pointer-events: none;
    cursor: not-allowed;
    user-select: none;
}
.packages .packcard .pkgbody ul li.lock_item i {
    color: #999;
    pointer-events: none;
    cursor: not-allowed;
    user-select: none;
}
.packages .packcard .pkgbody ul li i {
    color: #1aa260;
}
.packages .show-more-btn {
    background: linear-gradient(45deg, #ff00cd, #b91ebf);
    border: none;
    padding: 9px 30px;
    font-weight: 700;
    transition: all ease-in 0.4s;
    font-size: 18px;
}
.packages .show-more-btn:hover {
    transition: cubic-bezier(.175, .885, .32, 1.275);
    transform: scale(1.05);
}
.packages .packcard .pkgbody .pkgbtn:hover {
    background: #333;
}
.packages .packcard .pkgbody .pkgbtn {
    background: #c762cb;
    border-radius: 30px;
}
.missionvision .cardbox {
    display: flex;
    align-items: stretch;
}
.about-promo-wrap .col-md-4.promo-col {
    display: flex;
    align-items: stretch;
}
.cardbox2 {
    background: #fff;
    border: 1px solid rgb(0 0 0 / .08);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 6px 20px rgb(0 0 0 / .06);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}
.cardbox2::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(179deg, #d6f6ff, #ffcef5);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}
.cardbox2:hover::before {
    opacity: 1;
}
.cardbox2 .icon, .cardbox2 .heading {
    position: relative;
    z-index: 1;
}
.cardbox2 .icon img {
    width: 45px;
    height: auto;
    transition: all ease-in 0.5s;
}
.cardbox2:hover .icon img {
    transform: scale(1.1);
}
.cardbox2 .heading h4 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-top: 15px;
    transition: color 0.4s ease;
}
.cardbox2 .heading p {
    font-size: 15px;
    color: #555;
    margin-top: 10px;
    line-height: 1.6;
    transition: color 0.4s ease;
}
.cardbox2:hover .heading h4, .cardbox2:hover .heading p {
    color: #000;
}
.tech_slider {
    padding: 40px 0;
    background: #f5f5f5;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.tech_slider .owl-carousel .item {
    padding: 0;
}
.tech_card {
    background: #fff;
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
    background: #fff;
    padding: 30px 20px;
    max-height: 20px;
    text-align: center;
    min-height: 190px;
    border-radius: 8px 40px 8px 40px;
    -webkit-box-shadow: 0 3.4px 2.7px -30px rgb(0 0 0 / .059), 0 8.2px 8.9px -30px rgb(0 0 0 / .071), 0 25px 40px -30px rgb(0 0 0 / .2);
    box-shadow: 0 3.4px 2.7px -30px rgb(0 0 0 / .059), 0 8.2px 8.9px -30px rgb(0 0 0 / .071), 0 25px 40px -30px rgb(0 0 0 / .2);
}
.tech_card:hover {
    transform: translateY(-10px) rotateY(10deg) rotateX(5deg);
}
.tech_logo {
    width: 75px;
    height: 75px;
    object-fit: contain;
    margin-bottom: 15px;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 5px 10px rgb(0 0 0 / .2));
}
.tech_card:hover .tech_logo {
    transform: scale(1.1) rotateY(10deg);
    filter: drop-shadow(0 8px 15px rgb(0 0 0 / .3));
}
.tech_name {
    font-size: 16px;
    font-weight: 700;
    color: #6d0458;
    text-transform: capitalize;
    letter-spacing: .5px;
}
@media (max-width:768px) {
    .tech_slider {
    padding: 60px 0;
}
.tech_card {
    padding: 30px 10px;
}
.tech_logo {
    width: 60px;
    height: 60px;
}
}.dm-section {
    padding: 50px 0;
    position: relative;
    overflow: visible;
}
.dm-card {
    background: linear-gradient(135deg, rgb(255 255 255 / .03), rgb(255 255 255 / .02));
    border-radius: 18px;
    box-shadow: 0 10px 30px rgb(11 18 29 / .25);
    ;
    border: 1px solid rgb(255 255 255 / .04);
    padding: 32px;
    position: relative;
    overflow: hidden;
}
.whychoose {
    background: linear-gradient(180deg, #07070a 0%, #0f1220 100%);
    color: #e9eef8;
}
.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.features-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin: .8rem 0;
}
.feature-icon {
    min-width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-grid;
    place-items: center;
    background: linear-gradient(180deg, rgb(255 255 255 / .03), rgb(255 255 255 / .01));
    border: 1px solid rgb(255 255 255 / .03);
    box-shadow: 0 6px 18px rgb(8 12 20 / .25);
}
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(36px);
    opacity: .45;
    z-index: 0;
}
.blob.a {
    width: 260px;
    height: 260px;
    right: -80px;
    top: -50px;
    background: linear-gradient(135deg, #7b2ff7, #2fb8ff);
}
.blob.b {
    width: 180px;
    height: 180px;
    left: -60px;
    bottom: -40px;
    background: rgb(47 184 255 / .06);
}
.feature-icon i {
    font-size: 1.25rem;
}
@media (max-width:767px) {
    .dm-hero {
    flex-direction: column-reverse;
    text-align: center;
}
}.trustbrand {
    background: #f4f4f4;
    color: #000;
    position: relative;
    overflow: hidden;
}
.trustbrand .empower {
    border-radius: 6px;
    box-shadow: rgb(0 0 0 / 10%) 0 4px 12px;
    padding: 15px;
    text-align: center;
    transition: .3s;
    display: flex;
    background: #fff;
    align-items: center;
    transition: ease-out 0.3s all;
    border: 1px solid #eee;
}
.trustbrand .empower:hover {
    border-top: 4px solid #6e0659;
    box-shadow: none;
}
.trustbrand .empower .text p {
    font-weight: 700;
    font-size: 14px;
    color: #6e0659;
}
.trustbrand .empower .text h3 {
    font-weight: 800;
    font-size: 22px;
    color: #000;
}
.trustbrand p {
    color: #000;
    max-width: 700px;
    margin: 0 auto;
    font-size: 1rem;
}
.trustbrand .brand-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 40px;
    perspective: 1000px;
}
.trustbrand .brand-card {
    background: rgb(255 255 255 / .952);
    border-radius: 5px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 0 15px #424242;
}
.brand-card:hover {
    transform: scale(1);
    box-shadow: 0 5px 10px rgb(129 129 129 / .2), 0 0 30px rgb(165 165 165 / .3);
    background: rgb(255 255 255 / .08);
}
.brand-card img {
    width: 100%;
    max-width: 160px;
    height: auto;
    transition: all 0.4s ease;
}
.brand-card:hover img {
    transform: scale(1.1);
}

.owl-carousel .owl-nav.disabled {
    display: block!important;
}


.owl-carousel .owl-nav .owl-next{background: #6d0458!important;
    width: 40px;
    height: 40px;
    font-size: 22px;
    border-radius: 30px!important;
    color: #fff!important;}
.owl-carousel .owl-nav .owl-prev{background: #6d0458!important;
    width: 40px;
    height: 40px;
    font-size: 22px;
    border-radius: 30px!important;
    color: #fff!important;}
@media (max-width:768px) {
    .tech_name {font-size:15px; text-transform: capitalize;} 
    .trustbrand .heading h2 {
    font-size: 1.8rem;
}
.blob.a {
    display:none;
    right: 0;
}
}.call-to-action .hidden-form {
    display: none;
    margin: 0 auto;
    color: #000;
    max-width: 900px;
}
.call-to-action .hidden-form input, .form-select {
    border-radius: 50px;
    padding: 15px 30px;
    font-size: 14px;
    border: none;
}
.call-to-action .hidden-form button {
    font-size: 14px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700;
    background: #6d0458;
    color: #fff;
    padding: 14px 37px;
    border-radius: 50px;
    -webkit-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s;
    border: none;
    position: relative;
    z-index: 2;
    margin-left: -36px;
}
.call-to-action .hidden-form button:hover {
    background-color: #218838;
}
.about-offering {
    background: #6d045824;
}
.counter-box h3 {
    color: #fff!important;
    font-size: 20px!important;
    font-weight: 600;
}
@media (max-width:767px) {
    .aboutus .row {
    flex-direction: column-reverse!important;
}
.portfolio .filter-btn {
    border-radius: 10px;
}
.portfolio .filter-buttons .nav-tabs {
    padding-bottom: 30px;
    flex-direction: row!important;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    gap: 0;
}
.stickycard .stickybox .title {
    padding: 10px 0;
}
.faqsection .accordion-item {
    border-radius: 10px!important;
}
.process .row {
    display: flex;
    justify-content: center!important;
}
.whychoose.dm-section .dm-card {
    padding: 10px;
}
.whychoose.dm-section .dm-hero p {
    text-align: left;
}
.missionvision .card-item {
    padding: 15px 20px;
}
.stickycard .stickybox ul {
    padding-left: 0;
}
.process .verticaltabs {
    padding: 20px 10px;
}
.process .verticaltabs #v-pills-tab .nav-link.active::before {
    top: 81%;
    left: 45%}
.process .nav-pills {
    padding-bottom: 30px;
    flex-direction: row!important;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
}
.process .nav-pills .nav-link {
    flex: 0 0 auto;
    min-width: max-content;
    text-align: center;
    padding: 10px 14px;
    border-radius: 50px;
    font-size: 14px;
}
.missionvision .card-item p {
    text-align: left;
}
.breadcrumbinner h1 {
    font-size: 23px!important;
}
.promo-item {
    padding: 15px;
    margin-top: 15px;
}
p {
    font-size: 15px;
    line-height: 24px!important;
}
ul li, ol li, a {
    font-size: 15px;
    line-height: 24px!important;
}
.missionvision .card-item .title h6 {
    font-size: 18px;
    font-weight: 500;
}
.sec_agency .sec_content {
    padding: 20px 10px!important;
}
.aboutimag img, .aboutimag1 img, .aboutus img {
    padding: 20px 0px!important;
}
.breadcrumbinner {
    padding: 1.5rem 0px!important;
}
.counter-section .col-md-6.d-flex, .counter-section .col-md-4.d-flex {
    margin-bottom: 20px!important;
}
.counter-box h2 {
    font-size: 1.4rem;
}
.contactform img {
    padding: 20px 0;
}
.counter-box p {
    font-size: 14px;
}
.faqsection .faqimg {
    padding: 20px 0;
}
.benifitdigital .content-area1 {
    position: absolute;
    transform: rotate(0deg);
    width: 290px;
    height: auto;
    left: 30px;
    bottom: 50px;
    transition: all 0.4s;
    opacity: 1;
}
.cta-form-group {
    padding-bottom: 20px;
}
.counter-box {
    height: 100%;
    padding: 10px 15px;
}
.cta-form-wrap .p-0 {
    float: none;
}
.trustbrand .empower {
    margin-bottom: 12px!important;
    justify-content: center!important;
    gap: 20px!important;
}
.trustbrand .brand-logos {
    gap: 10px;
}
.stickycard .cardseo img {
    padding: 20px 0;
}
.workbox {
    margin-bottom: 20px;
}
}.cta-sec {
    position: relative;
    padding: 30px 15px;
    background: radial-gradient(circle at top left, #00000096, #00000096, #00000096), url(../img/ctabgg.webp);
    overflow: hidden;
}
.cta-sec .contentcta {
    position: relative;
    border-radius: 28px;
    padding: 18px 0;
    text-align: center;
    transition: transform 0.6s ease;
}
.cta-sec .contentcta h2 {
    font-weight: 700;
    color: #fff;
    font-family: "Mulish", sans-serif!important;
    font-size: 30px;
    line-height: 1.4;
    margin-bottom: 30px;
    text-shadow: 0 10px 30px rgb(0 0 0 / .5);
}
.cta-btn {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}
.cta-btn a {
    position: relative;
    padding: 16px 38px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 60px;
    text-decoration: none;
    letter-spacing: .5px;
    transition: all 0.35s ease;
    transform-style: preserve-3d;
}
.cta-btn a:first-child {
    background: linear-gradient(135deg, #ff59de, #ff45da);
    color: #fff;
    box-shadow: 0 20px 40px rgb(153 153 153 / .5), inset 0 -4px 0 rgb(0 0 0 / .3);
}
.cta-btn a:first-child:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 20px 30px rgb(255 0 128 / .7);
}
.cta-btn a:last-child {
    color: #fff;
    border: 1.5px solid rgb(255 255 255 / .6);
    background: rgb(255 255 255 / .05);
    backdrop-filter: blur(10px);
}
.cta-btn a:last-child:hover {
    background: rgb(255 255 255 / .25);
    transform: translateY(-5px);
    color: #fff;
}
@media (max-width:768px) {
    .cta-sec .contentcta h2 {
    font-size: 20px;
}
}.quote-modal .form-control:focus {
    box-shadow: none;
    border: 1px solid #444;
}
.quote-modal input.form-control::placeholder {
    color: #333;
    font-size: 14px;
}
.btn-gradient {
    background: linear-gradient(135deg, #c4049a, #c4049a);
    color: #fff;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    transition: 0.3s ease;
}
.btn-gradient:hover {
    transform: translateY(0);
    color: #fff;
    box-shadow: 0 3px 10px rgb(255 0 128 / .6);
}
@keyframes scaleUp {
    from {
    transform: scale(.85);
    opacity: 0;
}
to {
    transform: scale(1);
    opacity: 1;
}
}.testimonial .owl-carousel .testimonial-block-two {
    height: 100%!important;
}
.portfolio .porfolio-item .col-md-3 {
    display: flex;
    align-items: stretch;
}
.quote-modal .modal-content {
    background: #fee4ff;
    color: #000;
    border-radius: 22px;
    border: none;
    box-shadow: 0 40px 80px rgb(0 0 0 / .6);
}
.quote-modal .btn-close {
    background: #fff var(--bs-btn-close-bg) center / 1em auto no-repeat;
    opacity: 1!important;
    border-radius: 20px;
}
.quote-modal .modal-header {
    border: none;
    padding: 12px 30px;
    background: #a80187;
}
.quote-modal .modal-title {
    font-weight: 700;
    color: #fff!important;
    font-size: 1.5rem;
}
.pricing-modal .modal-content {
    background: #fee4ff;
    color: #000;
    border-radius: 22px;
    border: none;
    box-shadow: 0 40px 80px rgb(0 0 0 / .6);
}
.pricing-modal .btn-close {
    background: #fff var(--bs-btn-close-bg) center / 1em auto no-repeat;
    opacity: 1!important;
    border-radius: 20px;
}
.pricing-modal .modal-header {
    border: none;
    padding: 12px 30px;
    background: #a80187;
}
.pricing-modal .modal-title {
    font-weight: 700;
    color: #fff;
    font-size: 1.5rem;
}
.pricing-form .form-group {
    position: relative;
}
.btn-submit {
    background: linear-gradient(135deg, #ff0080, #ff8c00);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    color: #fff;
    transition: 0.3s ease;
}
.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgb(255 0 128 / .6);
}
.errorpage {
    background: #fff;
    padding: 100px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.error-box {
    background: linear-gradient(135deg, #c762cb, #e284d0);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 60px 40px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 30px 60px rgb(0 0 0 / .3);
    border: 1px solid rgb(255 255 255 / .2);
}
.error-code {
    font-size: 140px;
    font-weight: 900;
    line-height: 1;
    color: #fff;
    text-shadow: 0 0 20px rgb(255 255 255 / .4), 0 0 40px rgb(142 45 226 / .8);
    margin-bottom: 10px;
}
.error-text {
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}
.error-desc {
    color: #e0d4ff;
    font-size: 16px;
    margin-bottom: 35px;
}
.btn-home {
    padding: 14px 36px;
    font-size: 16px;
    border-radius: 50px;
    background: linear-gradient(135deg, #000, #333);
    border: none;
    color: #fff;
    box-shadow: 0 10px 30px rgb(168 85 247 / .5);
    transition: all 0.3s ease;
}
.btn-home:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgb(168 85 247 / .7);
    background: linear-gradient(135deg, #9333ea, #6d28d9);
}
.missionvision .card-item .title h3 {
    margin-bottom: 0;
    font-size: 21px;
    font-weight: 600;
    color: #fff;
}
.sec_agency .sec_content {
    padding: 20px 10px!important;
}
.process .tab-content .tabs-content h3 {
    color: #6d0458;
    font-size: 20px;
    font-weight: 600;
}
.cardbox2 .heading h3 {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-top: 15px;
    transition: color 0.4s ease;
}
.accordion-button:not(.collapsed) {
    background: transparent!important;
}


.missionvision .animate-border {background:#fff!important;}