/* Reset and base styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: "Outfit", sans-serif !important;
	min-height: 100vh;
	overflow-x: hidden;
}
/* Heading styles */
h1, h2, h3, h4, h5, h6 {
	font-family: "Outfit", sans-serif !important;
	line-height: 1.2;
	color: #2D3748;
}
section {
	padding: 40px 0px 0px 0px;
}
.cta-section {
	padding-bottom: 80px;
}
/* Container styles */
.container {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0px;
	width: 90%;
}
/* Main content container */


/* Navbar styles */
.navbar {
	background-color: #ffffff;
	padding: 1rem 0;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
	position: sticky;
	top: 0;
	z-index: 1000;
}
.nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
/* Logo styles */
.logo {
	display: flex;
	align-items: center;
}
.logo-img {
	height: 32px;
	width: auto;
}
/* Desktop Navigation */
.desktop-nav {
	display: flex;
}
/* Navigation links */
.nav-links {
	gap: 2rem;
	align-items: center;
}
.nav-link {
	text-decoration: none;
	color: #4a5568;
	font-size: 1rem;
	font-weight: 500;
	transition: color 0.2s ease;
	padding: 0.5rem 0;
}
.nav-link:hover {
	color: #394B87;
}
.nav-link.active {
	color: #394B87;
	position: relative;
}
/* Mobile Menu Toggle */
.mobile-menu-toggle {
	display: none;
}
.hamburger-btn {
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.hamburger-line {
	width: 24px;
	height: 3px;
	background-color: #4a5568;
	border-radius: 2px;
	transition: all 0.3s ease;
}
.hamburger-btn.active .hamburger-line:nth-child(1) {
	transform: rotate(45deg) translate(6px, 6px);
}
.hamburger-btn.active .hamburger-line:nth-child(2) {
	opacity: 0;
}
.hamburger-btn.active .hamburger-line:nth-child(3) {
	transform: rotate(-45deg) translate(6px, -6px);
}
/* Mobile Navigation */
.mobile-nav {
	display: none;
	background-color: #ffffff;
	border-top: 1px solid #e2e8f0;
	padding: 20px 0;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 999;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.mobile-nav.active {
	display: block;
}
.mobile-nav-links {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-bottom: 20px;
}
.mobile-nav-link {
	text-decoration: none;
	color: #4a5568;
	font-size: 1.1rem;
	font-weight: 500;
	padding: 12px 0;
	border-bottom: 1px solid #f1f5f9;
	transition: color 0.2s ease;
}
.mobile-nav-link:hover, .mobile-nav-link.active {
	color: #394B87;
}
.mobile-nav-action {
	text-align: center;
}
.mobile-btn {
	width: 100%;
	justify-content: center;
}
/* Get started button */
.get-started-btn {
	border: 1.5px solid #dde4ff !important;
    background: #fff !important;
    color: #000;
	padding: 0.75rem 1.5rem;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.2s ease;
	font-family: 'Manrope', sans-serif;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}
.get-started-btn:hover {
	background-color: #394A84;
	transform: translateY(-1px);
	box-shadow: 0 4px 6px rgba(65, 84, 241, 0.1);
}
.hero-section {
	background: url('../marketing/images/hero-bg.png') no-repeat center center;
	background-size: cover;
	position: relative;
}
.hero-container {
	display: flex;
	justify-content: space-between;
	gap: 15px;
	align-items: center;
}
.hero-content {
	flex: 0 0 60%;
	max-width: none;
}
.hero-title {
	color: #0e1328 !important;
	font-size: 55px !important;
	font-weight: 300 !important;
	line-height: 65px !important;
	letter-spacing: -3px !important;
	margin: 0;
	padding: 0;
	margin-bottom: 15px !important;
}
.text-accent {
	color: #94ABFF !important;
	display: inline !important;
}
.hero-description {
	color: #0e1328 !important;
	font-size: 18px !important;
	font-weight: 300 !important;
	padding-right: 60px !important;
	padding-bottom: 20px !important;
	line-height: 28px!important;
}
.hero-cta {
	display: flex;
	gap: 1rem;
	margin-bottom: 2rem;
}
.contact-btn {
	padding: 0.75rem 1.5rem;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 500;
	color: #4154f1;
	background-color: #EEF0FF;
	transition: all 0.2s ease;
}
.contact-btn:hover {
	background-color: #E0E4FF;
}
.social-proof {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.user-avatars {
	display: flex;
	align-items: center;
}
.avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 2px solid white;
	margin-left: -10px;
}
.avatar:first-child {
	margin-left: 0;
}
.stats h3 {
	font-size: 1.5rem;
	font-weight: 700;
	color: #2D3748;
	margin-bottom: 0.25rem;
}
.stats p {
	font-size: 0.875rem;
	color: #4A5568;
}
.hero-image {
	flex: 0 0 40%;
	display: flex;
	position: relative;
	width: 1102.95px;
	height: 716.271px;
	flex-shrink: 0;
	aspect-ratio: 174 / 113;
}
.main-illustration {
	max-width: 100%;
	height: auto;
	object-fit: contain;
}
/* Communication Hub Section */
.communication-hub {
	display: flex;
	align-items: center;
	gap: 60px;
}
.hub-image {
	flex: 1;
	display: flex;
	justify-content: center;
}
.hub-illustration {
	max-width: 100%;
	height: auto;
	object-fit: contain;
}
.hub-content {
	flex: 1;
	max-width: 600px;
}
.hub-title {
	font-size: 55px;
	color: #0e1328;
	font-weight: 300;
	letter-spacing: -2px;
	margin-top: 0px !important;
	line-height: 65px;
	margin: 0;
	padding: 0;
}
.all-in-one-wrap {
	padding: 80px 0;
}
.hub-description {
	color: #0e1328;
	font-size: 18px;
	font-weight: 300;
	padding-bottom: 20px;
	line-height: 28px;
	padding: 10px 0 20px 0
}
.learn-more-btn {
	display: inline-flex;
	align-items: center;
	padding: 0.75rem 1.5rem;
	background-color: #EEF0FF;
	color: #4154f1;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.2s ease;
}
.learn-more-btn:hover {
	background-color: #E0E4FF;
	transform: translateY(-1px);
}
.campaign-content {
	text-align: left;
	flex: 1;
}
.campaign-title {
	font-size: 55px;
	color: #0e1328;
	font-weight: 300;
	letter-spacing: -2px;
	margin-top: 0px !important;
	line-height: 65px;
	margin: 0;
	padding: 0;
	margin-bottom: 15px
}
.campaign-section {
	padding-bottom: 80px;
}
.campaign-description {
	color: #0e1328;
	font-size:18px;
	font-weight: 300;
	padding-bottom: 20px;
	line-height: 28px;
	padding: 10px 0 20px 0;
}
.steps-container {
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.step-card {
	display: flex;
	gap: 24px;
	align-items: center;
	padding: 0;
	background: transparent;
	border-radius: 0;
	transition: none;
}
.step-card:hover {
	transform: none;
	box-shadow: none;
}
.step-icon {
	position: relative;
	width: 64px;
	height: 64px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.step-number {
	color: white;
	font-weight: 700;
	font-size: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.step-icon.blue {
	background-color: #008EFF;
}
.step-icon.green {
	background-color: #45C646;
}
.step-icon.yellow {
	background-color: #FABB18;
}
.step-content h3 {
	font-size: 25px;
	font-style: 300;
	font-weight: 300;
	color: #0e1328
}
.step-content p {
	font-size: 18px;
	color: #0e1328;
	line-height: 28px;
	font-weight: 300;
	margin: 0;
}
.features-title {
	font-size: 55px;
	color: #0e1328;
	font-weight: 300;
	letter-spacing: -2px;
	margin-top: 0px !important;
	line-height: 65px;
	margin: 0;
	padding: 0;
	margin-bottom: 60px;
}
.features-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
}
.feature-icon {
	width: 60px;
	height: 60px;
	aspect-ratio: 1/1;
}
.feature-card {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 0px 0px !important;
    border-radius: 16px !important;
    background-color: none !important;
    transition: all 0.3s ease !important;
}
.feature-card:hover {
    background-color: #ffffff;
    box-shadow: none ;
    transform: translateY(-10px);
}
.feature-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.5rem;
}
.feature-icon svg {
	width: 24px;
	height: 24px;
	color: white;
}
.feature-icon.red {
	background-color: #FF6B6B;
}
.feature-icon.blue {
	background-color: #4154f1;
}
.feature-icon.green {
	background-color: #40C057;
}
.feature-icon.yellow {
	background-color: #FCC419;
}
.feature-card h3 {
	font-size: 25px;
	font-style: 300;
	font-weight: 300;
}
.feature-card p {
	color: #101010;
	font-size: 18px;
	line-height: 28px;
	font-weight: 300;
	padding-top: 5px;
}
.stay-in-touch-card {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 58px 22px;
	border-radius: 12px;
	background: linear-gradient(180deg, #F0F5FF 0%, rgba(240, 245, 255, 0) 100%);
}
.stay_in_touch_h4 {
	font-size: 55px;
	color: #0e1328;
	font-weight: 300;
	letter-spacing: -2px;
	margin-top: 0px !important;
	line-height: 65px;
	margin: 0;
	padding: 0;
}
.stay_in_touch_p {
	color: #0e1328;
	font-size: 18px;
	font-weight: 300;
	line-height: 28px;
	padding: 0px 0 30px 0;
}
.stay_in_touch_span {
	color: #7D97F4;
}
.stay_in_touch_content {
	display: flex;
	flex-direction: column;
	gap: 20px;
	max-width: 780px;
	margin: auto;
	text-align: center;
	margin-bottom: 40px;
}
.card-container {
	display: flex;
	gap: 20px;
}
.card-1 {
	max-width: 60%;
}
.card-2 {
	max-width: 40%;
}
.stay-in-touch-card h5 {
	color: #101010;
	font-size: 25px;
	font-weight: 300;
}
.stay-in-touch-card p {
	color: #0e1328;
	font-size:18px;
	font-weight: 300;
	line-height: 28px;
	padding-bottom: 10px
}
.stay-in-touch-card button {
	border-radius: 4px;
	border: 1.5px solid #94ABFF;
	background: #FDFEFF;
	color: #94ABFF;
	font-size: 16px;
	font-weight: 500;
	line-height: 136%;
	width: fit-content;
	padding: 10px 25px;
}
.campaign-container {
	display: flex;
	align-items: flex-start;
	gap: 80px;
}
/* Responsive design */
@media (max-width: 1024px) {
.campaign-title {
	font-size: 2rem;
}
.steps-container {
	flex-direction: column;
}
.step-card {
	width: 100%;
	margin: 0 auto;
}
.communication-hub {
	flex-direction: column;
	text-align: center;
}
.hub-content {
	max-width: 100%;
}
.hub-title {
	font-size: 2rem;
}
.hub-image {
	order: -1;
}
.features-grid {
	grid-template-columns: 1fr;
	gap: 30px;
	padding: 0 20px;
}
.features-title {
	font-size: 40px;
	padding: 0 20px;
	line-height: 55px
}
.hub-title {
	font-size: 40px;
	padding: 0 20px;
	line-height: 55px
}
.campaign-title {
	font-size: 40px;
	padding: 0 20px;
	line-height: 55px
}
.step-content p {
	font-size: 20px;
	font-weight: 300;
}
.stay_in_touch_h4 {
	font-size: 40px;
	line-height: 55px
}
.feature-card p {
	font-size: 20px;
}
.features-title br {
	display: none;
}
.features-section {
	padding: 0;
}
.hero-section {
	flex-direction: column;
	text-align: center;
	padding: 40px 0;
}
.inner-footer-link ul li span{
	font-size: 13px;
	font-weight: 300;
	color: #000;
	text-decoration: none;
}
.hero-content {
	max-width: 100%;
	flex: 0 0 100%;
}
.features-grid {
	padding: 0px;
}
.get-started-btn {
	justify-content: center;
}
.hero-title {
	font-size: 2.5rem;
}
.hero-cta {
	justify-content: center;
}
.social-proof {
	justify-content: center;
}
.hero-image {
	justify-content: center;
}
.links-footer .inner-footer-link {
	width: 100% !important;
	float: none !important
}
.inner-footer-link h4 {
	font-size: 22px !important;
}
.inner-footer-link ul li a {
	font-size: 18px !important;
}
.inner-footer-link ul li {
	line-height: 22px;
	padding: 5px 0;
}
}
 @media (max-width: 768px) {
.hero-image {
	display: none;
}
.hero-container {
	justify-content: center;
}
.user-avatars {
	justify-content: center;
}
.campaign-container {
	flex-direction: column;
	align-items: center;
	gap: 40px;
}
.campaign-content {
	text-align: center;
}
/* Hide desktop navigation on mobile */
.desktop-nav {
	display: none;
}
/* Show mobile menu toggle on mobile */
.mobile-menu-toggle {
	display: block;
}
.nav-container {
	justify-content: space-between;
}
.main-content {
	width: 95%;
}
.hero-title {
	font-size: 40px;
	letter-spacing: -2px;
	line-height: 55px;
}
.hero-description {
	font-size: 1rem;
}
.hero-cta {
	flex-direction: column;
}
.contact-btn {
	width: 100%;
	text-align: center;
}
}
.cta-card {
	background: #394B87;
	border-radius: 20px;
	padding: 60px 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-shadow: 0 20px 40px rgba(65, 84, 241, 0.15);
}
.cta-content {
	flex: 1;
}
.cta-title {
	color: #ffffff;
	font-size: 2.5rem;
	font-weight: 400;
	margin: 0;
}
.desktop-nav {
	list-style: none;
	gap: 35px;
}
.desktop-nav li a {
	transition: color 0.3s;
	color: #020202;
	font-size: 15px;
	font-weight: 400;
	line-height: normal;
	text-decoration: none;
}
.cta-button {
	flex-shrink: 0;
}
.cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background: #ffffff;
	color: #1a202c;
	padding: 16px 32px;
	border-radius: 70px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.125rem;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.cta-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.cta-btn i {
	font-size: 1rem;
	transition: transform 0.3s ease;
}
.cta-btn:hover i {
	transform: translateX(4px);
}

/* Responsive Design for CTA */
@media (max-width: 768px) {
.cta-card {
	flex-direction: column;
	text-align: center;
	gap: 30px;
	padding: 40px 30px;
}
.cta-title {
	font-size: 2rem;
}
}
.drawer-menu {
	box-sizing: border-box;
	position: fixed;
	top: 0;
	right: 0;
	width: 350px;
	height: 100vh;
	padding: 45px 0 0 0;
	background: #fff;
	-webkit-transition-property: all;
	transition-property: all;
	-webkit-transition-duration: .5s;
	transition-duration: .5s;
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	-webkit-transform-origin: right center;
	-ms-transform-origin: right center;
	transform-origin: right center;
	-webkit-transform: perspective(500px) rotateY(-90deg);
	transform: perspective(500px) rotateY(-90deg);
	opacity: 0;
	overflow: auto;
	overflow-x: hidden;
}
.drawer-menu li {
	text-align: left;
}
.drawer-menu li a {
	display: block;
	height: auto;
	line-height: 40px;
	font-size: 20px;
	font-weight: 300;
	color: #000;
	-webkit-transition: all .8s;
	transition: all .8s;
	padding-left: 30px;
}
.drawer-menu li a:hover {
	color: #1a1e24;
	background: #fff;
}
/* checkbox */
.check {
	display: none;
}
/* menu button - label tag */
.menu-btn {
	position: absolute;
	display: block;
	top: 23px;
	right: 18px;
	display: block;
	width: 40px;
	height: 40px;
	font-size: 10px;
	text-align: center;
	cursor: pointer;
	z-index: 3;
}
.ai-hero {
	margin-top: 75px;
}
.bar {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 30px;
	height: 1.5px;
	background: #394a88;
	-webkit-transition: all .5s;
	transition: all .5s;
	-webkit-transform-origin: left top;
	-ms-transform-origin: left top;
	transform-origin: left top;
}
.bar.middle {
	top: 10px;
	opacity: 1;
}
.bar.bottom {
	top: 20px;
	-webkit-transform-origin: left bottom;
	-ms-transform-origin: left bottom;
	transform-origin: left bottom;
}
.menu-btn__text {
	position: absolute;
	bottom: -15px;
	left: 0;
	right: 0;
	margin: auto;
	color: #fff;
	-webkit-transition: all .5s;
	transition: all .5s;
	display: block;
	visibility: visible;
	opacity: 1;
}
.menu-btn:hover .bar {
	background: #18b6a4;
}
.close-menu {
	position: fixed;
	top: 0;
	right: 350px;
	width: 100%;
	height: 100vh;
	background: rgba(0,0,0,0);
	cursor: url(http://theorthodoxworks.com/demo/images/cross.svg), auto;
	-webkit-transition-property: all;
	transition-property: all;
	-webkit-transition-duration: .3s;
	transition-duration: .3s;
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	visibility: hidden;
	opacity: 0;
}
/* checked */
.check:checked ~ .drawer-menu {
	-webkit-transition-delay: .3s;
	transition-delay: .3s;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	opacity: 1;
	z-index: 2;
}
.check:checked ~ .contents {
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
	-webkit-transform: translateX(-300px);
	-ms-transform: translateX(-300px);
	transform: translateX(-300px);
}
.check:checked ~ .menu-btn .menu-btn__text {
	visibility: hidden;
	opacity: 0;
}
.check:checked ~ .menu-btn .bar.top {
	width: 40px;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	background: #394a88
}
.check:checked ~ .menu-btn .bar.middle {
	opacity: 0;
}
.check:checked ~ .menu-btn .bar.bottom {
	width: 40px;
	top: 28px;
	background: #394a88;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.check:checked ~ .close-menu {
	-webkit-transition-duration: 1s;
	transition-duration: 1s;
	-webkit-transition-delay: .3s;
	transition-delay: .3s;
	background: rgba(0,0,0,.5);
	visibility: visible;
	opacity: 1;
	z-index: 3;
	backdrop-filter: blur(10px);
}
.drawer-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.drawer-menu ul li a {
	text-decoration: none;
}
.drawer-menu ul li a img {
	margin-right: 5px;
	margin-top: -2px;
}
.menusitebar-main-wraper {
	display: none;
}
/* Footer Styles */
.footer {
	background-color: #eef0ff;
	color: #2D3748;
}
.footer-main {
	padding: 60px 0 40px;
}
.footer-content {
	display: flex;
	justify-content: space-between;
	gap: 40px;
}
/* Footer Brand Section */
.footer-brand {
	flex: 1;
	max-width: 400px;
}
.footer-logo {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 20px;
	font-size: 1.5rem;
	font-weight: 700;
	font-family: 'Manrope', sans-serif;
}
.logo-text {
	color: #4154f1;
}
.logo-text-accent {
	color: #94ABFF;
}
.logo-icon {
	color: #4154f1;
	font-size: 1.2rem;
	transform: rotate(-45deg);
}
.footer-description {
	color: #4A5568;
	font-size: 1rem;
	line-height: 1.6;
	margin-bottom: 25px;
}
.social-links {
	display: flex;
	gap: 15px;
	margin-bottom: 25px;
}
.social-link {
	color: #4A5568;
	font-size: 1.2rem;
	transition: color 0.3s ease;
}
.social-link:hover {
	color: #4154f1;
}
.contact-us-btn {
	display: inline-block;
	background-color: #94ABFF;
	color: white;
	padding: 12px 24px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
	transition: all 0.3s ease;
}
.contact-us-btn:hover {
	background-color: #7c8fd8;
	transform: translateY(-1px);
}
/* Footer Navigation */
.footer-nav {
	flex: 1;
	max-width: 200px;
}
.footer-nav-title {
	color: #2D3748;
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 20px;
}
.footer-nav-links {
	list-style: none;
	padding: 0;
	gap: 20px;
	display: flex;
	flex-direction: column;
}
.footer-nav-link {
	color: #4A5568;
	text-decoration: none;
	font-size: 0.95rem;
	transition: color 0.3s ease;
}
.footer-nav-link:hover {
	color: #4154f1;
}
/* Footer Contact */
.footer-contact {
	flex: 1;
	max-width: 300px;
	gap: 20px;
	display: flex;
	flex-direction: column;
}
.footer-contact-title {
	color: #2D3748;
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 20px;
}
.contact-item {
	display: flex;
	align-items: center;
	gap: 12px;
}
.contact-icon {
	color: #94ABFF;
	font-size: 1rem;
	width: 16px;
}
.contact-text {
	color: #4A5568;
	font-size: 0.95rem;
}
/* Footer Bottom */
.footer-bottom {
	background-color: #394B87;
	padding: 20px 0;
}
.footer-bottom-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.copyright {
	color: white;
	font-size: 0.9rem;
	margin: 0;
}
.legal-links {
	display: flex;
	gap: 20px;
}
.legal-link {
	color: white;
	text-decoration: none;
	font-size: 0.9rem;
	transition: opacity 0.3s ease;
}
.legal-link:hover {
	opacity: 0.8;
}
.drawer-overlay {
	position: fixed;
	top: 75px;
	left: 0;
	width: 100%;
	height: 0;
	background: rgba(0,0,0,0.2);
	overflow: hidden;
	transition: height 0.4s ease;
	z-index: 1000;
}
/* Drawer content */
.drawer {
	width: 100%;
	padding: 0px 20px 20px 20px;
}
/* When open */
.drawer-overlay.open {
	height: 100%;
}
.arrow {
	display: inline-block;
	transition: transform 0.3s ease;
}
.arrow img {
	width: 12px !important;
	margin-left: 5px;
}
.arrow.open {
	transform: rotate(180deg); /* Flip down when open */
	;
}
.arrow.open img {
	position: relative;
	top: -4px;
	left: -5px;
}
.drawer-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 1352px;
	margin: 0 auto;
}
.product-dropdown:hover .product-dropdown-icon {
	rotate: 25deg;
	transition: ease-in 0.3s;
	-moz-transition: ease-in 0.3s;
	-webkit-transition: ease-in 0.3s;
	-ms-transition: ease-in 0.3s;
	-o-transition: ease-in 0.3s;
}
.product-dropdown:hover h6 {
	opacity: 0.7;
}
.product-dropdown:hover p {
	opacity: 0.7;
}
.no-border {
	border: none !important;
}
.second-heading {
	margin-top: 30px;
}
.header-nav-dropdown {
	background: #fff;
	border-radius: 0px 0px 12px 12px;
}
.header-nav-dropdown h5 {
	font-size: 17px;
	color: #1F2A49;
	margin: 0;
	font-weight: 300;
	padding: 20px 20px 0px 20px
}
.header-nav-dropdown .product-dropdown {
	width: 30%;
	display: inline-block;
	border-bottom: 1px solid #efefef;
	padding-bottom: 12px;
	float: left;
	margin: 12px 20px 12px 20px;
	margin-bottom: 0;
}
.product-dropdown .product-dropdown-icon {
	width: 40px;
	height: 40px;
	float: left;
}
.product-dropdown-icon img {
	width: 100%;
}
.product-dropdown-text {
	width: 81%;
	float: left;
	padding-left: 10px;
}
.product-dropdown-text h6 {
	color: #1F2A49;
	font-weight: 500;
	font-size: 16px;
	margin: 0;
	padding: 0;
}
.product-dropdown-text p {
	font-weight: 300;
	color: #000;
	font-size: 13px;
	padding: 0;
	margin: 0;
}
.clearfix {
	clear: both;
}

/* Responsive Footer */
@media (max-width: 768px) {
.footer-content {
	flex-direction: column;
	gap: 30px;
}
.footer-brand, .footer-nav, .footer-contact {
	max-width: 100%;
}
.footer-bottom-content {
	flex-direction: column;
	gap: 15px;
	text-align: center;
}
.legal-links {
	gap: 15px;
}
.menusitebar-main-wraper {
	display: block;
}
.logo-drawer {
	margin-left: 25px;
	margin-bottom: 30px;
}
.logo-drawer img {
	width: 230px;
}
.drawer-menu .sub-heading-wrap {
	position: relative;
	left: 30px;
	display: block;
	margin-bottom: 14px;
	color: rgb(57, 74, 136);
	font-size: 20px;
}
.drawer-menu ul {
	margin-bottom: 20px;
	padding-bottom: 14px;
	border-bottom: 1px solid rgb(230, 235, 255);
}
.drawer-menu li {
	text-align: left;
}
.drawer-menu li a {
	line-height: 35px;
	font-size: 20px;
}
.header-nav-dropdown h5 {
	padding-top: 0 !important;
	font-size: 20px !important;
	padding-left: 30px !important;
}
.header-nav-dropdown .product-dropdown {
	width: 100% !important;
	float: none !important;
}
.multiple-list-wraper-row {
	width: 100% !important;
	float: left !important;
	margin-right: 0 !important;
}
.hero-description {
	font-size: 20px;
	line-height: 28px
}
}
.new-footer-main-wraper {
	background: #F6F9FF;
	padding: 40px 0 0px 0;
}
.new-footer-main-wraper p {
	font-size: 13px;
	line-height: 22px;
	padding-bottom: 15px;
	font-weight: 300;
}
.top-text-footer {
	border-bottom: 1px solid #d3d9e5;
	padding-bottom: 15px;
	margin-bottom: 25px
}
.links-footer .inner-footer-link {
	width: 25%;
	float: left;
}
.inner-footer-link h4 {
	font-size: 13px;
	color: #0e1328;
	font-weight: 500;
	margin-bottom: 5px;
	margin-top: 10px;
}
.inner-footer-link ul {
	list-style: none;
}
.inner-footer-link ul li a {
	font-size: 13px;
	font-weight: 300;
	color: #000;
	text-decoration: none;
}
.copyright {
	margin-top: 55px;
	text-align: center;
	font-size: 13px;
	text-align: center;
	color: #000;
	padding: 15px 0;
	border-top: 1px solid #d3d9e5;
	font-weight: 300;
	opacity: 0.7
}
.drawer-overlay {
	position: fixed;
	top: 75px;
	left: 0;
	width: 100%;
	height: 0;
	background: rgba(0, 0, 0, 0.4);
    overflow: hidden;
    transition: height 0.4s  ease;
    z-index: 1000;
    backdrop-filter: blur(5px);
}
/* Drawer content */
.drawer {
	width: 100%;
	padding: 0px 20px 20px 20px;
}
.drawer {
	width: 100%;
	padding: 0px 20px 20px 20px;
}
.multiple-list-wraper{
	padding:20px;
}
.header-nav-dropdown h5 {
    padding: 0px 20px 10px 20px !important;
}
/* When open */
.drawer-overlay.open {
	height: 100%;
}
.arrow {
	display: inline-block;
	transition: transform 0.3s ease;
}
.arrow img {
	width: 12px !important;
	margin-left: 5px;
}
.arrow.open {
	transform: rotate(180deg); /* Flip down when open */
	;
}
.arrow.open img {
	position: relative;
	top: -4px;
	left: -5px;
}
.drawer-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 1352px;
	margin: 0 auto;
}
.product-dropdown:hover .product-dropdown-icon {
	rotate: 25deg;
	transition: ease-in 0.3s;
	-moz-transition: ease-in 0.3s;
	-webkit-transition: ease-in 0.3s;
	-ms-transition: ease-in 0.3s;
	-o-transition: ease-in 0.3s;
}
.product-dropdown:hover h6 {
	opacity: 0.7;
}
.product-dropdown:hover p {
	opacity: 0.7;
}
.no-border {
	border: none !important;
}
.second-heading {
	margin-top: 30px;
}
.clearfix {
	clear: both;
}
#dotNav {
	position: fixed;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 12px;
	z-index: 11111111111;
}
#dotNav .dot {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #000;   /* black by default */
	opacity: 0.4;
	cursor: pointer;
	transition: opacity 0.3s ease, transform 0.3s ease;
}
#dotNav .dot.active {
	opacity: 1;
	transform: scale(1.3);
}
.header-nav-dropdown {
	background: #fff;
}
.header-nav-dropdown h5 {
	font-size: 17px;
	color: #1F2A49;
	margin: 0;
	font-weight: 300;
	padding: 20px 20px 0px 20px
}
.header-nav-dropdown .product-dropdown {
	width: 30%;
	display: inline-block;
	border-bottom: 1px solid #efefef;
	padding-bottom: 12px;
	float: left;
	margin: 12px 20px 12px 20px;
	margin-bottom: 0;
}
.product-dropdown .product-dropdown-icon {
	width: 40px;
	height: 40px;
	float: left;
}
.product-dropdown-icon img {
	width: 100%;
}
.product-dropdown-text {
	width: 81%;
	float: left;
	padding-left: 10px;
}
.product-dropdown-text h6 {
	color: #1F2A49;
	font-weight: 500;
	font-size: 16px;
	margin: 0;
	padding: 0;
}
.product-dropdown-text p {
	font-weight: 300;
	color: #000;
	font-size: 13px;
	padding: 0;
	margin: 0;
}
.nav-links li:hover .header-nav-dropdown {
	display: block;
}
.nav-links a {
	transition: color 0.3s;
	color: #020202;
	font-size: 15px;
	font-weight: 400;
	line-height: normal;
	text-decoration: none;
}
.navbar-scrolled .nav-links a {
	color: #333;
}
.nav-links a:hover {
	color: #93AAFE;
}
.multiple-list-wraper-row {
	width: 30%;
	float: left;
	margin-right: 42px;
}
.multiple-list-wraper-row .product-dropdown {
	width: 100% !important;
}
@media (max-width: 480px) {
.card-container {
	flex-direction: column;
}
.card-1 {
	max-width: 100%;
}
.card-2 {
	max-width: 100%;
}
.hero-description {
	padding-right: 0px;
}
}
.socail-footer {
	margin-top: 15px;
}
.socail-footer a {
	text-decoration: none;
	margin-right: 5px;
}
.socail-footer a img {
	width: 30px;
	opacity: 0.5
}
.socail-footer a:hover img {
	opacity: 1;
}

