body {
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    color: var(--text-color);
}


ul {
    padding: 0
}

ol,
ul {
    list-style: none;
    list-style-image: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 20px
}

ol li,
ul li {
    font-size: 17px;
    line-height: 28px;
    font-family: "Outfit", sans-serif;
    list-style-type: none
}

ul li i {
    vertical-align: middle;
    padding-right: 5px
}

p {
    font-size: 17px;
    line-height: 28px;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 15px;
    font-family: "Outfit", sans-serif;
}

a,
a:active,
a:focus,
a:hover,
a:visited {
    text-decoration: none;
    outline: 0
}

a:hover {
    color: #017df7
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Urbanist", sans-serif;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
}


:root {
    --primary-color: #002035;
    --secondary-color: #ffc30b;
    --page-official: #2E68FD;
    --white: #fff;
    --text-color: #363942;
    --text-color-one: #002035;
}

section {
    padding: 30px 0 0px;
}

img {
    /*width: 100%;*/
    max-width: 100%;
}





/* Main CSS Start */


/* New header Section */

.header-section {
	z-index: 999;
	background: transparent;
	top: 0;
	border-width: 0 0 1px;
	position: fixed;
	right: 0;
	left: 0;
	padding: 20px 0;
}

.header-section.sticky {
	z-index: 999;
	background: #fff;
	top: 0;
	border-width: 0 0 1px;
	position: fixed;
	right: 0;
	left: 0;
	padding: 4px 0;
	border-bottom: 1px solid #edf6f5;
	box-shadow: 0 3px 18px rgba(2, 21, 78, 9%);
    transition: all 0.2s ease;
}
.header-logo-area img {
	width: 230px;
}

.header-navbar {
    text-align: right;
}

.header-navbar ul {
    margin: 0px;
}

.header-navbar ul li {
    display: inline-block;
}

.header-navbar ul li a {
	padding: 0px 12px;
	text-transform: capitalize;
	font-size: 18px;
	color: #000000e6;
	transition: 0.5s ease;
	font-weight: 500;
	font-family: "Urbanist", sans-serif;
}

.header-navbar ul li a:hover {
    color: #fc4900;
}

.header-navbar ul li.header-call-btn a {
    text-transform: capitalize;
    font-size: 17px;
    color: #fff;
    transition: 0.5s ease;
    font-weight: 600;
    background-color: #2E68FD;
    border: 0px;
    margin-left: 12px;
    padding: 8px 25px;
    border-radius: 7px;
    display: inline-block;
    font-family: "Urbanist", sans-serif;
}

.header-navbar ul li.header-call-btn a:hover {
    background-color: #002035;
    color: #fff;
}

/* Mobile Menu */

.menuBar-area {
    display: none;
    text-align: right;
}

.menuBar-button {
    position: relative;
    display: block;
    cursor: pointer;
    width: 20px;
    height: 20px;
    border: none;
    outline: none;
    margin-left: auto;
    background: none;
}

.menuBar-button span {
    display: block;
    position: absolute;
    width: 20px;
    height: 2px;
    right: 0;
    border: none;
    outline: none;
    opacity: 1;
    border-radius: .25rem;
    background: #585b5f;
}

.menuBar-button span:nth-child(1) {
    top: 0;
}

.menuBar-button span:nth-child(2) {
    top: 8px;
}

.menuBar-button span:nth-child(3) {
    top: 16px;
}

.mobile-header {
    display: none;
}

.mobile-header-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* New header Section End */


/* Banner */

.bannerSection {
	width: 100%;
	height: auto;
	/* padding: 9% 0 5% 0; */
	padding: 150px 0px 100px 0px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	background-image: url(../images/bg1.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	/* animation: gradient 15s ease infinite; */
	border-radius: 0 0 70px 70px;
}

/* @keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
} */

.bannerText h1 span {
    position: relative;
}

.bannerText h1 span::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 6px;
    background-image: url(../images/Vector-underline.png);
    bottom: 0;
    left: 24px;
    background-repeat: no-repeat;
}

.bannerText h1 {
    font-weight: 800;
    color: var(--text-color-one);
    line-height: 65px;
    margin-bottom: 0px;
    font-size: 50px;
}

