/*# Table of content
 ## DEFAULT CSS
 ## Code Clever CSS
 ## SLIDER ARROWS AND DOTS CSS
 ## HEADING CSS
 ## ICON BOX CSS
 ## ACCORDION/FAQ
 ## VIDEO BOX
 ## LIST
 ## CONTACT FORM 7
 ## TESTIMONIAL
 #*/

:root {
  --brand-color: #EA580C;
  --hover-color: #5a7cff;
  --cc-title-color: #37000A;
  --cc-text-color: #37000A;
  --cc-black: #000000;
  --cc-white: #FFFFFF;
  --cc-title-font: 'Archivo', sans-serif;
  --cc-text-font: 'DM Sans', sans-serif;
  --cc-box-shadow: 0 0 16px 0 rgb(0, 0, 0, .12);
  --cc-transition: .5s;
  --border-radius-sm: 4px;
  --border-radius-lg: 8px;
	
	--bg: #FAFBFC;
	--bg-dark: #0A1628;
	--fg: #1A2744;
	--fg-light: #5A6B85;
	--muted: #8B9BB4;
	--accent: #2563EB;
	--accent-light: #3B82F6;
	--accent-dark: #1D4ED8;
	--cta: #F97316;
	--cta-hover: #EA580C;
	--card: #FFFFFF;
	--border: #E2E8F0;
	--success: #10B981;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,body {
	overflow-x: hidden;
  font-family: var(--cc-text-font);
  color: var(--cc-text-color);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  background: var(--cc-white);
}
h1,h2,h3,h4,h5,h6,
.elementor-widget-heading .elementor-heading-title {
  font-family: var(--cc-title-font);
  color: var(--cc-title-color);
  line-height: 1.1;
  margin-top: 0;
  margin-bottom: 0;
}
h1 {
  font-size: 65px;
  font-weight: 700;
}
h2 {
  font-size: 50px;
  font-weight: 700;
}
h3 {
  font-size: 30px;
  font-weight: 600;
}
h4 {
  font-size: 22px;
  font-weight: 500;
}
h5 {
  font-size: 18px;
  font-weight: 400;
}
h6 {
  font-size: 14px;
  font-weight: 400;
}
button,
input[type="submit"],
a {
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
}
a,
a:hover {
  color: var(--brand-color);
}

input:focus,
textarea:focus {
	border: inherit;
	outline: none;
}

@media all and (max-width: 767px) {
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 22px;
  }
  h4 {
    font-size: 20px;
  }
}

/**********************************
## SLIDER ARROWS AND DOTS CSS
**********************************/
button.slick-arrow,
.swiper_prev,
.swiper_next {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  border: none;
  outline: none;
  cursor: pointer;
  background: var(--brand-color);
  color: var(--cc-white);
  border-radius: 4px;
  position: absolute;
  bottom: calc(50% - 25px);
  z-index: 1;
  transition-duration: var(--cc-transition);
}
button.slick-arrow:hover,
.swiper_prev:hover,
.swiper_next:hover,
button.slick-arrow:focus {
  background-color: var(--hover-color);
  color: var(--cc-white);
}
.swiper_prev,
.swiper_next {
  font-size: 20px;
}
button.slick-next.slick-arrow,
.swiper_next {
  right: -77px;
}
button.slick-arrow::before {
  content: "\f054";
  font-family: 'Font Awesome 6 free';
  font-size: 20px;
  font-weight: 900;
}
button.slick-prev.slick-arrow::before {
  content: "\f053";
}
button.slick-prev.slick-arrow,
.swiper_prev {
  right: calc(100% + 25px);
}
ul.slick-dots li button,
.swiper_pagination span {
  width: 16px;
  height: 16px;
  padding: 0;
  font-size: 0;
  border: none;
  outline: none;
  background-color: var(--hover-color);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  opacity: 1;
  display: block;
  transition: var(--cc-transition);
}
ul.slick-dots,
.swiper_pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
  width: 100%;
  position: absolute;
  bottom: -60px;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  z-index: 3;
}
ul.slick-dots li.slick-active button {
  background-color: var(--brand-color);
}
.carousel_active .slick-list {
  margin-left: -12px;
  margin-right: -12px;
}
.slick-slide {
  margin-left: 12px;
  margin-right: 12px;
}