/* Modal Overlay */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	backdrop-filter: blur(5px);
  }
  
  /* Modal Content */
  .modal-content {
	padding: 0px;
	width:720px;
	border-radius: 10px;
	position: relative;
	box-shadow: 0 10px 25px rgba(0,0,0,0.2);
	transform: scale(0.8);
	transition: all 0.3s ease;
	margin:5% auto;
	background:#fff url(../images/bg-modal.jpg) no-repeat bottom right;
	background-size: contain;
  }
  
  /* Show animation */
  .modal-overlay.active .modal-content {
	transform: scale(1);
	opacity: 1;
  }
  .inner-footer-link ul li span {
    font-size: 13px;
    font-weight: 300;
    color: #000;
    text-decoration: none;
}
  /* Close Button */
  .close-modal {
	position: absolute;
    top: -5px;
    right: 14px;
    font-size: 37px;
    cursor: pointer;
    color: #394a88;
    transition: color 0.3s;
    font-weight: 200;
  }
  
  .close-modal:hover {
	color: #000;
  }
.left-right-modal-contact{
	display:flex;
	gap:25px
}
.contact-info-left{
	width: 58%;
    padding: 31px;
    background: #fff;
    border-radius: 15px 
}
.contact-info-left h5{
	font-size: 35px;
    color: #0e1328;
    font-weight: 300;
    letter-spacing: -1px;
    margin: 0;
    padding: 0;
    margin-bottom: 20px;
	line-height: 33px;
}
.contact-info-left h5 strong{
	color: #93AAFE;
}
.contact-info-left .form-group{
	margin-bottom: 10px;
}
.contact-info-left .form-group label{
	font-size: 14px;
	margin: 0 0 5px 0;
	color: rgba(16, 16, 16, 0.70);
	display: block;
}
.contact-info-left .form-input{
	height: 38px;
	padding: 14px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 15px;
    color: #101010;
    background: #ffffff;
    transition: all 0.3s ease;
	outline:none !important;
	width: 100%;
}
.contact-info-left .form-input:focus{
    border: 1px solid #93AAFE;
}
.contact-info-left .form-control{
	padding: 14px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 15px;
    color: #101010;
    background: #ffffff;
    transition: all 0.3s  ease;
	outline: none;
	resize: none;
	width: 100%;
}
.contact-info-left .form-control:focus{
    border: 1px solid #93AAFE;
}
.submit-btn-wrap {
	margin-top: 10px;
}
.submit-btn-wrap button{
	width: 100%;
	background: #394a88;
	color: #fff;
	font-size: 15px;
	border-radius: 8px;
	height: 40px;
	border: none;
	cursor: pointer;
}
.submit-btn-wrap button:hover{
	background: #93AAFE;
}
.right-contact-info-icon{
	width: 150px;
	margin: 0 auto;
}
.right-contact-info-icon img{
	width: 100%;
}
.right-contact-info-wrap{
	width: 42%;
    padding-top: 80px;
    margin-left: -26px;
}
.right-contact-info-wrap h5{
    font-size: 23px;
    color: #141a31;
    font-weight: 400;
    text-align: center;
    letter-spacing: -1px;
}
.right-contact-info-wrap p{
    font-size: 14px;
    text-align: center;
    padding: 0 23px;
    font-weight: 300;
    line-height: 18px;
	padding-top: 5px;
	padding-bottom: 70px;
}
.contact-info-wrap{
	padding-left: 30px;
}
.contact-info-wrap span{
	font-size: 16px;
	color: #141a31;
	display: block;
	margin-bottom:5px;
}
.contact-info-wrap span img{
	width: 16px;
    position: relative;
    top: 2px;
    margin-right: 6px;
}
.contact-info-wrap span:nth-child(1) img{
	position: relative;
	top:5px !important;
	width: 14px;
}
.radio-group {
	display: flex;
	flex-direction: column;
	gap: 10px;
	font-family: "Poppins", sans-serif;
  }
  
  .custom-radio {
	position: relative;
	padding-left: 22px;
	cursor: pointer;
	user-select: none;
	font-size: 14px;
	color: #333;
  }
  
  .custom-radio input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
  }
  
  .radio-mark {
	position: absolute;
    top: 2px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #ffffff;
    border-radius: 50%;
    transition: all 0.3s  ease;
    border: 1px solid #ccc;
  }
  
  .custom-radio:hover input ~ .radio-mark {
	background-color: #ddd;
  }
  
  .custom-radio input:checked ~ .radio-mark {
	background-color: #93aafe;
	border-color: #93aafe;
  }
  
  .radio-mark::after {
	content: "";
	position: absolute;
	display: none;
  }
  
  .custom-radio input:checked ~ .radio-mark::after {
	display: block;
  }
  
  .custom-radio .radio-mark::after {
	top: 4px;
	left:4px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
  }
  .inner-radio-group{
	display:flex;
	gap:25px;
	margin-top: -9px;
  }
  .radio-group .label{
	font-size: 14px;
    margin: 0 0 5px 0;
	color: rgba(16, 16, 16, 0.70);
  }
  .social-icon-modal{
	width: 35px;
	height: 35px;
	background: #fff;
	border-radius: 50%;
	display: inline-block;
	text-align: center;
	position: relative;
	top: 10px;
	padding-top: 8px;
	color:#394a88
  }
  .btn-get-started{
	text-align: center;
	margin-top: 60px;
  }

  .btn-get-started a{
  background: #394a88;
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
  }
  .btn-get-started a:hover{
	background: #94abff;
  }
  .outsource-text p{
	font-size: 30px;
	font-weight: 300;
	color: #fff;
  }
  .ai-btn-wrap {
    text-align: center;
    margin-bottom: 70px;
}
.ai-btn-wrap a {
    background: #394a88;
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}
.ai-btn-wrap a:hover{
	background: #93aafe;
}