.bannerText {
    padding: 0 0px 0 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    z-index: 9;
    position: relative;
    gap: 12px;
}

.bannerVideo {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    z-index: 9;
    height: 100%;
}

.bannerText p {
	color: #363942;
	font-weight: 400;
	font-size: 20px;
	line-height: 29px;
	margin-bottom: 0px;
	width: 90%;
}

.bannerText p span {
    font-weight: 700;
}

.bannerBtn a {
    box-shadow: none;
    margin-top: 0px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 10px;
    border: 2px solid;
    padding: 15px 37px;
    font-weight: 500;
    font-size: 17px;
    transition: all ease-in-out 0.5s;
    font-family: "Urbanist", sans-serif;
}

.bannerBtn {
    margin-top: 29px;
    width: 100%;
}

.bannerBtn a i {
    margin-left: 10px;
    transform: rotate(-45deg);
}

a.even {
    color: var(--white);
    border-color: var(--page-official);
    background-color: var(--page-official);
}

a.even:hover {
    color: var(--white);
    border-color: var(--primary-color);
    background-color: var(--primary-color);
}

a.odd {
    color: var(--text-color-one);
    border-color: var(--text-color-one);
    background-color: rgba(0, 0, 0, 0);
}

a.odd:hover {
    color: var(--white);
    border-color: var(--page-official);
    background-color: var(--page-official);
}

.badges {
    margin: 24px 0 0;
    width: 100%;
}

.badges ul {
    display: flex;
    flex: 1 1 calc(33% - 1rem);
    gap: 10px;
    margin-bottom: 0;
}

.badges ul li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    color: #000;
    font-size: clamp(12px, 3vw, 18px);
    line-height: normal;
    font-weight: 400;
}

.badges ul li span img {
    width: 16px;
    height: 16px;
    border-radius: 100%;
    display: block;
    color: #000;
    font-size: 22px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0px;
}

.bannerImage {
	position: absolute;
	width: 65%;
	top: 0;
	right: 0%;
	left: 0;
	z-index: 9;
	margin: 0 auto;
}

.banUserImage {
	position: absolute;
	width: 200px;
	top: 182px;
	right: 10px;
	z-index: 99;
	animation-name: float_top_bottom_one;
	animation-duration: 10s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
	-webkit-animation-name: float_top_bottom_one;
	-webkit-animation-duration: 10s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	-moz-animation-name: float_top_bottom_one;
	-moz-animation-duration: 10s;
	-moz-animation-iteration-count: infinite;
	-moz-animation-timing-function: linear;
	-ms-animation-name: float_top_bottom_one;
	-ms-animation-duration: 10s;
	-ms-animation-iteration-count: infinite;
	-ms-animation-timing-function: linear;
	-o-animation-name: float_top_bottom_one;
	-o-animation-duration: 10s;
	-o-animation-iteration-count: infinite;
	-o-animation-timing-function: linear;
}

.odooBanCard {
	position: absolute;
	width: 128px;
	bottom: -60px;
	left: 55px;
	z-index: 99;
	animation-name: float_left_right_one;
	animation-duration: 10s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
	-webkit-animation-name: float_left_right_one;
	-webkit-animation-duration: 10s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	-moz-animation-name: float_left_right_one;
	-moz-animation-duration: 10s;
	-moz-animation-iteration-count: infinite;
	-moz-animation-timing-function: linear;
	-ms-animation-name: float_left_right_one;
	-ms-animation-duration: 10s;
	-ms-animation-iteration-count: infinite;
	-ms-animation-timing-function: linear;
	-o-animation-name: float_left_right_one;
	-o-animation-duration: 10s;
	-o-animation-iteration-count: infinite;
	-o-animation-timing-function: linear;
}

@-webkit-keyframes float_top_bottom_one {
    0% {
        -webkit-transform: translateY(-60px);
        opacity: 1;
        transition-duration: 10s;
    }

    50% {
        -webkit-transform: translateY(0px);
        opacity: 0.8;
    }

    100% {
        -webkit-transform: translateY(-60px);
        opacity: 1;
    }
}