/******************
* Code Clever CSS
******************/
.transition_sm,
.tr_in,
.tr_in * {
  transition: var(--cc-transition);
  -webkit-transition: var(--cc-transition);
  -moz-transition: var(--cc-transition);
  -ms-transition: var(--cc-transition);
  -o-transition: var(--cc-transition);
}
.text_left {
  text-align: left;
}
.text_center {
  text-align: center;
}
.text_right {
  text-align: right;
}
/* color style start */
.text_brand {
  color: var(--brand-color)
}
.text_hover {
  color: var(--hover-color)
}
.text_title {
  color: var(--cc-title-color)
}
.text_white {
  color: var(--cc-white)
}
.text_black {
  color: var(--cc-black)
}
.h_text_brand:hover {
  color: var(--brand-color)
}
.h_text_hover:hover {
  color: var(--hover-color)
}
.h_text_title:hover {
  color: var(--cc-title-color)
}
.h_text_white:hover {
  color: var(--cc-white)
}
.h_text_black:hover {
  color: var(--cc-black)
}
/* color style end */

/* background style start */
.bg_brand {
  background-color: var(--brand-color)
}
.bg_hover {
  background-color: var(--hover-color)
}
.bg_title {
  background-color: var(--cc-title-color)
}
.bg_white {
  background-color: var(--cc-white)
}
.bg_black {
  background-color: var(--cc-black)
}
.h_bg_brand:hover {
  background-color: var(--brand-color)
}
.h_bg_hover:hover {
  background-color: var(--hover-color)
}
.h_bg_title:hover {
  background-color: var(--cc-title-color)
}
.h_bg_white:hover {
  background-color: var(--cc-white)
}
.h_bg_black:hover {
  background-color: var(--cc-black)
}
/* background style end */

/* margin style start */
.mx_auto {
  margin-left: auto;
  margin-right: auto;
}
.mx_10 {
  margin-left: 10px;
  margin-right: 10px;
}
.mt_0 {
  margin-top: 0;
}
.mt_10 {
  margin-top: 10px;
}
.mt_20 {
  margin-top: 20px;
}
.mt_30 {
  margin-top: 30px;
}
.mt_40 {
  margin-top: 40px;
}
.mt_50 {
  margin-top: 50px;
}
.mt_60 {
  margin-top: 60px;
}
.mt_70 {
  margin-top: 70px;
}
.mt_80 {
  margin-top: 80px;
}
.mt_90 {
  margin-top: 90px;
}
.mb_0 {
  margin-bottom: 0;
}
.mb_10 {
  margin-bottom: 10px;
}
.mb_20 {
  margin-bottom: 20px;
}
.mb_30 {
  margin-bottom: 30px;
}
.mb_40 {
  margin-bottom: 40px;
}
.mb_50 {
  margin-bottom: 50px;
}
.mb_60 {
  margin-bottom: 60px;
}
.mb_70 {
  margin-bottom: 70px;
}
.mb_80 {
  margin-bottom: 80px;
}
.mb_90 {
  margin-bottom: 90px;
}
.mb_100 {
  margin-bottom: 100px;
}
/* margin style end */

