

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Lato", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #fff6f6;
  min-height: 100vh;
  position: relative;
}

a:active,
a:hover {
  outline: 0;
}

a {
  color: #727272;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

a:hover {
  color: #e44848;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

input:focus-visible {
  outline: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  list-style: none;
}

.btn.focus,
.btn:focus {
  outline: 0;
  box-shadow: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #1c1c1c;
  line-height: normal;
  font-weight: 600;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 35px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 28px;
}

h5 {
  font-size: 26px;
}

h6 {
  font-size: 24px;
}

p {
  font-size: 16px;
  color: #727272;
  line-height: normal;
}


:root {
    --primary-color: #21252f;
    --secondary-color: #eff4ff;
    --bg-color: #FFFFFF;
    --text-color: #426463;
    --accent-color: #0f57fb;
    --white-color: #FFFFFF;
    --divider-color: #0f57fb63;
    --dark-divider-color: #FFFFFF1A;
    --error-color: rgb(230, 87, 87);
    --default-font: "Lato", sans-serif;
}


.navbar .main-logo {
  width: 200px;
}

.btn-default {
  position: relative;
  display: inline-block;
  background: var(--accent-color);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1em;
  text-transform: capitalize;
  color: var(--white-color);
  padding: 15px 30px 15px 30px;
  border: none;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  z-index: 0;
  text-align: center;
}

/*.btn-default::before {*/
/*  content: '';*/
/*  position: absolute;*/
/*  top: 50%;*/
/*  right: 20px;*/
/*  width: 20px;*/
/*  height: 20px;*/
/*  background: url('../images/arrow-white.svg') no-repeat;*/
/*  background-position: center center;*/
/*  background-size: cover;*/
/*  transform: translateY(-50%);*/
/*  transition: all 0.4s ease-in-out;*/
/*  z-index: 1;*/
/*}*/

.btn-default::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  background: var(--primary-color);
  border-radius: 0;
  transition: 0.4s ease-in-out;
  z-index: -1;
}

.btn-default:hover {
  color: var(--white-color);
}

.btn-default:hover:before {
  filter: brightness(0) invert(1);
}

.btn-default:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

.page-footer {
  background: var(--primary-color);
  padding: 10px 0;
  text-align: center;
}




/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header {
  position: relative;
  /*background: var(--secondary-color);*/
  z-index: 100;
}

header.main-header .header-sticky {
  position: relative;
  top: 0;
  z-index: 100;
}

header.main-header .header-sticky.hide {
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
  border-radius: 0;
}

header.main-header .header-sticky.active {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  border-radius: 0;
  transform: translateY(0);
  background: var(--secondary-color);
  border-bottom: 1px solid var(--divider-color);
}

.navbar {
  padding: 15px 0;
  align-items: center;
}

.navbar img {
  width: 160px !important;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.main-menu .nav-menu-wrapper {
  flex: 1;
  text-align: center;
  margin: 0 20px;
}

.main-menu .nav-menu-wrapper>ul {
  align-items: center;
  display: inline-flex;
}

.main-menu ul li {
  margin: 0 5px;
  position: relative;
}

.main-menu ul li a {
  font-size: 17px;
  font-weight: 600;
  line-height: 1em;
  padding: 17px 15px !important;
  color: var(--text-color);
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu>a:after {
  content: '\f107';
  font-family: 'FontAwesome';
  font-weight: 900;
  font-size: 14px;
  margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
  color: var(--accent-color);
}

.main-menu ul ul {
    visibility: hidden;
    opacity: 0;
    transform: scaleY(0.8);
    transform-origin: top;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 235px;
    border-radius: 5px;
    position: absolute;
    left: 0;
    top: 100%;
    background: var(--secondary-color);
    transition: all 0.3s ease-in-out;
    text-align: left;
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.15);
}

.main-menu ul li.submenu:first-child ul {
  width: 235px;
}

.main-menu ul ul ul {
  left: 100%;
  top: 0;
  text-align: left;
}

.main-menu ul li:hover>ul {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
  padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu>a:after {
  content: '\f105';
  float: right;
}

.main-menu ul ul li {
  margin: 0;
  padding: 0;
}

.main-menu ul ul li a {
  color: var(--text-color);
  padding: 10px 20px !important;
  transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover>ul {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
  padding: 5px 0;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
  color: var(--primary-color);
  background-color: transparent;
  padding: 8px 20px 8px 23px !important;
}

.header-contact-btn {
  display: flex;
  align-items: center;
  gap: 25px;
}

.main-menu ul li.highlighted-menu {
  display: none;
}

.responsive-menu,
.navbar-toggle {
  display: none;
}

.responsive-menu {
  top: 0;
  position: relative;
}

.slicknav_btn {
  background: var(--accent-color);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  margin: 0;
  border-radius: 8px;
}

.slicknav_icon .slicknav_icon-bar {
  display: block;
  width: 100%;
  height: 2px;
  width: 20px;
  background-color: #ffffff;
  border-radius: 6px;
  margin: 4px auto !important;
  transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
  margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
  margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 5px);
  background-color: var(--secondary-color);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
  opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -5px);
  background-color: var(--secondary-color);
}

.slicknav_menu {
  position: absolute;
  width: 100%;
  padding: 0;
  background: var(--secondary-color);
}

.slicknav_menu ul {
  margin: 5px 0;
}

.slicknav_menu ul ul {
  margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 8px 20px;
  color: var(--primary-color);
  line-height: normal;
  margin: 0;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
  background-color: transparent;
  color: var(--accent-color);
}

.slicknav_menu ul ul li a {
  padding: 8px 20px 8px 30px;
}

.slicknav_arrow {
  font-size: 0 !important;
}

.slicknav_arrow:after {
  content: '\f107';
  font-family: 'FontAwesome';
  font-weight: 900;
  font-size: 12px;
  margin-left: 8px;
  color: var(--primary-color);
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-out;
}

.slicknav_open>a .slicknav_arrow:after {
  transform: translateY(-50%) rotate(-180deg);
  color: var(--accent-color);
}



@media only screen and (max-width: 991px) {

  .readmore-btn {
    font-size: 16px;
  }

  .navbar {
    padding: 10px 0;
  }

  .navbar img {
    width: 140px !important;
  }

  .slicknav_nav li,
  .slicknav_nav ul {
    display: block;
  }

  .responsive-menu,
  .navbar-toggle {
    display: block;
  }
}






@media only screen and (min-width: 769px){
     .mobile-fixed-menu-btn {
        display: none;
     }
}



@media only screen and (max-width: 768px){
    .mobile-fixed-menu-btn {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 10;
        height: 50px;
        text-align: center;
    }
    
    .mobile-fixed-menu-btn button{
        width: 100%;
        height: 100%;
        padding: 15px 35px 15px 15px;
        border-radius: 0;
        font-size: 20px;
    }
}




/************************************/
/***   		16. Footer css        ***/
/************************************/

.main-footer{
	/*padding: 70px 0 0;*/
	background: var(--primary-color);
}

.footer-logo{
	margin-bottom: 30px;
}

.footer-logo img{
    width: 250px;
}

.about-footer-content{
	margin-bottom: 30px;
}

.about-footer-content p{
	color: var(--white-color);
	margin: 0;
}

.footer-social-links ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-social-links ul li{
	display: inline-flex;
	margin-right: 20px;
}

.footer-social-links ul li:last-child{
	margin-right: 0;
}

.footer-social-links ul li a i{
	color: var(--white-color);
	font-size: 22px;
	transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a i{
	color: var(--accent-color);
}

.about-working-hour h3,
.about-service-list h3,
.footer-contact h3{
	color: var(--accent-color);
	font-size: 22px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 30px;
}

.about-working-hour{
	margin-left: 55px;
}

.about-working-hour ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.about-working-hour ul li{
	color: var(--white-color);
	text-transform: capitalize;
	margin-bottom: 10px;
}

.about-working-hour ul li a{
    	color: var(--white-color);
}

.about-working-hour ul li:last-child{
	margin-bottom: 0;
}

.about-service-list{
	margin-left: 10px;
}

.about-service-list ul{
	list-style: none;
	margin: 0;
	padding-left: 15px;
	padding: 0;
}

.about-service-list ul li{
	text-transform: capitalize;
	margin-bottom: 15px;
}

.about-service-list ul li:last-child{
	margin-bottom: 0;
}

.about-service-list ul li a{
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.about-service-list ul li:hover a{
	color: var(--accent-color);
}

.footer-contact-details .footer-info-box{
	position: relative;
	padding-left: 30px;
    margin-bottom: 30px;
}

.footer-contact-details .footer-info-box:last-child{
	margin-bottom: 0;
}

.footer-info-box .icon-box{
	position: absolute;
	top: -2px;
	left: 0;
}

.footer-info-box .icon-box img{
	max-width: 20px;
}

.footer-info-box-content p{
	color: var(--white-color);
	margin-bottom: 0;
}

.footer-copyright {
    border-top: 1px solid rgb(37 173 172 / 50%);
    padding: 15px 0;
    text-align: center;
}

.footer-copyright-text p{
	color: var(--white-color);
	margin: 0;
}

.footer-links ul{
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: end;
}

.footer-links ul li{
	display: inline-block;
	margin-right: 40px;
}

.footer-links ul li:last-child{
	margin-right: 0;
}

.footer-links ul li a{
	color: var(--white-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.footer-links ul li:hover a{
	color: var(--accent-color);
}



/************************************/
/***      13. Our Blog css	      ***/
/************************************/

.our-blog{
	padding: 50px 0 50px;
}

.blog-item{
	border: 1px solid var(--divider-color);
	border-radius: 16px;
	box-shadow: 5px 28px 75px 4px var(--box-shadow-color);
	overflow: hidden;
	margin-bottom: 30px;
	height: calc(100% - 30px);
}

.blog-item .post-item-content{
	padding: 30px;
}

.post-featured-image figure a{
	display: block;
	cursor: pointer;
}

.blog-item .post-featured-image img{
	aspect-ratio: 1 / 0.6;
	object-fit: cover;
	transition: all 0.5s ease-in-out;
	width: 100%;
}

.blog-item:hover .post-featured-image img{
	transform: scale(1.1);
}

.post-item-body h2{
	font-size: 20px;
	color: var(--primary-color);
	line-height: 1.4em;
	margin-bottom: 20px;
}

.post-item-body h2 a{
	color: inherit;
}

.post-item-body p{
	margin-bottom: 20px;
}

.post-item-footer a{
	background-color: var(--accent-color);
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.post-item-footer a img{
	max-width: 20px;
	transition: all 0.4s ease-in-out;
	transform: rotate(-45deg);
}

.blog-item:hover .post-item-footer a img{
	transform: rotate(0deg);
}









@media only screen and (max-width: 768px){
    .cta-box-content h1 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 15px;
    }
    
    .section-title {
        margin-bottom: 25px;
    }
    
    .gallery-scrolling-content .gallery-image img {
        width: 150px;
    }
    
    .gallery-scrolling-content h5 {
        font-size: 14px;
    }
    
	.main-footer{
		padding: 50px 0 0;
	}

	.footer-logo{
		margin-bottom: 20px;
	}
	
	.about-footer-content{
		margin-bottom: 20px;
	}

	.about-footer{
		margin-bottom: 30px;
	}

	.about-working-hour,
	.about-service-list{
		margin-left: 0;
	}

	.about-working-hour h3,
	.about-service-list h3,
	.footer-contact h3{
		font-size: 20px;
		margin-bottom: 20px;
	}

	.footer-contact-details .footer-info-box{
		margin-bottom: 20px;
	}

	.footer-copyright {
        padding: 30px 0 80px 0;
        margin-top: 30px;
    }
	
	.about-working-hour, .about-service-list {
        margin-left: 0;
        margin-bottom: 30px;
    }
    
    .footer-info-box-content p {
        font-size: 16px;
        line-height: 25px;
    }
    
    .about-footer-content p {
        font-size: 16px;
        line-height: 25px;
    }
    
    .footer-copyright-text p {
        font-size: 16px;
        line-height: 25px;
        margin-bottom: 20px;
    }
    
    .footer-links ul {
        text-align: start;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        grid-gap: 10px;
        flex-wrap: wrap;
    }
    
    .footer-links ul li {
        margin-right: 10px;
    }
}












.section-title{
    margin-bottom: 20px;
}

.section-title h3 {
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 1.3em;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.section-title h1,
.section-title h2{
    font-size: 46px;
	letter-spacing: -0.02em;
	color: var(--primary-color);
	cursor: auto;
}

.section-title h1 span,
.section-title h2 span{
	color: var(--accent-color);
}

.section-title p{
    color: var(--text-color);
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    
}



/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero{
	background-color: var(--secondary-color);
	padding: 100px 0;
}

.hero-content{
	padding-right: 80px;
}

.hero-content .section-title.hero-content-title h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 70px;
}

.hero-image{
	text-align: center;
}

.hero-content-body p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 28px;
}

.hero-content-footer{
	display: flex;
	align-items: center;
}

.wide-client{
	display: flex;
	align-items: center;
	margin-left: 20px;
}

.wide-client-image{
	margin-right: 10px;
}

.wide-client-image img{
	width: 136px;
}

.wide-client-content{
	width: calc(100% - 146px);
}

.wide-client-content p{
	font-size: 14px;
	font-weight: 600;
	color: var(--primary-color);
	text-transform: capitalize;
	max-width: 100px;
	margin: 0;
}

.hero-image{
	position: relative;
}

.company-sales{
	position: absolute;
	bottom: 0;
	left: 0;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 17px;
	padding: 15px 25px 15px 15px;
	animation: salesmoveobject 3s infinite linear alternate;
}

@keyframes salesmoveobject{
	50%{
		left: 50px;
	}
}

.company-sales .icon-box{
	margin-right: 15px;
}

.company-sales .icon-box img{
	width: 50px;
}

.company-sales-content{
	width: calc(100% - 65px);
	text-align: left;
}

.company-sales-content h3{
	font-size: 18px;
	font-weight: 500;
}

.company-sales-content p{
	text-transform: capitalize;
	margin: 0;
}

.company-visit{
	position: absolute;
	top: 0;
	right: 0;
	transform: translateY(50%);
	display: flex;
	align-items: center;
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 17px;
	padding: 15px 25px 15px 15px;
	animation: visitmoveobject 3s infinite linear alternate;
}

@keyframes visitmoveobject{
	50%{
		right: 30px;
	}
}

.company-visit .icon-box{
	margin-right: 15px;
}

.company-visit .icon-box img{
	width: 50px;
}

.company-visit-content{
	width: calc(100% - 65px);
	text-align: left;
}

.company-visit-content h3{
	font-size: 18px;
	font-weight: 500;
}

.company-visit-content p{
	text-transform: capitalize;
	margin: 0;
}

@media only screen and (max-width: 768px){
    
	.hero{
		padding: 50px 0;
	}

	.hero-content{
		padding-right: 0px;
		margin-bottom: 30px;
	}

	.hero-content .section-title.hero-content-title h1{
		font-size: 46px;
	}

}




/************************************/
/***       05. About Us css	      ***/
/************************************/

.about-us{
	position: relative;
	background: url('../images/section-bg-img-1.png') no-repeat;
	background-position: right -100px bottom -100px;
	padding: 100px 0;
}

.about-image{
	position: relative;
}

.about-img{
	text-align: center;
}

.about-img img{
    border-radius: 10px;
}

.company-experience{
	position: absolute;
	top: 0%;
	left: 0;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 17px;
	padding: 15px 25px 15px 15px;
	animation: expmoveobject 3s infinite linear alternate;
}

@keyframes expmoveobject{
	50%{
		left: 50px;
	}
}

.company-experience .icon-box{
	margin-right: 15px;
}

.company-experience .icon-box img{
	width: 50px;
}

.company-experience-content{
	width: calc(100% - 65px);
	text-align: left;
}

.company-experience-content h3{
	font-size: 18px;
	font-weight: 500;
}

.company-experience-content p{
	text-transform: capitalize;
	margin: 0;
}

.about-content{
	padding-left: 80px;
}

.about-content-body{
	margin-bottom: 30px;
}

.about-content-body ul{
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
    flex-wrap: wrap;
	gap: 20px;
}

.about-content-body ul li{
	position: relative;
	width: calc(50% - 10px);
	font-size: 18px;
	font-weight: 500;
	color: var(--primary-color);
	text-transform: capitalize;
	padding-left: 30px;
}

.about-content-body ul li:before{
    content: '\f058';
    font-family: "Font Awesome 5 Free";
    color: var(--accent-color);
    font-size: 20px;
    font-weight: 900;
    position: absolute;
    top: 0;
    left: 0;
}




.our-service-gold{
	background: var(--secondary-color);
	padding: 100px 0 70px;
}

.service-item-gold{
	background-color: var(--white-color);
	box-shadow: 0px 10px 30px 0px #00000008;
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
}

.service-header-gold{
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.service-item-box-gold{
	display: flex;
	align-items: center;
}

.service-item-box-gold .icon-box{
	position: relative;
	background-color: var(--accent-color);
	border-radius: 10px;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-right: 15px;
	transition: all 0.5s ease-in-out;
}

.service-item-box-gold .icon-box::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--primary-color);
    border-radius: 10px;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.service-item-gold:hover .service-item-box-gold .icon-box::before{
	transform: scale(1);
}

.service-item-box-gold .icon-box img{
	position: relative;
	width: 100%;
	max-width: 25px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.service-item-gold:hover .service-item-box-gold .icon-box img{
	filter: brightness(0) invert(1);
}

.service-item-content-gold{
	width: calc(100% - 65px);
}

.service-item-content-gold h3{
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
}

.service-readmore-gold{
	margin-left: 10px;
}

.service-readmore-gold img{
	width: 100%;
	max-width: 30px;
	transition: all 0.3s ease-in-out;
}


.service-body-gold{
	margin-bottom: 30px;
}

.service-body-gold p{
	margin: 0;
}

.service-image-gold{
	border-radius: 20px;
	overflow: hidden;
}

.service-image-gold a{
	cursor: none;
}

.service-image-gold figure{
	display: block;
	border-radius: 20px;
}

.service-image-gold img{
	aspect-ratio: 1 / 0.67;
	object-fit: cover;
	border-radius: 20px;
	transition: all 0.5s ease-out;
}

.service-item-gold:hover .service-image-gold img{
	transform: scale(1.1)
}




/* ---- Hero ---- */
.hero-section {
  background: #fff;
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}
.hero-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.1;
}
.hero-subtitle {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.3;
}
.hero-desc {
  font-size: 15px;
  color: #727272;
  line-height: 1.7;
  max-width: 480px;
}
 
/* Illustration */
.hero-illustration {
  position: relative;
  display: inline-block;
}
.monitor-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}
.monitor-screen {
  width: 280px;
  background: var(--primary-color);
  border-radius: 12px 12px 0 0;
  padding: 12px;
  border: 3px solid #2d3345;
  box-shadow: 0 8px 32px rgba(33,37,47,.18);
}
.screen-bar {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.dot.red    { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green  { background: #28c840; }
.screen-content {
  background: #fff;
  border-radius: 6px;
  padding: 12px;
  min-height: 120px;
}
.screen-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.screen-block {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.screen-block.warn  { background: #fff3cd; color: #f59f00; }
.screen-block.alert { background: #fde8e8; color: #e44848; }
.screen-lines { flex: 1; padding-top: 4px; }
.sline {
  height: 8px;
  background: var(--secondary-color);
  border-radius: 4px;
  margin-bottom: 6px;
}
.sline.w80 { width: 80%; }
.sline.w55 { width: 55%; }
.sline.w70 { width: 70%; }
.sline.w45 { width: 45%; }
.screen-progress { }
.prog-bar {
  height: 8px;
  background: linear-gradient(90deg, var(--accent-color) 60%, var(--secondary-color) 60%);
  border-radius: 4px;
}
.monitor-stand {
  width: 40px;
  height: 18px;
  background: #c5cad6;
  clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
}
.monitor-base {
  width: 90px;
  height: 10px;
  background: #b0b7c3;
  border-radius: 6px;
}
.lock-badge {
  position: absolute;
  top: -12px;
  right: -16px;
  width: 52px;
  height: 52px;
  background: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--accent-color);
  box-shadow: 0 4px 16px rgba(15,87,251,.15);
  border: 2px solid #fff;
  z-index: 5;
}
.leaf {
  position: absolute;
  bottom: 0;
  border-radius: 50%;
  background: #7bc47b;
  opacity: .75;
}
.leaf-1 {
  right: -30px;
  bottom: 20px;
  width: 28px;
  height: 44px;
  background: #5daa5d;
}
.leaf-2 {
  right: -14px;
  bottom: 10px;
  width: 18px;
  height: 30px;
  background: #82c982;
}
 
/* ---- Service Cards ---- */
.service-cards-section {
  background: #fff;
  padding-bottom: 20px !important;
}
.service-card {
  background: #fff;
  border: 1.5px solid #e8eaf0;
  border-radius: 14px;
  padding: 28px 28px 28px 28px;
  transition: box-shadow .25s, border-color .25s;
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(15,87,251,.10);
  border-color: #c0ccf8;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 15px;
}
.stripe-logo .stripe-text {
  font-family: 'Lato', sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: #635bff;
  letter-spacing: -1px;
}
.paypal-logo {
  color: #003087;
  font-size: 22px;
  font-weight: 800;
  gap: 5px;
}
.paypal-logo i { color: #009cde; font-size: 20px; }
.paypal-logo span { color: #003087; font-weight: 800; font-size: 20px; }
.service-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.3;
}
.service-card-desc {
  color: #727272;
  font-size: 15px;
  line-height: 1.6;
}
.btn-stripe {
  background: #f5c518;
  color: #1a1a1a !important;
  font-weight: 700;
  font-size: 15px;
  padding: 10px 22px;
  border-radius: 8px;
  border: none;
  transition: background .2s, transform .15s;
}
.btn-stripe:hover { background: #e6b800; transform: translateY(-1px); }
.btn-paypal {
  background: var(--accent-color);
  color: #fff !important;
  font-weight: 700;
  font-size: 15px;
  padding: 10px 22px;
  border-radius: 8px;
  border: none;
  transition: background .2s, transform .15s;
}
.btn-paypal:hover { background: #0a44c8; transform: translateY(-1px); }
 
/* ---- Problems Section ---- */
.problems-section {
  background: var(--secondary-color);
  padding-top: 56px !important;
  padding-bottom: 64px !important;
}
.section-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-color);
}
.section-subtitle {
  font-size: 15px;
  color: #9a9a9a;
  margin-top: 4px;
}
.problems-column {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid #e8eaf0;
}
.column-header {
  padding: 14px 22px;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
}
.stripe-header {
  background: #635bff;
  color: #fff;
}
.stripe-text-header {
  font-family: 'Lato', sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #fff;
}
.paypal-header {
  background: var(--primary-color);
  color: #fff;
}
.paypal-header i { color: #009cde; }
.problems-list { padding: 0 0 4px; }
.problem-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  border-bottom: 1px solid #f0f2f8;
  transition: background .18s;
}
.problem-item:hover { background: #f8f9ff; }
.problem-item.no-border { border-bottom: none; }
.problem-info { flex: 1; min-width: 0; }
.problem-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 4px;
  line-height: 1.4;
}
.problem-title strong { font-weight: 700; }
.problem-desc {
  font-size: 12px;
  color: #aaa;
  margin: 0;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.btn-read-more {
  background: transparent;
  color: #727272 !important;
  border: 1.5px solid #dde0ea;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  white-space: nowrap;
  transition: border-color .2s, color .2s, background .2s;
  flex-shrink: 0;
}
.btn-read-more:hover {
  border-color: var(--accent-color);
  color: var(--accent-color) !important;
  background: #f0f4ff;
}
.btn-load-more {
  background: #fff;
  color: #555 !important;
  border: 1.5px solid #dde0ea;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 36px;
  transition: border-color .2s, box-shadow .2s;
}
.btn-load-more:hover {
  border-color: var(--accent-color);
  box-shadow: 0 4px 16px rgba(15,87,251,.08);
  color: var(--accent-color) !important;
}
 
/* Responsive */
@media (max-width: 767px) {
  .hero-title { font-size: 30px; }
  .hero-subtitle { font-size: 18px; }
  .monitor-screen { width: 220px; }
  .service-card { padding: 20px; }
  .section-title { font-size: 24px; }
  .problem-item { flex-direction: column; align-items: flex-start; }
  .btn-read-more { align-self: flex-start; }
}




.page-header{
	position: relative;
	padding: 175px 0px;
	background: linear-gradient(179.5deg, var(--primary-color) 0.06%, #00000036 90.6%), url(../images/breadcrumb.jpg) no-repeat center center;
	background-size: cover;
}

.page-header-box{
	position: relative;
	z-index: 1;
	text-align: center;
}

.page-header-box h1{
	color: var(--white-color);
	font-size: 56px;
	letter-spacing: -0.02em;
    margin-bottom: 20px;
	cursor: none;
}

.page-header-box ol{
	margin: 0;
	padding: 0;
	justify-content: center;
}

.page-header-box ol li.breadcrumb-item{
	color: var(--white-color);
	font-size: 16px;
	line-height: 1.1em;
	text-transform: capitalize;
}

.page-header-box ol li.breadcrumb-item a{
    color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
    color: var(--white-color);
}



.page-service-single{
    padding: 100px 0;
}

.service-feature-image{
    margin-bottom: 20px;
}

.service-feature-image figure{
    display: block;
}

.service-feature-image img{
    width: 100%;
    aspect-ratio: 1 / 0.495;
    object-fit: cover;
}

.service-entry,
.why-choose-content.service-single-why-choose{
    margin: 0 0 40px 0;
}

.service-entry h2{
	font-size: 46px;
    font-weight: 700;
    letter-spacing: -0.02em;
	margin-bottom: 20px;
}

.service-entry h2 span{
	color: var(--accent-color);
}

.service-entry p{
    margin-bottom: 20px;
}

.service-entry p:last-child{
    margin-bottom: 0;
}

.service-entry ul{
    list-style: none;
    margin-bottom: 20px;
    padding: 0;
}

.service-entry ul li{
	position: relative;
    text-transform: capitalize;
	padding-left: 25px;
	margin-bottom: 15px;
}

.service-entry ul li:last-child{
	margin-bottom: 0;
}

.service-entry ul li::before{
    content: '\f058';
    position: absolute;
    font-family: 'FontAwesome';
    font-size: 18px;
    font-weight: 900;
    line-height: normal;
    color: var(--accent-color);
    display: inline-block;
    top: 50%;
    left: 0;
	transform: translateY(-50%);
}

.service-entry-list-image{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
    margin-top: 40px;
}

.service-entry-image{
    width: calc(55% - 15px);
}

.service-entry-image figure{
	display: block;
}

.service-entry-image img{
	width: 100%;
	aspect-ratio: 1 / 0.641;
	object-fit: cover;
}

.service-entry-list{
	width: calc(45% - 15px);
}

.service-entry-list ul{
	margin-bottom: 0;
}