@-webkit-keyframes float_left_right_one {
    0% {
        -webkit-transform: translateX(-60px);
        opacity: 1;
        transition-duration: 10s;
    }

    50% {
        -webkit-transform: translateX(0px);
        opacity: 0.8;
    }

    100% {
        -webkit-transform: translateX(-60px);
        opacity: 1;
    }
}

/* Client Slider */

.clientSlider-headeing {
    font-weight: 600;
    color: #282828;
    text-align: center;
    font-size: 22px;
    margin-bottom: 50px;
}

.clientSliderSection .item {
    width: 200px;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
}

.clientSliderSection .item img {
    display: block;
    width: 200px;
    max-width: 100%;
    height: 35px;
    margin: 0 auto;
    object-fit: contain;
}

.clientSliderSection {
	padding: 50px 0 40px;
}

/* Why Choose Odoo */

.whyChooseSec {
    border-top: 1px solid #00000017;
}

.sectionTitle {
    padding: 0px 0px 30px 0px;
    position: relative;
    z-index: 99;
    width: 100%;
}

.titleContainer {
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.headeing {
    color: #01081B;
    margin: 0 0 0px 0;
    font-weight: bold;
    font-size: clamp(25px, 3vw, 40px);
    text-align: center;
}

.subHeading {
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    color: #2E68FD;
    margin-bottom: 0;
}

.subHeading span {
    font-weight: 700;
    font-size: 22px;
}

.problemSolution {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    border-radius: 10px;
    background: #ffffff;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgb(222 239 255 / 76%) 100%);
}

.eachOdooSolution {
    width: 100%;
    text-align: center;
    padding: 35px 45px;
}

.odooPainPoints {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    background: #FCF8F3;
}

.solutionsImage {
    width: 100%;
    height: 231px;
    object-fit: cover;
    border-radius: 10px;
}

.odooSolutions {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    background: #F4EDFC;
}

.odooPainPoints ul {
    margin: 0;
}

.odooPainPoints ul li {
    font-size: 17px;
    padding: 7px 0;
    position: relative;
    text-align: left;
    color: #01081B;
    font-weight: 400;
}
.odooPainPoints ul li strong {
	background-image: url(../images/blue_highlight_01.svg);
	background-repeat: no-repeat;
	background-size: contain;
	min-height: 30px;
	display: inline-block;
}
.odooPainPoints ul li span {
    margin-right: 10px;
}

.odooPainPoints ul li span img {
	width: 28px;
	height: 28px;
	object-fit: contain;
}

.odooPainPoints h3,
.odooSolutions h3 {
    text-align: left;
    color: #01081B;
    font-size: clamp(28px, 3vw, 35px);
    font-weight: bold;
    font-family: "Urbanist", sans-serif;
}

.odooSolutions ul {
    margin: 0;
}

.odooSolutions ul li {
    font-size: 17px;
    padding: 7px 0px;
    position: relative;
    text-align: left;
    font-weight: 400;
    color: #2C2A2C;
}

.odooSolutions ul li span {
    margin-right: 10px;
}
.odooSolutions ul li strong {
	background-image: url(../images/blue_highlight_01.svg);
	background-repeat: no-repeat;
	background-size: contain;
    min-height: 30px;
	display: inline-block;
}
.odooSolutions ul li span img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.odooSolutions h3 {
    color: #16012C;
}

.eachOdooSolution ul {
    margin-bottom: 10px;
}

.whyChooseSec-btn {
    text-align: center;
    margin-top: 50px;
}

.contactForm-btn {
    box-shadow: none;
    margin-top: 0px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 10px;
    border: 2px solid;
    padding: 13px 35px;
    font-weight: 500;
    font-size: 17px;
    transition: all ease-in-out 0.5s;
    font-family: "Urbanist", sans-serif;
    display: inline-block;
}

/* Why Choose Envertis */

.whyPartnerSec {
	padding: 30px 0 30px;
}
.partner-box {
    padding: 35px 16px;
    text-align: center;
    border-radius: 10px;
}

.partner-box.partner1 {
    background-color: #F3F7FF;
}

.partner-box.partner2 {
    background-color: #FBF6EF;
}

.partner-box.partner3 {
    background-color: #EEF9FE;
}

.partner-box.partner4 {
    background-color: #F4EDFC;
}

.partner-box .partner-image-area img {
    width: 48px;
}

.partner-box .partner-content-area h4 {
    color: #01081B;
    font-weight: bold;
    font-family: "Urbanist", sans-serif;
    font-size: 20px;
    margin: 25px auto 15px;
}

.partner-box .partner-content-area p {
	color: #363942;
	font-size: 17px;
	line-height: 26px;
	font-weight: 400;
	margin-bottom: 0px;
}




/* Odoo Modules */

.odooModules {
    width: 100%;
    height: auto;
    padding: 50px 0px 50px 0px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-image: url(../images/bg1.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
        border-radius: 70px;
  overflow: hidden;
}

.odooModules::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background-color: #d4d4d412;
}

.odooModules .container {
    z-index: 99;
    position: relative;
}

.odooModules-btn {
    text-align: right;
}

.odooModules-box {
    padding: 35px 30px;
    border-radius: 10px;
    margin-bottom: 25px;
    background-color: #fff;
    text-align: center;
    min-height: 240px;
}

.odooModules-box .odooModules-icon-area{
    min-height: 52px;
}

.odooModules-box .odooModules-icon-area img {
    width: 48px;
}

.odooModules-box .odooModules-content-area h4 {
	color: #16012C;
	font-weight: bold;
	font-family: "Urbanist", sans-serif;
	font-size: 22px;
	margin: 25px auto 10px;
}

.odooModules-box .odooModules-content-area p {
	color: #494755;
	font-size: 18px;
	line-height: 26px;
	font-weight: 400;
	margin-bottom: 0px;
	width: 83%;
	margin: 0 auto;
}


/* How It Works */

.howItWorks {
    padding-bottom: 30px;
}

.howItWorks .sectionTitle{
    padding-bottom: 0px;
}

.eachStep {
    flex: 1 1 calc(25% - 1rem);
    border-radius: 10px;
    padding: 0px 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
}

.eachStep::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 60%;
    opacity: 1;
    top: 50%;
    transform: translate(0, -50%);
    right: -9px;
    background-image: linear-gradient(to bottom, #ffffff, #ffffff7a, #3b3b3b7d, #ffffff7a, #ffffff);
    background-color: #3b3b3b7d;

}

.eachStep:last-child::before {
    display: none;
}

.eachStep::after {
	position: absolute;
	content: "01";
	font-size: 98px;
	font-family: "Urbanist", sans-serif;
	font-weight: 700;
	opacity: 0.1;
	z-index: 1;
	top: 40px;
	left: 60px;
}

.stepTwo::after {
    content: "02";
}

.stepThree::after {
    content: "03";
}

.stepFour::after {
    content: "04";
}

.stepContainer {
	display: flex;
	gap: 1rem;
	margin: 0px 0;
	border-radius: 10px;
	align-items: start;
}
.stepIcon {
    margin: 60px 0 10px 0;
}

.stepIcon img {
    width: 45px;
}

.stepContent h4 {
	color: #01081B;
	margin: 20px 0 11px;
	font-size: 22px;
	font-weight: bold;
	font-family: "Urbanist", sans-serif;
}

.stepContent p {
	font-size: 17px;
	line-height: 23px;
	color: #363942;
	margin-bottom: 0px;
}

.video-section{    
    width: 100%;
    height: 650px;
    margin-top: 50px;
}

.video-section iframe{
    width: 100%;
   height: 100%; 
   border-radius: 10px;
    border: 1px solid #CFD0D1;
}


/* Contact Form */

.formSection {
	background: url(../images/bg1.svg);
	background-attachment: fixed;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	padding: 40px 0px;
	border-radius: 70px;
	overflow: hidden;
}

.formSection::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background-color: #d4d4d412;
}