/* padding style start */
.p_0 {
  padding: 0;
}
.p_10 {
  padding: 10px;
}
.p_20 {
  padding: 20px;
}
.px_0 {
  padding-left: 0;
  padding-right: 0;
}
.px_10 {
  padding-left: 10px;
  padding-right: 10px;
}
.px_20 {
  padding-left: 20px;
  padding-right: 20px;
}
.py_0 {
  padding-top: 0;
  padding-bottom: 0;
}
.py_10 {
  padding-top: 10px;
  padding-bottom: 10px;
}
.py_20 {
  padding-top: 20px;
  padding-bottom: 20px;
}
.pt_0 {
  padding-top: 0;
}
.pt_10 {
  padding-top: 10px;
}
.pt_20 {
  padding-top: 20px;
}
.pt_30 {
  padding-top: 30px;
}
.pt_40 {
  padding-top: 40px;
}
.pb_10 {
  padding-bottom: 10px;
}
.pb_20 {
  padding-bottom: 20px;
}
.pb_30 {
  padding-bottom: 30px;
}
.pb_40 {
  padding-bottom: 40px;
}

/* padding style end */
.grid {
  display: grid;
}
.flex {
  display: flex;
}
.i_flex {
  display: inline-flex;
}
.wrap {
  flex-wrap: wrap;
}
.block {
  display: block;
}
.none {
  display: none;
}
.i_block {
  display: inline-block;
}
.column {
  flex-direction: column;
}
.jc_left {
  justify-content: flex-start;
}
.jc_center {
  justify-content: center;
}
.jc_right {
  justify-content: right;
}
.jc_between {
  justify-content: space-between;
}
.jc_end {
  justify-content: flex-end;
}
.ai_start {
  align-items: start;
}
.ai_center {
  align-items: center;
}
.ai_end {
  align-items: end;
}
.flex-auto {
  flex: 0 0 auto;
}
.flex-grow-1 {
  flex-grow: 1;
}
.mkp_w_100 {
  width: 100%;
}
.mkp_w_50 {
  width: 50%;
}
.mkp_h_100 {
  height: 100%;
}
.mkp_h_50 {
  height: 50%;
}
.z_index_1 {
  z-index: 1;
}
.oh {
  overflow: hidden;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.gap_10 {
  gap: 10px;
}
.gap_20 {
  gap: 20px;
}
.gap_30 {
  gap: 30px;
}
.fs_16 {
  font-size: 16px;
}
.fs_32 {
  font-size: 32px;
}
.box {
  position: relative;
}
.box::before,
.box::after {
  position: absolute;
  content: '';
  transition: var(--cc-transition);
  -webkit-transition: var(--cc-transition);
  -moz-transition: var(--cc-transition);
  -ms-transition: var(--cc-transition);
  -o-transition: var(--cc-transition);
}
.box_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mkp_shadow {
  box-shadow: var(--cc-box-shadow);
}
.mkp_round_sm {
  border-radius: var(--border-radius-sm);
  -webkit-border-radius: var(--border-radius-sm);
  -moz-border-radius: var(--border-radius-sm);
  -ms-border-radius: var(--border-radius-sm);
  -o-border-radius: var(--border-radius-sm);
}
.mkp_round_lg {
  border-radius: var(--border-radius-lg);
  -webkit-border-radius: var(--border-radius-lg);
  -moz-border-radius: var(--border-radius-lg);
  -ms-border-radius: var(--border-radius-lg);
  -o-border-radius: var(--border-radius-lg);
}
.mkp_icon i {
  display: inline-block;
}
.page_title h3 a:hover {
  color: var(--brand-color);
}

/* manu css  */
.header-menu .menu {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  list-style: none;
  padding-left: 0
}
.header-menu .menu li a {
  display: block;
  color: var(--hover-color);
  font-size: 16px;
  font-family: 'Poppins', Sans-Serif;
  font-weight: 500;
  transition: .5s;
  padding: 0 16px;
}
.header-menu .menu li a:hover {
  color: var(--brand-color);
}

/* menu css */
.justify_icon {
  width: 28px;
  height: 22px;
  margin: 0 12px;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  position: relative;
}
.justify_icon span {
  width: 100%;
  height: 2px;
  background-color: var(--brand-color);
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
}
.sticky.trp_bg .justify_icon span {
  background-color: white;
}
.justify_icon span:last-child {
  margin-bottom: 0;
}
.justify_icon:hover span:nth-child(2) {
  width: 28px;
}
/* Menu close icon css */
.justify_icon.open span:nth-child(2) {
  width: 0;
  transition: 0s;
  -webkit-transition: 0s;
  -moz-transition: 0s;
  -ms-transition: 0s;
  -o-transition: 0s;
}
.justify_icon.open span {
  position: absolute;
  top: 8px;
  width: 88%;
}
.justify_icon.open span:first-child {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
}
.justify_icon.open span:last-child {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
}
.mm_close,
.menu_sh_wrapper {
  display: none;
}
/* menu responsive css */
@media all and ( max-width: 767px ) {
  .menu-area {
    padding: 30px 10px;
    background: white;
  }
  nav.header-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 300px;
    background: white;
    height: 100vh;
    padding-top: 90px;
    z-index: 99999;
    overflow: auto;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
  }
  nav.header-menu.open {
    left: 0
  }
  .header-menu .menu {
    flex-direction: column;
  }
  .close_icon {
    color: var(--brand-color);
    font-size: 30px;
    position: absolute;
    top: 40px;
    right: 40px;
    z-index: 99999;
    cursor: pointer;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
  }
  .menu_sh_wrapper {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
  }
  .mm_close {
    top: 24px;
    right: 24px;
  }
  .mm_close,
  .menu_sh_wrapper {
    display: block ;
  }
}
/* arrow css */
.cst_arrow {
  width: 45px;
  height: 45px;
  Font-size: 16px;
  color: var(--cc-white);
  background-color: var(--hover-color);
  position: absolute;
  right: -20px;
  z-index: 1;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.cst_arrow.swiper_prev {
  left: 0;
  right: auto;
}

/* button css */
.mkp_btn {
  background-color: var(--brand-color);
  color: var(--cc-white);
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  font-family: var(--cc-text-font);
  padding: 20px 40px;
  position: relative;
  z-index: 1;
  border: none;
  outline: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--cc-transition);
  border-radius: 5px;
}
.mkp_btn:hover {
  background: var(--hover-color);
  color: var(--cc-white);
}

/*===================================
## HEADING CSS
===================================*/
.mkp_heading span {
  color: var(--brand-color);
}

/*===================================
## ICON BOX CSS
===================================*/
.box {
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
}

/*===================================
## ACCORDION/FAQ
===================================*/
.accordion-button:focus {
  box-shadow: inherit;
}
.accordion-body {
  display: none;
}
.accordion-item {
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  background-color: var(--cc-white);
}
.accordion-item:not(:last-child) {
  margin-bottom: 20px;
}
.accordion-header {
  margin-bottom: 0;
  margin-top: 0;
}
.accordion-button {
  width: 100%;
  color: var(--cc-title-color);
  background-color: var(--cc-white);
  text-align: left;
  padding: 20px 30px 20px 20px;
  font-size: 18px;
  font-family: var(--cc-title-font);
  border-width: 0 0 0 0;
  border-style: solid;
  border-color: #DDDDDD;
  line-height: 22px;
  font-weight: 400;
  cursor: pointer;
  position: relative;
  display: block;
  white-space: wrap;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.accordion-button::before {
  content: '\f0da';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cc-text-color);
  border: none;
  background: transparent;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  transform: translateY(-50%);
  transition: .5s;
}
.active .accordion-button::before {
  content: '\f0d8';
}
.accordion-body {
  padding: 30px;
}
@media all and ( max-width: 767px ) {
  .accordion-button {
    font-size: 16px;
    padding: 15px 30px 15px 15px;
  }
  .accordion-button::before {
    right: 15px;
    width: 18px;
    height: 18px;
    font-size: 14px;
  }
  .accordion-body {
    padding: 20px;
    font-size: 16px;
  }
}