.formSection .container{
    position: relative;
    z-index: 9;
}

.form-area{
    border-radius: 20px;
    background-color: #fff;
    padding: 30px 30px;
}

.form-title h4 {
	color: #16012C;
	margin: 0px 0 10px;
	font-size: 35px;
	font-weight: 700;
	font-family: "Urbanist", sans-serif;
}
.form-title p {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    color: #363942;
    margin-bottom: 30px;
}

.formContentBox {
    display: flex;
    gap: 0;
    justify-content: flex-start;
    align-items: center;
    padding-right: 0;
    background: var(--text-color-one);
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    background: #000 url(../images/ban-img.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.formfillBox {
    padding-left: 0;
}

.formTitle {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: end;
    text-align: left;
    margin-top: 50px;
    padding: 40px;
}

#contactForm .form-group {
    margin-bottom: 20px;
}

.formTitle .subHeading::after {
    content: "";
    width: 58px;
    height: 1px;
    background: var(--white);
    margin-top: 30px;
    display: block;
    margin: 20px auto 0 0;
}


.geometric-shapes {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.04;
    animation: float 20s ease-in-out infinite;
}

.shape:nth-child(1) {
    top: 10%;
    left: 10%;
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    animation-delay: -2s;
}

.shape:nth-child(2) {
    top: 60%;
    right: 15%;
    width: 40px;
    height: 40px;
    background: var(--accent);
    transform: rotate(45deg);
    animation-delay: -8s;
}