/*===================================
## VIDEO BOX
===================================*/
.video_image img {
  display: block;
}
.video_btn_wrap {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.video_btn_wrap a {
  width: 60px;
  height: 60px;
  display: inline-block;
  color: var(--cc-white);
  background-color: var(--brand-color);
  text-align: center;
  line-height: 60px;
  padding: 0;
  font-size: 20px;
  border-radius: 50%;
  position: relative;
}
.video_btn_wrap a::before,
.video_btn_wrap a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: var(--brand-color);
  z-index: -1;
  border-radius: 50%;
  animation: video-overlay 2s normal infinite;
  -webkit-animation: video-overlay 2s normal infinite;
}
.video_btn_wrap a::after {
  animation-delay: .5s;
}
@keyframes video-overlay {
  0% {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
  }
}
.video_area.style-2 .video_btn_wrap a::before,
.video_area.style-2 .video_btn_wrap a::after {
  display: none;
}

/*===================================
## LIST
===================================*/
ol, ul {
  padding-left: 32px;
  margin-bottom: 32px
}
.s_list ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.s_list ul li {
  display: flex;
  align-items: start;
  gap: 8px;
}
.s_list ul li i {
  margin-top: 3px;
}
.mkp_tabs ul li,
.s_list ul li,
.team_socials li,
.product-categories li,
.filter_buttons li,
.portfolio_categories li {
  list-style: none;
}

/*===================================
## CONTACT FORM 7
===================================*/
.cr7 > p:has(.wpcf7-spinner) {
  position: relative;
}
.wpcf7-spinner {
  position: absolute;
  left: 50%;
  bottom: 50%;
	transform: translate( -50%, -50% );
}
.wpcf7 .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -4px;
}
.wpcf7 .row > div {
  flex: 0 0 auto;
  padding: 0 4px;
  width: 100%;
}
.wpcf7 .grid.grid_cols_3 {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
}
.wpcf7 .wpcf7-list-item {
  margin-left: 0;
  display: flex;
}
.mkp_cf7 label {
  width: 100%;
}
input[type="checkbox"], input[type="radio"] {
  width: auto!important;
  height: auto!important;
}
.wpcf7-form-control-wrap {
  display: flex;
  flex-direction: column;
}
@media all and ( max-width: 767px ) {
  .wpcf7 .grid.grid_cols_3 {
    grid-template-columns: repeat(1, 1fr);
    gap: 0;
  }
}

/*===================================
## TESTIMONIAL
===================================*/
.tst_title .designation {
  font-family: var(--cc-text-font);
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  margin-top: 1px;
}
.quote_icon i {
  display: inline-block;
}
.mkp_tst .testi_thumb img {
  width: 60px;
  margin: 0px 12px 0px 0px;
  border-radius: 50% 50% 50% 50%;
}


/*===================================
## CUSTOM CSS
===================================*/
.dmsans, .dmsans * {
	font-family: "DM Sans", sans-serif;
}
.archivo, .archivo * {
	font-family: "Archivo", sans-serif;
}
.font-display {
	font-family: 'Archivo', sans-serif;
}
/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-40px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(40px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

@keyframes pulse-ring {
	0% { transform: scale(0.8); opacity: 0; }
	50% { opacity: 0.3; }
	100% { transform: scale(1.2); opacity: 0; }
}

@keyframes gradient-shift {
	0%, 100% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
}

.animate-on-scroll {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
	opacity: 1;
	transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Hero gradient background */
.hero-bg {
	background: linear-gradient(135deg, #0A1628 0%, #1A2744 50%, #0F2847 100%);
	position: relative;
	overflow: hidden;
}

.hero-bg::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: 
		radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
		radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.1) 0%, transparent 40%);
	pointer-events: none;
}

.hero-bg::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	pointer-events: none;
}

/* Floating shapes */
.floating-shape {
	position: absolute;
	border-radius: 50%;
	animation: float 6s ease-in-out infinite;
	pointer-events: none;
}

.shape-1 {
	width: 300px;
	height: 300px;
	background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
	top: 10%;
	right: 5%;
	animation-delay: 0s;
}

.shape-2 {
	width: 200px;
	height: 200px;
	background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
	bottom: 20%;
	left: 10%;
	animation-delay: 2s;
}

/* Buttons */
.btn-primary {
	background: linear-gradient(135deg, var(--cta) 0%, var(--cta-hover) 100%);
	color: var(--cc-white);
	padding: 14px 28px;
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
	border: none;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.btn-primary::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;
}

.btn-primary:hover::before {
	left: 100%;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
	color: var(--cc-white);
}

.btn-primary:focus-visible {
	outline: 2px solid var(--cta);
	outline-offset: 2px;
}

.btn-secondary {
	background: transparent;
	color: white;
	padding: 14px 28px;
	border-radius: 8px;
	font-weight: 600;
	border: 2px solid rgba(255,255,255,0.3);
	transition: all 0.3s ease;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.btn-secondary:hover {
	background: rgba(255,255,255,0.1);
	border-color: rgba(255,255,255,0.5);
}

.btn-secondary:focus-visible {
	outline: 2px solid white;
	outline-offset: 2px;
}

/* Cards */
.service-card {
	background: var(--card);
	border-radius: 16px;
	padding: 32px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid var(--border);
	position: relative;
	overflow: hidden;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--accent), var(--cta));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

.service-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 50px rgba(10, 22, 40, 0.1);
	border-color: transparent;
}

.service-card:hover::before {
	transform: scaleX(1);
}

.service-icon {
	width: 56px;
	height: 56px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
	transform: scale(1.1);
}

/* Stats */
.stat-card {
	text-align: center;
	padding: 32px;
}

.stat-number {
	font-size: 3.5rem;
	font-weight: 700;
	background: linear-gradient(135deg, var(--accent) 0%, var(--cta) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.1;
}

/* Process steps */
.process-step {
	position: relative;
	padding-left: 80px;
}

.process-number {
	position: absolute;
	left: 0;
	top: 0;
	width: 56px;
	height: 56px;
	background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 700;
	color: white;
}

.process-connector {
	position: absolute;
	left: 28px;
	top: 70px;
	width: 2px;
	height: calc(100% - 56px);
	background: linear-gradient(to bottom, var(--accent), transparent);
}

/* Testimonial slider */
.testimonial-card {
	background: var(--card);
	border-radius: 20px;
	padding: 40px;
	box-shadow: 0 10px 40px rgba(10, 22, 40, 0.08);
	position: relative;
}

.testimonial-card::before {
	content: '"';
	position: absolute;
	top: 20px;
	left: 30px;
	font-size: 80px;
	font-family: Georgia, serif;
	color: var(--accent);
	opacity: 0.1;
	line-height: 1;
}

/* FAQ Accordion */
.faq-item {
	border: 1px solid var(--border);
	border-radius: 12px;
	margin-bottom: 12px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-item:hover {
	border-color: var(--accent);
}

.faq-question {
	width: 100%;
	padding: 20px 24px;
	background: var(--card);
	border: none;
	text-align: left;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 600;
	color: var(--fg);
	transition: background 0.3s ease;
}

.faq-question:hover {
	background: #F8FAFC;
}

.faq-question:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: -2px;
}

.faq-icon {
	transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
	transform: rotate(180deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
	max-height: 300px;
}

.faq-answer-content {
	padding: 0 24px 20px;
	color: var(--fg-light);
}

/* Header */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	transition: all 0.3s ease;
}

.header.scrolled {
	background: rgba(10, 22, 40, 0.95);
	backdrop-filter: blur(10px);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Mobile menu */
.mobile-menu {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--bg-dark);
	z-index: 999;
	transform: translateX(100%);
	transition: transform 0.3s ease;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 24px;
}

.mobile-menu.active {
	transform: translateX(0);
}

.mobile-menu a {
	color: white;
	font-size: 1.5rem;
	font-weight: 600;
	text-decoration: none;
	transition: color 0.3s ease;
}

.mobile-menu a:hover {
	color: var(--cta);
}

/* Trust badges */
.trust-badge {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	background: rgba(255,255,255,0.1);
	border-radius: 100px;
	font-size: 0.875rem;
	color: white;
}

/* Industry logos */
.industry-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	padding: 0;
	transition: transform 0.3s ease;
}