.shape:nth-child(3) {
    bottom: 20%;
    left: 20%;
    width: 80px;
    height: 80px;
    border: 3px solid var(--primary);
    border-radius: 50%;
    animation-delay: -14s;
}

.shape:nth-child(4) {
    top: 30%;
    right: 30%;
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 43px solid var(--accent);
    animation-delay: -5s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(20px, -20px) rotate(90deg);
    }

    50% {
        transform: translate(-10px, 20px) rotate(180deg);
    }

    75% {
        transform: translate(-20px, -10px) rotate(270deg);
    }
}

.form-container {
    background: var(--white);
    box-shadow: var(--text-color-one);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.6s ease forwards;
}

.form-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 400;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.6s ease 0.1s forwards;
}


.form-group {
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.6s ease forwards;
}

.form-group:nth-child(3) {
    animation-delay: 0.2s;
}

.form-group:nth-child(4) {
    animation-delay: 0.3s;
}

.form-group:nth-child(5) {
    animation-delay: 0.4s;
}

.form-group:nth-child(6) {
    animation-delay: 0.5s;
}

.form-group:nth-child(7) {
    animation-delay: 0.6s;
}

label {
    display: block;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-size: 0.95rem;
    transition: font-weight 0.3s ease;
    font-family: "Urbanist", sans-serif;
}

.form-group:focus-within label {
    font-weight: 600;
    color: var(--primary);
}

.required {
    color: var(--primary);
    margin-left: 4px;
}

input,
textarea,
select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #CCCCCC;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-card);
    color: var(--text-primary);
    outline: none;
    font-weight: 400;
    position: relative;
}

input:hover,
textarea:hover,
select:hover {
    border-color: var(--text-light);
    font-weight: 450;
}

/* Dynamic placeholder animations */
.input-wrapper {
    position: relative;
}

.dynamic-placeholder {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    font-weight: 400;
}

.input-wrapper input:focus+.dynamic-placeholder,
.input-wrapper input:not(:placeholder-shown)+.dynamic-placeholder {
    top: 0px;
    left: 16px;
    font-size: 0.75rem;
    color: var(--white);
    background: var(--page-official);
    padding: 0 8px;
    font-weight: 500;
    border-radius: 10px;
}

.input-wrapper input {
    background: transparent;
    border: 1px solid;
    border-color: #CCCCCC;
    font-family: "Urbanist", sans-serif;
}

.input-wrapper input::placeholder {
    opacity: 0;
}

/* Textarea character count */
.textarea-wrapper {
    position: relative;
}

.char-count {
    position: absolute;
    bottom: -24px;
    right: 0;
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
    transition: all 0.3s ease;
}

.char-count.warning {
    color: var(--accent);
}

.char-count.error {
    color: var(--error);
}