.industry-item:hover {
	transform: scale(1.05);
}

.industry-icon {
	width: 64px;
	height: 64px;
	background: linear-gradient(135deg, var(--bg-dark) 0%, #1A2744 100%);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.industry-item:hover .industry-icon {
	background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
}

/* Case study card */
.case-study-card {
	background: var(--card);
	border-radius: 20px;
	overflow: hidden;
	transition: all 0.4s ease;
	border: 1px solid var(--border);
}

.case-study-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 50px rgba(10, 22, 40, 0.12);
}

.case-study-image {
	height: 200px;
	background: linear-gradient(135deg, var(--bg-dark) 0%, #1A2744 100%);
	position: relative;
	overflow: hidden;
}

.case-study-image::after {
	content: '';
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

/* CTA Section */
.cta-section {
	background: linear-gradient(135deg, var(--bg-dark) 0%, #1A2744 100%);
	position: relative;
	overflow: hidden;
}

.cta-section::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
	pointer-events: none;
}

.cta-section::after {
	content: '';
	position: absolute;
	bottom: -30%;
	left: -10%;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(249, 115, 22, 0.15) 0%, transparent 70%);
	pointer-events: none;
}

/* Why choose us grid */
.why-card {
	background: var(--card);
	border-radius: 16px;
	padding: 32px;
	border: 1px solid var(--border);
	transition: all 0.3s ease;
}

.why-card:hover {
	border-color: var(--accent);
	box-shadow: 0 10px 30px rgba(37, 99, 235, 0.08);
}

/* Dashboard mockup */
.dashboard-mockup {
	background: linear-gradient(135deg, #1A2744 0%, #0A1628 100%);
	border-radius: 16px;
	padding: 24px;
	box-shadow: 0 30px 60px rgba(10, 22, 40, 0.3);
	border: 1px solid rgba(255,255,255,0.1);
}

.dashboard-header {
	display: flex;
	gap: 8px;
	margin-bottom: 20px;
}

.dashboard-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
}

.dashboard-stat {
	background: rgba(255,255,255,0.05);
	border-radius: 12px;
	padding: 20px;
	border: 1px solid rgba(255,255,255,0.1);
}

/* Slider */
.testimonial-slider {
	position: relative;
	overflow: hidden;
}

.testimonial-track {
	display: flex;
	transition: transform 0.5s ease;
}

.testimonial-slide {
	min-width: 100%;
	padding: 0 15px;
}

@media (min-width: 768px) {
	.testimonial-slide {
		min-width: 50%;
	}
}

@media (min-width: 1024px) {
	.testimonial-slide {
		min-width: 33.333%;
	}
}

.slider-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 32px;
}

.slider-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--border);
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
}

.slider-dot.active {
	background: var(--accent);
	width: 30px;
	border-radius: 5px;
}

.slider-dot:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 2px;
}

/* Hide desktop nav on mobile */
@media (max-width: 1023px) {
	.desktop-nav {
		display: none;
	}
}

@media (min-width: 1024px) {
	.mobile-nav-btn {
		display: none;
	}
}

/* Focus styles */
a:focus-visible,
button:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 2px;
}

/* Selection */
::selection {
	background: var(--accent);
	color: white;
}