textarea {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
    padding-bottom: 40px;
    border: 1px solid #CCCCCC;
    font-family: "Urbanist", sans-serif;
}

.submit-btn {
    background: #2e68fd;
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    position: relative;
    color: var(--white);
    line-height: 24px;
    font-size: 16px;
}

.submit-btn:hover {
    box-shadow: var(--shadow-lg);
    border-radius: 16px;
    font-weight: 700;
    background-color: #002035;
}

.submit-btn:active {
    border-radius: 8px;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

/* Typing animation for placeholders */
@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

.typing-placeholder {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    animation: typing 2s steps(30) infinite alternate, blink 1s infinite;
}

.success-message,
.error-message {
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-weight: 500;
    display: none;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.success-message {
    background: #f0fff4;
    color: var(--success);
    border: 2px solid #9ae6b4;
}

.error-message {
    background: #fed7d7;
    color: var(--error);
    border: 2px solid #fe3030;
}

.success-message.show,
.error-message.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .form-container {
        padding: 32px 24px;
    }

    .form-title {
        font-size: 2rem;
    }

    .language-selector {
        position: static;
        text-align: center;
        margin-bottom: 32px;
    }
}

/* Loading state */
.submit-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

.submit-btn.loading::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.submit-btn.loading .btn-text {
    opacity: 0;
}


/* Testimonials */


.testimonials {
	position: relative;
	min-height: 510px;
}
.testimonials a.even {
	text-transform: capitalize;
	font-size: 17px;
	color: #fff;
	transition: 0.5s ease;
	font-weight: 600;
	background-color: #2E68FD;
	border: 0px;
	margin-left: 0px;
	padding: 12px 25px;
	border-radius: 7px;
	display: inline-block;
	font-family: "Urbanist", sans-serif;
	margin-top: 20px;
}
.testimonials a.even:hover {
	background-color: #002035;
	color: #fff;
}
.testimonials .headeing{
   text-align: left; 
}

.headeing-content {
	color: #363942;
	font-size: 17px;
	line-height: 26px;
	font-weight: 400;
	margin: 15px 0px 0px;
	width: 90%;
}

/* .testiSliderBox {
    position: absolute;
    right: 0;
    width: 50%;
    position: absolute;
    bottom: 0;
} */

.testimonialCard {
	box-shadow: 0px 0px 9px 0px #00000029;
	background: #fff;
	border-radius: 10px;
	padding: 30px 20px;
	margin: 0px 0 30px;
	min-height: 580px;
}
.testimonialCard .reviews img{
    display: inline-block;
    width: 16px;
}

.testimonialCard .client-message{
    color: #363942;
    font-size: 16px;
    line-height: 24px;
    margin: 10px 0px 0px;
}

.testimonialCard .client-area{
    display: flex;
    align-items: center;
    margin-top: 20px;
}


.testiImages img {
	width: 45px !important;
	border-radius: 50px;
}

.testiContent h4 {
    font-size: 15px;
    color: #363942;
    font-family: "Urbanist", sans-serif;
    margin: 0px 0px 0px 10px;
}

.testiContent h4 span{
    color: #01081B;
    font-weight: 600;
    display: block;
    font-size: 16px;
}

.testiSliderBox .item {
    margin: 25px 10px;
}


.testiImages span {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    font-weight: 600;
    font-size: 17px;
}

.testiImages span.g{
    background-color: #00483c;
}

.testiImages span.h{
    background-color: #8d6e63;
}

.testiImages span.m{
    background-color: #0097a7;
}

.testiImages span.t{
    background-color: #ef6c00;
}

.testiSliderBox .owl-item {
	min-height: 520px;
}
.left-section {
	min-height: 500px;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-content: center;
}



















/* Case Studies Section Style */

.case-studies {
	width: 100%;
	height: auto;
	padding: 50px 0px 50px 0px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	background-image: url(../images/bg1.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	margin: 0px 0px 0px;
}

.case-studies::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background-color: #d4d4d412;
}

.case-studies .event-cards__item {
    position: relative;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 2px 2px 8px rgb(0 0 0 / 10%);
    margin-top: 30px;
    transition: .1s ease;
}

.case-studies .event-cards__item:hover {
    transform: translateY(-10px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.case-studies .event-cards__pic img {
    width: 100%;
    display: block;
    height: 200px;
    object-fit: cover;
    object-position: center;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.case-studies .event-cards__content {
    padding: 15px;
}

.case-studies .event-cards__title {
    margin-bottom: 6px;
    border-width: 0;
    color: #16012C;
    font-size: 18px;
    line-height: 26px;
    font-weight: bold;
    font-family: "Urbanist", sans-serif;
}

.port-modal .modal-header .btn-close {
    background: none;
    box-shadow: none;
    outline: none;
}

.port-modal .modal-header .btn-close i {
    font-size: 25px;
}

.s_allow_columns p {
    font-size: 16px;
    line-height: 27px;
    margin-bottom: 10px;
    color: #39393e;
    margin-top: 7px;
    font-weight: 400;
}

.port-modal p strong {
    padding-right: 5px;
}

.s_allow_columns h2 {
    font-size: 35px;
    line-height: 47px;
    display: block;
    margin-bottom: 30px;
}

.s_blockquote {
    border: 0;
    padding: 0;
}

.s_blockquote.s_blockquote_classic .s_blockquote_icon {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
    background-color: #00a09d;
    font-size: 1em;
    float: left;
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.bg-o-color-2 {
    background-color: #017e84;
    color: #FFFFFF;
}

.s_blockquote.s_blockquote_classic .s_blockquote_content {
    overflow: hidden;
    padding: 1.5rem;
    background-color: #F9FAFB !important;
    color: #111827;
}

.blockquote-footer {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 0.875em;
    color: #6C757D;
    background: none;
    padding: 0;
}

.blockquote-footer::before {
    content: "— ";
}

.s_blockquote.s_blockquote_classic .s_blockquote_content .blockquote-footer .s_blockquote_avatar {
    max-height: 40px;
    margin-right: 8px;
    display: inline-block;
    border-radius: 50%;
    border-radius: 50%;
}

.text-muted {
    color: #212529bf;
}

.port-modal .contact_btn{
    text-transform: capitalize;
    font-size: 17px;
    color: #fff;
    transition: 0.5s ease;
    font-weight: 600;
    background-color: #2E68FD;
    border: 0px;
    padding: 8px 25px;
    border-radius: 7px;
    display: inline-block;
    font-family: "Urbanist", sans-serif;
}

.port-modal .contact_btn:hover{
    background-color: #002035;
    color: #fff;
}

@media (min-width: 576px) {
    :not(.s_popup)>.modal .modal-dialog {
        height: 100%;
        padding: 1.75rem 0;
        margin: 0 auto;
    }

    :not(.s_popup)>.modal .modal-body {
        overflow: auto;
        min-height: 0;
    }

    :not(.s_popup)>.modal .modal-content {
        max-height: 100%;
    }
}

@media (min-width: 992px) {

    .modal-lg,
    .modal-xl {
        max-width: 980px;
    }

}


/* Transform Your Business */

.transformBusiness-section{
    padding: 0px;
    background-image: url(../images/Business-bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

.transformBusiness-area{

    padding: 100px 0px;
    border-radius: 16px;
}

.transformBusiness-contentArea {
	text-align: center;
	margin: 0 auto;
	width: 45%;
}
.transformBusiness-contentArea h4 {
	font-size: 48px;
	font-weight: 700;
	color: #fff;
	font-family: "Urbanist", sans-serif;
}
.transformBusiness-contentArea p{
    font-size: 16px;
    color: #fff;
    font-family: "Urbanist", sans-serif;
    margin-bottom: 40px;
}

.transformBusiness-contentArea .transform-btn{
    font-size: 17px;
    color: #fff;
    transition: 0.5s  ease;
    font-weight: 500;
    background-color: transparent;
    border: 1px solid #fff;
    padding: 15px 40px;
    border-radius: 7px;
    display: inline-block;
    font-family: "Urbanist", sans-serif;
}

.transformBusiness-contentArea .transform-btn.color{
    background-color: #2E68FD;    
    margin-right: 12px;
    border: 1px solid #2E68FD;
}

.transformBusiness-contentArea .transform-btn:hover{
    background-color: #002035;
    color: #fff;
    border: 1px solid #002035;
}


/* footer-section */

footer {
    padding: 60px 0;
    background-size: cover;
    padding-bottom: 0px;
    background-image: url(../images/footer-bg.png);
    background-size: 60%;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.last-section .footer-upper-section {
    border-bottom: 1px solid #3534343b;
    padding-bottom: 35px;
}

footer ul,
footer li {
    list-style: none;
    margin: 0px;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}

.footer-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

.last-section .footer-upper-section ul.footer-list.first-list {
    padding: 0px;
}


.last-section .footer-upper-section ul.footer-list li.heading {
    text-align: center;
    display: block;
    position: relative;
    color: #000;
    text-align: left;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.last-section .footer-upper-section ul.footer-list li.heading span {
    position: relative;
    padding-left: 40px;
    color: #000;
    text-align: left;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 700;
}

.last-section .footer-upper-section ul.footer-list li.heading.aus-head span::before {
    position: absolute;
    content: "";
    background: url(../images/aus-flag.png) no-repeat;
    left: 0px;
    top: 5px;
    display: inline-block;
    width: 30px;
    height: 30px;
    background-size: 30px;
}

.last-section .footer-upper-section ul li {
	color: #000;
	font-size: 18px;
	line-height: 28px;
	width: 100%;
	display: block;
	font-weight: normal;
}

.ptt-20 {
    margin-bottom: 0px;
}

.ptt-20 a {
	color: #000;
	font-size: 18px;
	font-weight: 600;
	padding-bottom: 2px;
	display: block;
}

.footer-end-section {
    text-align: center;
    padding: 40px 0px 40px;
    border-bottom: 1px solid #3534343b;
}

.footer-end-section ul.badge-list {
    list-style-type: none;
    padding-left: 0px;
}

.footer-end-section ul.badge-list li {
    display: inline-block;
    margin: 10px 20px;
}

.footer-end-section ul.badge-list li img {
    width: 145px;
    height: auto;
}

.copy-right-bar {
    padding: 25px 0px;
}

.copy-right-bar p {
    color: #393E4A;
    font-size: 15px;
    float: none;
    margin-bottom: 0px;
    text-align: center;
}


/* Go to Top */
.goToTop {
    width: 60px;
    height: 60px;
    position: fixed;
    bottom: 120px;
    right: 10px;
    z-index: 999;
    cursor: pointer;
}

input[type="number"] {
    -moz-appearance: textfield
}




.custom-arrows {
	display: flex;
	gap: 10px;
	margin-top: 0px;
}

.custom-arrows button {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: 0.3s;
}

.custom-arrows button:hover {
  background: #2563eb;
  color: #fff;
}
.left-section .sectionTitle {
	padding: 0px 0px 28px 0px;
}












/* thank-you-page */
.thank-you-section {
  text-align: center;
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(176deg, rgb(249, 241, 221) 0%, rgba(167, 204, 251, 0.1) 100%);
}

.check-image {
  width: 18%;
  margin: 0 auto;
}

.thankyou-logo img {
  width: 300px;
}

.thank-you-caption h1 {
  color: #141417;
  font-size: 85px;
  font-weight: 700;
  line-height: 95px;
}

.thank-you-caption p {
  color: #292a2f;
  font-size: 20px;
  font-weight: normal;
  line-height: 28px;
  display: block;
  padding: 22px 0px;
  font-weight: 400;
  width: 62%;
  margin: 0 auto;
}

.thank-you-caption span {
  display: block;
  font-size: 32px;
  font-weight: 600;
  padding: 20px 0;
}

.thank-you-section .logo {
  margin-bottom: 50px;
}

.thank-you-caption a {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  line-height: 58px;
  padding: 0px 45px;
  display: inline-block;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  background-image: linear-gradient(to right, #FF512F 0%, #F09819 51%, #FF512F 100%);
  border-radius: 5px;
  margin-top: 30px;
}

.thank-you-caption a:hover {
  background-position: right center;
  color: #fff;
}