:root {
	--accent-color-rgb: 232, 69, 69;
	--accent-color: #ffc107; /* #7E587E blog post color*/
	--background-color-rgb: 255, 255, 255;
	--background-color: #ffffff;
	--black-rgb: 0, 0, 0;
	--contrast-color-rgb: 255, 255, 255;
	--contrast-color: #ffffff;
	--default-color-rgb: 33, 37, 41;
	--default-color: #212529;
	--default-font: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	--heading-color-rgb: 50, 53, 58;
	--heading-color: #32353a;
	--heading-font: "Montserrat", sans-serif;
	--nav-color: #3a3939;
	--nav-dropdown-background-color: #ffffff;
	--nav-dropdown-color: #3a3939;
	--nav-dropdown-hover-color: #ffc107;
	--nav-font: "Lato", sans-serif;
	--nav-hover-color: #ffc107;
	--dark-background-color-rgb: 33, 37, 41;
	--dark-background-color-opacity: 0.8;
	scroll-behavior: smooth;
  }
  
  /*--------------------------------------------------------------
  # General
  --------------------------------------------------------------*/
  a {
	color: var(--accent-color);
	text-decoration: none;
	transition: 0.3s;
  }
  
  a:hover {
	color: black;
	text-decoration: none;
  }
  
  body {
	background-color: var(--background-color);
	color: var(--default-color);
	font-family: var(--default-font);
  }
  
  h1, h2, h3 {
	color: var(--heading-color);
	font-family: var(--heading-font);
	font-weight: 700;
  }
  
  h4, h5, h6 {
	color: var(--heading-color);
	font-family: var(--heading-font);
	font-weight: 500;
  }
  
  /*--------------------------------------------------------------
  # Global Header
  --------------------------------------------------------------*/
  .header {
	--background-color: #ffffff;
	background-color: var(--background-color);
	color: var(--default-color);
	padding: 15px 0;
	transition: all 0.5s;
	z-index: 997;
	display: flex;
	justify-content: center;
	align-items: center;
  }
  
  .header .btn-getstarted,
  .header .btn-getstarted:focus {
	background: var(--accent-color);
	border-radius: 4px;
	color: var(--contrast-color);
	font-size: 0.875rem; /* 14px = 0.875rem */
	margin: 0;
	padding: 8px 26px;
	transition: 0.3s;
  }
  
  .header .btn-getstarted:focus:hover,
  .header .btn-getstarted:hover {
	background: black;
	color: var(--contrast-color);
  }
  
  .header .logo {
	display: flex;
	align-items: center;
  }
  
  .header .logo a {
	min-width: 290px;
	width: 100%;
	margin: 0 auto;
  }
  
  .header .logo h1 {
	color: var(--heading-color);
	font-size: clamp(1rem, 3vw, 1.5rem);
	font-weight: 600;
	margin: auto;
	text-align: center;
  }
  
  .header .logo img {
	max-height: 40px;
	margin: 0 auto;
  }
  
  .header .logo span {
	color: var(--accent-color);
	font-size: clamp(1rem, 2vw, 1.5rem);
	font-weight: 600;
	padding-left: 3px;
	margin: 0 auto;
  }
  
  .social i {
	color: #000000;
	z-index: 998;
  }
  
  .social i:hover {
	color: var(--accent-color);
  }
  
  @media (max-width: 1200px) {
	.header .btn-getstarted {
	  margin: 0 15px 0 0;
	  order: 2;
	  padding: 6px 20px;
	}
  
	.header .logo {
	  order: 1;
	}
  
	.header .navmenu {
	  order: 3;
	}
  }
  
/* Global Header on page scroll
------------------------------*/
.scrolled .header {
	--background-color: #ffffff;
	--heading-color: #444444;
	--nav-color: #444444;
	--nav-hover-color: #e84545;
	box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.1);
  }
  
  /* Global Scroll Margin Top
  ------------------------------*/
  section {
	scroll-margin-top: 90px;
  }
  
  @media (max-width: 1199px) {
	section {
	  scroll-margin-top: 66px;
	}
  }
  
/* Home Page Custom Header
  ------------------------------*/
  .index-page .header {
	--background-color: rgba(255, 255, 255, 0);
	--heading-color: #ffffff;
	--nav-color: rgba(255, 255, 255, 0.515);
	--nav-hover-color: #ffffff;
  }
  
  /* Home Page Custom Header on page scroll
  ------------------------------*/
  .index-page.scrolled .header {
	--background-color: #ffffff;
	--heading-color: #444444;
	--nav-color: #444444;
	--nav-hover-color: #d83535;
  }
  
  /*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
  /* Desktop Navigation */
  @media (min-width: 1200px) {
	.hamburger_social {
	  display: none;
	}
  
	.navmenu {
	  padding: 0;
	}
  
	.navmenu .active,
	.navmenu .active:focus,
	.navmenu li:hover > a {
	  color: #ffc107;
	}
  
	.navmenu .dd-box-shadow {
	  box-shadow: 0px 0px 30px rgba(var(--default-color-rgb), 0.15);
	}
  
	.navmenu .dropdown .dropdown ul {
	  left: -90%;
	  top: 0;
	  visibility: hidden;
	}
  
	.navmenu .dropdown .dropdown:hover > ul {
	  left: -100%;
	  opacity: 1;
	  top: 0;
	  visibility: visible;
	}
  
	.navmenu .dropdown ul {
	  background: var(--nav-dropdown-background-color);
	  border-radius: 4px;
	  display: block;
	  left: 14px;
	  margin: 0;
	  opacity: 0;
	  padding: 10px 0;
	  position: absolute;
	  top: 130%;
	  transition: 0.3s;
	  visibility: hidden;
	  z-index: 99;
	}
  
	.navmenu .dropdown ul .active:hover,
	.navmenu .dropdown ul a:hover,
	.navmenu .dropdown ul li:hover > a {
	  color: var(--nav-dropdown-hover-color);
	}
  
	.navmenu .dropdown ul a {
	  color: var(--nav-dropdown-color);
	  font-size: clamp(0.6rem, 1vw, 1rem);
	  padding: 10px 20px;
	  text-transform: none;
	  list-style: none;
	}
  
	.navmenu .dropdown ul a i, .navmenu .megamenu ul li a, .navmenu a i, .navmenu a:focus i, .mobile-nav-active .mobile-nav-toggle, .mobile-nav-toggle, .mobile-nav-active .navmenu ul a  {
	  font-size: 0.75rem; /* 12px = 0.75rem */
	}
  
	.navmenu .dropdown ul li {
	  min-width: 200px;
	}
  
	.navmenu .dropdown:hover > ul {
	  opacity: 1;
	  top: 100%;
	  visibility: visible;
	}
  
	.navmenu .megamenu {
	  position: static;
	}
  
	.navmenu .megamenu ul {
	  background: var(--nav-dropdown-background-color);
	  border-radius: 4px;
	  box-shadow: 0px 0px 20px rgba(var(--default-color-rgb), 0.1);
	  display: block;
	  display: flex;
	  left: 0;
	  margin: 0;
	  opacity: 0;
	  padding: 10px;
	  position: absolute;
	  right: 0;
	  top: 130%;
	  transition: 0.3s;
	  visibility: hidden;
	  z-index: 99;
	}
  
	.navmenu .megamenu ul li {
	  flex: 1;
	}
  
	.navmenu .megamenu ul li .active,
	.navmenu .megamenu ul li .active:hover,
	.navmenu .megamenu ul li a:hover {
	  color: var(--nav-dropdown-hover-color);
	}
  
	.navmenu .megamenu ul li a,
	.navmenu .megamenu ul li:hover > a {
	  color: var(--nav-dropdown-color);
	  font-size: 0.9375rem; /* 15px = 0.9375rem */
	  padding: 10px 20px;
	}
  
	.navmenu .megamenu:hover > ul {
	  opacity: 1;
	  top: 100%;
	  visibility: visible;
	}
  
	.navmenu a i,
	.navmenu a:focus i {
	  line-height: 0;
	  margin-left: 5px;
	  transition: 0.3s;
	}
  
	.navmenu a,
	.navmenu a:focus {
	  align-items: center;
	  color: #000000;
	  display: flex;
	  font-family: var(--nav-font);
	  font-size: 1rem; /* 16px = 1rem */
	  font-weight: 400;
	  justify-content: space-between;
	  padding: 18px 15px;
	  transition: 0.3s;
	  white-space: nowrap;
	}
  
	.navmenu li {
	  position: relative;
	}
  
	.navmenu li:last-child a {
	  padding-right: 0;
	}
  
	.navmenu ul {
	  align-items: center;
	  display: flex;
	  list-style: none;
	  margin: 0;
	  padding: 0;
	}
  }
  
  /* Mobile Navigation */
  @media (max-width: 1199px) {
	.hamburger_social {
	  display: flex;
	  justify-content: space-around;
	  max-width: 100%;
	  justify-content: center;
	flex: 1 0 20%; /* Each item takes up about one-fifth of the row for centered effect */
    box-sizing: border-box; /* Ensure padding and borders are included in the width calculations */
	}
  
	.mobile-nav-active {
	  overflow: hidden;
	}
  
	.mobile-nav-active .mobile-nav-toggle {
	  color: #fff;
	  position: absolute;
	  right: 15px;
	  top: 15px;
	  z-index: 9999;
	}
  
	.mobile-nav-active .navmenu {
	  background: rgba(33, 37, 41, 0.8);
	  inset: 0;
	  overflow: hidden;
	  position: fixed;
	  transition: 0.3s;
	}
  
	.mobile-nav-active .navmenu > ul {
	  display: block;
	}
  
	.mobile-nav-toggle {
	  color: var(--nav-color);
	  cursor: pointer;
	  line-height: 0;
	  margin-right: 10px;
	  transition: color 0.3s;
	}
  
	.navmenu {
	  padding: 0;
	  z-index: 9997;
	}
  
	.navmenu .active i,
	.navmenu .active:focus i {
	  background-color: var(--accent-color);
	  color: var(--contrast-color);
	  transform: rotate(180deg);
	}
  
	.navmenu .active,
	.navmenu .active:focus,
	.navmenu a:hover {
	  color: var(--nav-dropdown-hover-color);
	}
  
	.navmenu .dropdown ul ul,
	.navmenu .megamenu ul ul {
	  background-color: rgba(33, 37, 41, 0.1);
	}
  
	.navmenu .dropdown ul,
	.navmenu .megamenu ul {
	  background-color: var(--nav-dropdown-background-color);
	  display: none;
	  margin: 10px 30px;
	  padding: 10px 0;
	  position: static;
	  transition: all 0.5s ease-in-out;
	  z-index: 99;
	}
  
	.navmenu .dropdown > .dropdown-active,
	.navmenu .megamenu > .dropdown-active {
	  background-color: rgba(33, 37, 41, 0.03);
	  display: block;
	}
  
	.navmenu a i,
	.navmenu a:focus i {
	  align-items: center;
	  background-color: rgba(var(black), 0.1);
	  border-radius: 50%;
	  display: flex;
	  height: 30px;
	  justify-content: center;
	  line-height: 0;
	  margin-left: 5px;
	  transition: 0.3s;
	  width: 30px;
	}
  
	.navmenu a i:hover,
	.navmenu a:focus i:hover {
	  background-color: var(--accent-color);
	  color: var(--contrast-color);
	}
  
	.navmenu a,
	.navmenu a:focus {
	  align-items: center;
	  color: var(--nav-dropdown-color);
	  display: flex;
	  font-family: var(--nav-font);
	  font-size: 1rem; /* 16px = 1rem */
	  font-weight: 500;
	  justify-content: space-between;
	  padding: 10px 20px;
	  transition: 0.3s;
	  white-space: nowrap;
	}
  
	.navmenu ul {
	  background-color: var(--nav-dropdown-background-color);
	  border-radius: 6px;
	  box-shadow: 0px 0px 30px rgba(var(--default-color-rgb), 0.1);
	  display: none;
	  inset: 60px 20px 20px 20px;
	  margin: 0;
	  overflow-y: auto;
	  padding: 10px 0;
	  position: absolute;
	  transition: 0.3s;
	  z-index: 9998;
	  list-style: none;
	}
  }
  
  /* Logo, Name and Dot Centering in Screen Lower than 1200 */
@media (max-width: 1199px) {
  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
  }
}
  @media (max-width: 1300px) {
	.social {
	  display: flex;
	  flex-wrap: wrap;
	  justify-content: space-around;
	  max-width: 78px;
	}
  }
  
  @media (max-width: 768px) {
	.social {
	  display: flex;
	  flex-wrap: wrap;
	  justify-content: space-around;
	  max-width: 55px;
	  margin: auto 30px auto 5px;
	}
  }
  
  @media (max-width: 480px) {
	.social {
	  margin: auto 10px auto 5px;
	}
  }   
  
	
  
 /*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
	position: fixed;
	inset: 0;
	z-index: 9999;
	overflow: hidden;
	background-color: var(--background-color);
	transition: all 0.6s ease-out;
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
  }
  
  #preloader div {
	width: 13px;
	height: 13px;
	background-color: var(--accent-color);
	border-radius: 50%;
	animation-timing-function: cubic-bezier(0, 1, 1, 0);
	position: absolute;
	left: 50%;
  }
  
  #preloader div:nth-child(1) {
	left: calc(50% + 8px);
	animation: animate-preloader-1 0.6s infinite;
  }
  
  #preloader div:nth-child(2) {
	left: calc(50% + 8px);
	animation: animate-preloader-2 0.6s infinite;
  }
  
  #preloader div:nth-child(3) {
	left: calc(50% + 32px);
	animation: animate-preloader-2 0.6s infinite;
  }
  
  #preloader div:nth-child(4) {
	left: calc(50% + 56px);
	animation: animate-preloader-3 0.6s infinite;
  }
  
  @keyframes animate-preloader-1 {
	0% {
	  transform: scale(0);
	}
  
	100% {
	  transform: scale(1);
	}
  }
  
  @keyframes animate-preloader-3 {
	0% {
	  transform: scale(1);
	}
  
	100% {
	  transform: scale(0);
	}
  }
  
  @keyframes animate-preloader-2 {
	0% {
	  transform: translate(0, 0);
	}
  
	100% {
	  transform: translate(24px, 0);
	}
  }
  
  /*--------------------------------------------------------------
  # Disable aos animation delay on mobile devices
  --------------------------------------------------------------*/
  @media screen and (max-width: 768px) {
	[data-aos-delay] {
	  transition-delay: 0 !important;
	}
  }
  
  /*--------------------------------------------------------------
  # Sections
  --------------------------------------------------------------*/
  section,
  .section {
	color: var(--default-color);
	background-color: var(--background-color);
	padding: 20px 0;
	overflow: clip;
  }
  
/*--------------------------------------------------------------
# Section Title
--------------------------------------------------------------*/
.section-title {
	text-align: center;
  }
  
  .section-title h2 {
	font-size: clamp(1.25rem, 3.5vw, 1.75rem); /* 20px to 28px */
	padding: 30px;
	position: relative;
	display: inline-block; /* Ensures lines are positioned relative to text width */
  }
  
  .section-title p {
	font-size: clamp(0.75rem, 2.5vw, 1rem); /* 12px to 16px */
  }
  
  .section-title h2:before,
  .section-title h2:after {
	background: var(--accent-color);
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	height: 2px;
  }
  
  .section-title h2:before {
	left: -65px; /* Width of the line + spacing */
	width: 50px;
  }
  
  .section-title h2:after {
	right: -65px; /* Width of the line + spacing */
	width: 50px;
  }
  
  @media (max-width: 480px) {
	.section-title h2 {
	  margin-left: 35px; /* Width of the line */
	  margin-right: 35px; /* Width of the line */
	}
  
	.section-title h2:before,
	.section-title h2:after {
	  width: 20px;
	}
  
	.section-title h2:before {
	  left: -35px; /* Width of the line + spacing */
	}
  
	.section-title h2:after {
	  right: -35px; /* Width of the line + spacing */
	}
  }
  
  .service-info h3 {
	font-size: clamp(1.125rem, 3vw, 1.5rem); /* 18px to 24px */
	font-weight: 500;
	text-align: center;
  }



/*--------------------------------------------------------------
# Page Title & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
	color: var(--default-color);
	background-color: var(--background-color);
  }
  
  .page-title .heading {
	padding: 30px 0;
	border-top: 1px solid rgba(var(--default-color-rgb), 0.1);
  }
  
  .page-title .heading h1 {
	font-size: 2.375rem; /* 38px = 2.375rem */
	color: var(--heading-color);
  }
  
  .page-title nav {
	background-color: rgba(var(--default-color-rgb), 0.05);
	padding: 20px 0;
  }
  
  .page-title nav ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	font-size: 1rem; /* 16px = 1rem */
	font-weight: 600;
  }
  
  .page-title nav ol li+li {
	padding-left: 10px;
  }
  
  .page-title nav ol li+li::before {
	content: "/";
	display: inline-block;
	padding-right: 10px;
	color: rgba(var(--default-color-rgb), 0.3);
  }

  
/*--------------------------------------------------------------
# Wrapper and Cards
--------------------------------------------------------------*/
.wrapper1 {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
  }
  
  .wrapper1 .card {
	background: #fff;
	width: calc(33% - 20px);
	height: 300px;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	flex-direction: column;
	box-shadow: 0px 10px 15px rgba(var(--black-rgb),0.1);
  }
  
  .wrapper1 .card .circle {
	position: relative;
	height: 150px;
	width: 150px;
	border-radius: 50%;
	cursor: default;
  }
  
  .wrapper1 .card .circle .box,
  .card .circle .box span {
	position: absolute;
	top: 50%;
	left: 50%;
  }
  
  .wrapper1 .card .circle .box {
	height: 100%;
	width: 100%;
	background: #fff;
	border-radius: 50%;
	transform: translate(-50%, -50%) scale(0.8);
	transition: all 0.2s;
  }
  
  .card .circle:hover .box {
	transform: translate(-50%, -50%) scale(0.91);
  }

  .card .circle .box span,
.wrapper1 .card .text {
  background: black;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.circle .box span {
  font-size: 2.375rem; /* 38px = 2.375rem */
  font-family: sans-serif;
  font-weight: 600;
  transform: translate(-45%, -45%);
  transition: all 0.1s;
}

.card .circle:hover .box span {
  transform: translate(-45%, -45%) scale(1.09);
}

.card .text {
  font-size: 1.25rem; /* 20px = 1.25rem */
  font-weight: 600;
}

/* Media Queries */
@media (max-width: 753px) {
  .wrapper1 {
    max-width: 700px;
  }

  .wrapper1 .card {
    width: calc(50% - 20px);
    margin-bottom: 20px;
  }
}

@media (max-width: 505px) {
  .wrapper1 {
    max-width: 500px;
  }

  .wrapper1 .card {
    width: 100%;
  }

}

/*--------------------------------------------------------------
# Home/Hero Page
--------------------------------------------------------------*/
.hero {
	--default-color: #ffffff;
	--default-color-rgb: 255, 255, 255;
	--background-color: #000000;
	--background-color-rgb: var(--black-rgb);
	width: 100%;
	height: 100vh;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0; /* Removed padding to keep elements within viewport height */
  }
  
  .hero .bg-div {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
  }
  
  .hero-img-div {
	max-width: 30%;
  }
  
  .hero:before {
	content: "";
	background: rgba(255, 255, 255, 0.5); /* Corrected the RGBA syntax */
	position: absolute;
	inset: 0;
	z-index: 2;
  }
  
  .hero .container {
	z-index: 3;
  }
  
  .hero .container .row {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
  }
  
  .hero .container .row .hero-txt {
	text-align: center;
  }
  
  .hero h2 {
	color: var(--contrast-color);
	margin: 0;
	font-size: clamp(1.7rem, 4vw, 4.5rem);
  }
  
  .hero h3 {
	font-size: clamp(1.432rem, 2vw, 1.75rem); /* 28px */
  }
  
  .hero p {
	font-size: clamp(0.75rem, 2.5vw, 1rem); /* 12px to 16px */
	color: rgba(var(--default-color-rgb), 0.8);
	margin-top: 20px;
  }
  
  .hero .sign-up-form {
	margin-top: 20px;
	padding: 15px;
	border-radius: 7px;
	background: #fff;
	box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.1);
  }
  
  .hero .sign-up-form .form-control {
	border: none;
  }
  
  .hero .sign-up-form .form-control:active,
  .hero .sign-up-form .form-control:focus {
	outline: none;
	box-shadow: none;
  }
  
  .hero .sign-up-form input[type=submit] {
	box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.2);
	background-color: var(--accent-color);
	border-color: var(--accent-color);
	padding: 8px 20px 10px 20px;
	border-radius: 7px;
	color: var(--contrast-color);
  }
  
  .hero .sign-up-form input[type=submit]:hover {
	background-color: black;
  }
  
  .btn-primary {
	box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.2);
	background-color: var(--accent-color);
	border-color: var(--accent-color);
	padding: 8px 20px 10px 20px;
	border-radius: 7px;
	color: var(--contrast-color);
	margin-top: 30px; /* Moved this to a new line */
  }
  
  .btn-primary:hover {
	background-color: black;
  }
  
/* ----------------------------
# About Me Section
------------------------------*/
.about {
	--background-color: #f4f4f4;
	margin: auto;
  }
  
  .about .content {
	margin: auto;
	text-align: center;
  }
  
  .about .content img {
	display: block;
	margin: auto; /* Center the image horizontally */
	max-width: 430px; /* Set maximum width */
	width: 70%; /* Allow the image to take up full width initially */
	height: auto; /* Maintain aspect ratio */
	border-radius: 50%;
	min-width: 150px;
  }
  
  .service-item h3 {
	font-size: clamp(1.125rem, 3vw, 1.5rem); /* 18px to 24px */
  }
  
  .service-item a {
	font-size: clamp(0.75rem, 2.5vw, 1rem); /* 12px to 16px */
	color: var(--accent-color);
  }
  
  .about .content p:last-child {
	margin-bottom: 0;
  }
  
  .about .par-size p,
  .about li {
	font-size: clamp(0.75rem, 2.5vw, 1rem); /* 12px to 16px */
  }
  
  .about .content .read-more {
	background: var(--accent-color);
	color: var(--contrast-color);
	font-family: var(--heading-font);
	font-weight: 500;
	font-size: clamp(0.8rem, 2.5vw, 1rem); /* 12px to 16px */
	letter-spacing: 1px;
	padding: 12px 24px;
	border-radius: 5px;
	transition: 0.3s;
	display: inline-flex;
	align-items: center;
	justify-content: center;
  }
  
  .about .content .read-more i {
	font-size: clamp(0.8rem, 2.5vw, 1rem); /* 12px to 16px */
	line-height: 0;
	transition: 0.3s;
	margin: auto;
	padding: 5px;
  }
  
  .about .content .read-more:hover {
	background: black;
  }
  
  .about .content .read-more:hover i {
	margin: auto;
  }
  
  .about .icon-box {
	padding-top: 0;
	box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	transition: all 0.3s ease-out;
	background-color: #fff;
	margin-bottom: 20px;
  }
  
  .about .icon-box i {
	width: clamp(2.375rem, 4vw, 3.75rem); /* 60px */
	height: clamp(2.375rem, 4vw, 3.75rem); /* 60px */
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: clamp(1.25rem, 3.5vw, 1.75rem); /* 20px to 28px */
	line-height: 0;
	transition: all 0.4s ease-out;
	background-color: rgba(var(--accent-color-rgb), 0.05);
	color: var(--accent-color);
  }
  
  .about .icon-box:hover i {
	background-color: var(--accent-color);
	color: var(--contrast-color);
  }
  
  /* Adjusting the media queries */
  @media (max-width: 768px) {
	.about .content img {
	  width: 50%;
	  max-width: 300px;
	  margin-bottom: 20px;
	}
	.about .content,
	.about .icon-boxes {
	  flex-direction: column;
	}
  }
  
/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .icon-box {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
	padding: 15px;
	box-sizing: border-box;
  }
  
  .services .icon-box h3,
  .services .icon-box ul {
	text-align: left;
  }
  
  .services .icon-boxes .col-md-4 {
	display: flex;
	align-items: stretch;
  }
  
  .services .icon-boxes .col-md-4 .icon-box {
	flex: 1;
  }
  
  #services .icon-box h3 {
	font-size: clamp(1.125rem, 3vw, 1.5rem); /* 18px to 24px */
	font-weight: 700;
  }
  
  .services .icon-box .icon {
	margin-bottom: 15px;
	text-align: center;
  }
  
  .services .icon-box i {
	margin-bottom: 15px;
  }
  
  .services .icon-box ul {
	list-style-type: disc;
	margin: 15px auto;
	padding-left: 0;
	text-align: left;
	display: inline-block;
  }
  
  .services .icon-box .icon i {
	color: rgba(var(--default-color-rgb), 0.7);
	font-size: clamp(1.125rem, 3vw, 1.5rem); /* 18px to 24px */
	margin-bottom: 15px;
	display: inline-block;
  }
  
  .services .icon-box ul li {
	text-align: left;
	margin-bottom: 10px;
  }
  
  .icon-boxes {
	display: flex;
	flex-wrap: wrap;
  }
  
  .icon-box,
  .icon-box-inner {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
  }
  
  /*--------------------------------------------------------------
  # Portfolio Section
  --------------------------------------------------------------*/
  .portfolio {
	background-color: #eeeded;
	margin-bottom: 0;
	min-height: 100vh;
  }
  
  .portfolio .icon-box {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 15px;
	box-sizing: border-box;
	height: 100%;
  }
  
  .portfolio .icon-box ul {
	text-align: left;
  }
  
  .portfolio .icon-box i {
	margin-bottom: 15px;
  }
  
  #portfolio .icon-box h3 {
	font-size: clamp(1.125rem, 3vw, 1.5rem); /* 18px to 24px */
	font-weight: 700;
  }
  
  .portfolio .icon-box .text-center {
	text-align: center;
  }
  
  .portfolio .responsive-img {
	display: block;
	height: auto;
	width: 100%;
	max-width: 570px;
	margin: 15px auto;
  }
  
  .portfolio .icon-boxes .col-md-6 {
	display: flex;
	align-items: stretch;
  }
  
  .portfolio .icon-boxes .col-md-6 .icon-box {
	flex: 1;
  }
  
  .portfolio .icon-box .icon i {
	color: rgba(var(--default-color-rgb), 0.7);
	font-size: clamp(1.125rem, 3vw, 1.5rem); /* 18px to 24px */
	margin-bottom: 15px;
  }
  
  .portfolio .icon-box ul {
	list-style-type: disc;
	margin: 15px auto;
	padding-left: 0;
	text-align: left;
  }
  
  .portfolio .icon-box ul li {
	text-align: left;
	margin-bottom: 8px;
  }
  
  .portfolio .flex-grow-1 {
	flex-grow: 1;
	display: flex;
	justify-content: center;
	align-items: flex-end;
  }
  
  .portfolio .text-center {
	text-align: center;
  }
  
  .portfolio .responsive-img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
  }
  
  @media (max-width: 992px) {
  
	.portfolio .icon-boxes .col-md-6 {
	  flex-basis: 100%;
	  max-width: 100%;
	}
  }
  
  @media (max-width: 575px) {
	.portfolio .portfolio-filters li {
	  margin: 0 0 10px 0;
	}
  
	.portfolio-details .swiper-button-prev,
	.portfolio-details .swiper-button-next {
	  display: none;
	}
  
  }
  

	
/* Our Partners Section - Home Page
------------------------------*/
.client-logo, .progress-bar-container {
	align-items: center;
	display: flex;
	flex-direction: column;
	flex: 0 0 25%;
	justify-content: center;
	max-width: 25%;
}

.client-stats-label {
	font-size: clamp(0.75rem, 2.5vw, 1rem); /* 12px to 16px */
	margin-top: 5px;
	text-align: center;
}

.client-stats-progress-bar {
	background-color: #eaeaea;
	border-radius: 10px;
	height: 20px;
	margin: 10px auto;
	position: relative;
	width: 100%;
}

.client-stats-progress-bar::after {
	color: white;
	content: "";
	padding-left: 3px;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
}

.client-stats-progress-bar::before {
    background-color: var(--accent-color);
    border-radius: 10px 0 0 10px;
    color: white;
    content: attr(aria-valuenow) '%';
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Align content to the end */
    height: 100%;
    padding-right: 5px; /* Add padding to move the text more to the right */
    left: 0;
    position: absolute;
    top: 0;
    transition: width 1s ease-out;
    width: calc(var(--value) * 1%);
}

.client-stats-progress-container {
	margin-bottom: 15px;
}

.clients .client-logo img {
	filter: grayscale(100);
	max-width: 80%;
	opacity: 0.5;
	padding: 15px;
	transition: 0.3s;
}

.clients .client-logo img:hover {
	opacity: 1;
}

.clients-flex-container {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}

@media (max-width: 576px) {
	.client-logo, .progress-bar-container {
		flex: 0 0 50%;
		max-width: 50%;
	}
}

@media (max-width: 992px) {
	.client-logo, .progress-bar-container {
		flex: 0 0 50%;
		max-width: 50%;
	}
}


/* Stats Section - Home Page
------------------------------*/
.stats {
	--background-color-rgb: 0, 0, 0;
	--background-color: #000000;
	--default-color-rgb: 255, 255, 255;
	--default-color: #ffffff;
	padding: 25px 0;
	position: relative;
}

.stats .container {
	position: relative;
	z-index: 3;
}

.stats .stats-item {
	padding: 20px;
	width: 100%;
}

.stats .stats-item p {
	font-weight: 500;
	color: rgba(var(--accent-color), 0.6);
	font-family: var(--heading-font);
	font-size: clamp(0.75rem, 2.5vw, 1.124rem); /* 12px to 18px */
	margin: 0;
	padding: 0;
}

.stats .stats-item span {
	display: block;
	color: var(--default-color);
	font-size: clamp(2rem,5vw,3rem);
	font-weight: 500;
}

.stats img {
	-o-object-fit: cover;
	display: block;
	height: 100%;
	inset: 0;
	object-fit: cover;
	position: absolute;
	width: 100%;
	z-index: 1;
}

.stats:before {
	background: rgba(var(--background-color-rgb), 0.6);
	content: "";
	inset: 0;
	position: absolute;
	z-index: 2;
}

.stats_data .stats_symbol {
	display: inline;
}

@media (max-width: 575px) {
	.stats .row > .col-md-6, .stats .row > .col-lg-3 {
		width: 50%;
	}
}

@media (min-width: 576px) and (max-width: 991px) {
	.stats .row > .col-lg-3 {
		width: 33.3333%;
	}

	.stats .row > .col-md-6 {
		width: 33.3333%;
	}
}

@media (min-width: 992px) {
	.stats .row > .col-lg-3 {
		width: 25%;
	}
}


/* Pricing Section - Home Page
------------------------------
.pricing {
	padding: 20px 0 20px 0;
}

.pricing .buy-btn {
	background-color: var(--contrast-color);
	border-radius: 4px;
	border: 1px solid rgba(var(--default-color-rgb), 0.2);
	color: rgba(var(--default-color-rgb), 0.8);
	display: inline-block;
	font-family: var(--heading-font);
	font-size: 1rem; /* 16px = 1rem 
	font-weight: 600;
	padding: 10px 20px;
	transition: 0.3s;
	transition: none;
}

.pricing .buy-btn:hover {
	background-color: var(--accent-color);
	color: var(--contrast-color);
}

.pricing .featured {
	border: 3px solid var(--accent-color);
	z-index: 10;
}

.pricing .featured .buy-btn {
	background-color: var(--accent-color);
	color: var(--contrast-color);
}

.pricing .featured .buy-btn:hover {
	background-color: black;
}

.pricing .icon {
	align-items: center;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	height: 70px;
	justify-content: center;
	margin: 20px auto 150px auto;
	transform-style: preserve-3d;
	transition: 0.3s;
	width: 70px;
}

.pricing .icon i {
	color: var(--background-color);
	
	line-height: 0;
	transition: ease-in-out 0.3s;
}

.pricing .icon::after {
	background: white;
	border-radius: 50%;
	content: "";
	height: 102px;
	position: absolute;
	transform: translateZ(-2px);
	transition: all 0.3s ease-out 0s;
	width: 102px;
}

.pricing .icon::before {
	background: white;
	border-radius: 50%;
	content: "";
	height: 86px;
	position: absolute;
	transform: translateZ(-1px);
	transition: all 0.3s ease-out 0s;
	width: 86px;
}

.pricing .pricing-item {
	border-radius: 15px;
	box-shadow: 0 3px 20px -2px rgba(var(--default-color-rgb), 0.1);
	height: 100%;
	padding: 40px 20px;
	position: relative;
}

.pricing .section-title {
	margin-bottom: 20px;
}

.pricing h3 {
	font-weight: 600;
	margin-bottom: 15px;
}

.pricing h4 {
	color: var(--accent-color);
	font-family: var(--heading-font);
	font-size: 3rem; /* 48px = 3rem 
	/*font-weight: 700;
	margin-bottom: 25px;
	text-align: center;
}

.pricing h4 span {
	color: rgba(var(--default-color-rgb), 0.5);
	font-size: 1.125rem; /* 18px = 1.125rem 
	font-weight: 400;
}

.pricing h4 sup {
	font-size: 1.25rem; /* 28px = 1.75rem 
}

.pricing ul {
	color: rgba(var(--default-color-rgb), 0.8);
	line-height: 20px;
	list-style: none;
	padding: 20px 0;
	text-align: left;
}

.pricing ul .na {
	color: rgba(var(--default-color-rgb), 0.3);
}

.pricing ul .na i {
	color: rgba(var(--default-color-rgb), 0.3);
}

.pricing ul .na span {
	text-decoration: line-through;
}

.pricing ul i {
	color: #059652;
	font-size: ; /* 24px = 1.5rem 
	padding-right: 3px;
}

.pricing ul li {
	align-items: center;
	display: flex;
	padding: 10px 0;
}

@media (min-width: 992px) {
	.pricing .featured {
		transform: scale(1.15);
	}
}*/


/* Faq Section - Home Page
------------------------------*/
.faq .content h3 {
    font-weight: 400;
}

.faq .content p {
    color: rgba(var(--default-color-rgb), 0.7);
}

.faq .faq-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Create 3 equal columns */
    gap: 20px; /* Spacing between FAQ items */
    align-items: stretch; /* Ensure all items stretch to the same height */
}

.faq .faq-container .faq-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    justify-content: space-between;
    padding: 5px;
    position: relative;
    box-sizing: border-box;
}

.faq .faq-container .faq-item h3 {
    align-items: flex-start;
    cursor: pointer;
    display: flex;
    font-weight: 400;
    line-height: 24px;
    margin: 0 20px 0 0;
    transition: 0.3s;
    font-size: clamp(0.75rem, 2.5vw, 0.85rem); /* 12px to 16px */
    padding-right: 20px;
}

.faq .faq-container .faq-item p {
    font-size: clamp(0.7rem, 2vw, 0.85rem); /* 11px to 12px approx */
}

.faq .faq-container .faq-item h4 {
    font-size: clamp(0.75rem, 2.5vw, 0.85rem); /* 12px to 16px */
    color: var(--accent-color);
}

.faq .faq-container .faq-item .num {
    color: var(--accent-color);
    padding-right: 5px;
}

.faq .faq-container .faq-item .faq-content {
    max-height: 0;
    opacity: 0;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    visibility: hidden;
}

.faq .faq-container .faq-item .faq-content p {
    margin-bottom: 0;
    overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
    cursor: pointer;
    line-height: 0;
    position: absolute;
    right: 20px;
    top: 20px;
    transition: 0.3s;
}

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

.faq .faq-container .faq-item.faq-active .faq-content {
    max-height: 1000px; /* Ensure this value is high enough to fit the content */
    opacity: 1;
    visibility: visible;
    padding-top: 10px;
}

.faq .faq-container .faq-item.faq-active h3 {
    color: var(--accent-color);
}

.faq .faq-container .faq-item.faq-active .faq-toggle {
    color: var(--accent-color);
    transform: rotate(90deg);
}

@media (max-width: 990px) {
    .faq .faq-container {
        grid-template-columns: repeat(2, 1fr); /* Create 2 columns for medium screens */
    }

    .faq .faq-container .faq-item h3 {
        padding-right: 10px;
    }
}

@media (max-width: 768px) {
    .faq .faq-container {
        grid-template-columns: 1fr; /* Stack items in a single column on smaller screens */
    }

    .faq .faq-row {
        flex-direction: column;
    }

    .faq-container .faq-toggle {
        display: inline-block;
        transform: rotate(0deg);
        transition: transform 0.3s ease;
    }

    .faq-container .faq-active .faq-toggle {
        transform: rotate(90deg);
    }
}




/* Team Section - Home Page
------------------------------
.team {
	--background-color: #f4f4f4;
}

.team .member {
	position: relative;
}

.team .member .member-img {
	border-radius: 50%;
	border: 4px solid var(--background-color);
	box-shadow: 0 15px 35px -10px rgba(0,0,0,0.2);
	margin: 0 80px;
	overflow: hidden;
	position: relative;
}

.team .member .member-img .social {
	align-items: center;
	background-color: rgba(0,0,0,0.6);
	display: flex;
	inset: 0;
	justify-content: center;
	opacity: 0;
	padding-bottom: 20px;
	position: absolute;
	transition: 0.3s;
	visibility: hidden;
	z-index: 2;
}

.team .member .member-img .social a {
	color: var(--contrast-color);
	font-size: 1.25rem; /* 20px = 1.25rem 
	margin: 0 8px;
	transition: 0.3s;
}

.team .member .member-img .social a:hover {
	color: var(--accent-color);
}

.team .member .member-img img {
	position: relative;
	z-index: 1;
}

.team .member .member-info {
	margin-top: 30px;
}

.team .member .member-info h4 {
	font-size: 1.125rem; /* 18px = 1.125rem 
	/*font-weight: 700;
	margin-bottom: 6px;
}

.team .member .member-info p {
	
	margin-bottom: 0;
}

.team .member .member-info span {
	color: rgba(var(--default-color-rgb), 0.6);
	display: block;
	font-size: ; /* 15px = 0.9375rem 
	font-style: italic;
	margin-bottom: 10px;
}

.team .member:hover .member-img .social {
	opacity: 1;
	padding-bottom: 0;
	visibility: visible;
}

@media (max-width: 1024px) {
	.team .member .member-img {
		margin: 0 60px;
	}
}

/* Call-to-action Section - Home Page
------------------------------
.call-to-action {
	--background-color-rgb: 0, 0, 0;
	--background-color: #000000;
	--default-color: #ffffff;
	-webkit-clip-path: inset(0);
	clip-path: inset(0);
	padding: 80px 0;
	position: relative;
}

.call-to-action .container {
	position: relative;
	z-index: 3;
}

.call-to-action .cta-btn {
	border-radius: 5px;
	border: 2px solid var(--contrast-color);
	color: var(--contrast-color);
	display: inline-block;
	font-family: var(--heading-font);
	font-size: 1rem; /* 16px = 1rem 
	font-weight: 500;
	letter-spacing: 1px;
	margin: 10px;
	padding: 12px 40px;
	transition: 0.5s;
}

.call-to-action .cta-btn:hover {
	background: var(--accent-color);
	border: 2px solid var(--accent-color);
}

.call-to-action h3 {
	color: var(--default-color);
	/*font-weight: 700;
}

.call-to-action img {
	-o-object-fit: cover;
	display: block;
	height: 100%;
	left: 0;
	object-fit: cover;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1;
}

.call-to-action p {
	color: var(--default-color);
}

.call-to-action:before {
	background: rgba(var(--background-color-rgb), 0.5);
	content: "";
	inset: 0;
	position: absolute;
	z-index: 2;
}*/

/* Testimonials Section - Home Page
------------------------------*/
.testimonials {
	--background-color: #f4f4f4;
	min-height: 35vh;
  }
  
  .testimonials .swiper {
	background-color: #fff;
	box-shadow: 0 35px 50px 0 rgba(var(--black-rgb), 0.05);
  }
  
  .testimonials .swiper-pagination {
	margin: 20px 0;
	position: relative;
  }
  
  .testimonials .swiper-pagination .swiper-pagination-bullet {
	background-color: gray;
	border: none;
	height: 10px;
	opacity: 1;
	width: 10px;
  }
  
  .testimonials .swiper-pagination .swiper-pagination-bullet-active {
	background-color: var(--accent-color);
  }
  
  .testimonials .swiper-slide .testimonial-item p i:first-of-type {
	color: var(--accent-color);
  }
  
  .testimonials .swiper-wrapper {
	height: auto;
  }
  
  .testimonials .testimonial-item {
	box-sizing: content-box;
	margin: 15px;
	min-height: 180px;
	position: relative;
  }
  
  .testimonials .testimonial-item .quote-icon-left {
	display: inline-block;
	position: relative;
	left: -5px;
  }
  
  .testimonials .testimonial-item .quote-icon-left,
  .testimonials .testimonial-item .quote-icon-right {
	color: black;
	font-size: clamp(1rem, 2.5vw, 1.25rem); /* 16px to 20px */
	line-height: 0;
  }
  
  .testimonials .testimonial-item .quote-icon-right {
	display: inline-block;
	position: relative;
	right: -5px;
	top: 10px;
	transform: scale(-1, -1);
  }
  
  .testimonials .testimonial-item .stars {
	margin: 15px 0;
  }
  
  .testimonials .testimonial-item .stars i {
	color: #ffc107;
	margin: 0 1px;
  }
  
  .testimonials .testimonial-item .testimonial-img {
	border-radius: 50px;
	border: 6px solid var(--background-color);
	height: 90px;
	width: 90px;
	margin-right: 10px;
  }
  
  .testimonials .testimonial-item h3 {
	margin: 15px 0;
	font-weight: bold;
  }
  
  .testimonials .testimonial-item h4 {
	color: rgba(var(--default-color-rgb), 0.5);
	font-size: clamp(1rem, 2.5vw, 1.25rem); /* 16px to 20px */
	margin: 0;
  }
  
  .testimonials .testimonial-item p {
	font-style: italic;
	margin: 15px auto; /* Simplified margin */
  }
  
  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
	overflow: hidden;
  }
  
  @media (max-width: 767px) {
	.testimonials .testimonial-item {
	  margin: 15px 0; /* Simplified margin for consistency */
	}
  
	.testimonials .testimonials-carousel,
	.testimonials .testimonials-slider {
	  overflow: hidden; /* Ensured hidden overflow for small screens */
	}
  }
  
/*
 Recent-posts Section - Home Page
------------------------------
.recent-posts article {
  box-shadow: 0 4px 16px rgba(var(--default-color-rgb), 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.recent-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.recent-posts .post-category {
	font-size: 1rem; /* 16px = 1rem 
  color: rgba(var(--default-color-rgb), 0.5);
  margin-bottom: 10px;
}

.recent-posts .title {
	font-size: 1.25rem; /* 20px = 1.25rem 
  font-weight: 600;
  padding: 0;
  margin: 0 0 20px 0;
}

.recent-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.recent-posts .title a:hover {
  color: var(--accent-color);
}

.recent-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.recent-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.recent-posts .post-date {
	font-size: 0.875rem; /* 14px = 0.875rem 
  color: rgba(var(--default-color-rgb), 0.5);
  margin-bottom: 0;
}



/*--------------------------------------------------------------
# Blog Page
--------------------------------------------------------------
.blog .pagination {
	color: rgba(var(--default-color-rgb), 0.6);
	margin-top: 30px;
}

.blog .pagination li {
	margin: 0 5px;
	transition: 0.3s;
}

.blog .pagination li a {
	align-items: center;
	color: rgba(var(--default-color-rgb), 0.6);
	display: flex;
	justify-content: center;
	padding: 7px 16px;
}

.blog .pagination li.active a, .blog .pagination li:hover a {
	color: var(--contrast-color);
}

.blog .pagination li.active, .blog .pagination li:hover {
	background: var(--accent-color);
	color: var(--contrast-color);
}

.blog .pagination ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
}

.blog .posts-list .post-author {
	font-weight: 600;
	margin-bottom: 5px;
}

.blog .posts-list .post-author-img {
	border-radius: 50%;
	margin-right: 15px;
	width: 50px;
}

.blog .posts-list .post-category {
	color: rgba(var(--default-color-rgb), 0.6);
	font-size: 1rem; /* 16px = 1rem 
	margin-bottom: 10px;
}

.blog .posts-list .post-date {
	color: rgba(var(--default-color-rgb), 0.6);
	font-size: 0.875rem; /* 14px = 0.875rem 
	margin-bottom: 0;
}

.blog .posts-list .post-img {
	margin: -30px -30px 15px -30px;
	max-height: 240px;
	overflow: hidden;
}

.blog .posts-list .title {
	font-size: 1.375rem; /* 22px = 1.375rem 
	/*font-weight: 700;
	margin: 0 0 20px 0;
	padding: 0;
}

.blog .posts-list .title a {
	color: var(--heading-color);
	transition: 0.3s;
}

.blog .posts-list .title a:hover {
	color: var(--accent-color);
}

.blog .posts-list article {
	border-radius: 10px;
	box-shadow: 0 4px 16px rgba(var(--default-color-rgb), 0.1);
	height: 100%;
	overflow: hidden;
	padding: 30px;
}

.blog-details .article {
	box-shadow: 0 4px 16px rgba(var(--default-color-rgb), 0.1);
	padding: 30px;
}

.blog-details .blog-author {
	box-shadow: 0 4px 16px rgba(var(--default-color-rgb), 0.1);
	margin-top: 30px;
	padding: 20px;
}

.blog-details .blog-author .social-links {
	margin: 0 10px 10px 0;
}

.blog-details .blog-author .social-links a {
	color: rgba(var(--default-color-rgb), 0.4);
	margin-right: 5px;
}

.blog-details .blog-author h4 {
	color: rgba(var(--default-color-rgb), 0.8);
	font-size: 1.25rem; /* 20px = 1.25rem 
	font-weight: 600;
	margin-bottom: 0px;
	padding: 0;
}

.blog-details .blog-author img {
	margin-right: 20px;
	max-width: 120px;
}

.blog-details .blog-author p {
	color: rgba(var(--default-color-rgb), 0.7);
	font-style: italic;
	margin-bottom: 0;
}

.blog-details .comments {
	margin-top: 30px;
}

.blog-details .comments .comment {
	margin-top: 30px;
	position: relative;
}

.blog-details .comments .comment .comment-img {
	margin-right: 14px;
}

.blog-details .comments .comment .comment-img img {
	width: 60px;
}

.blog-details .comments .comment h5 {
	margin-bottom: 2px;
}

.blog-details .comments .comment h5 .reply {
	color: rgba(var(--default-color-rgb), 0.8);
	padding-left: 10px;
}

.blog-details .comments .comment h5 .reply i {
}

.blog-details .comments .comment h5 a {
	color: var(--default-color);
	font-weight: bold;
	transition: 0.3s;
}

.blog-details .comments .comment h5 a:hover {
	color: var(--accent-color);
}

.blog-details .comments .comment time {
	color: rgba(var(--default-color-rgb), 0.6);
	display: block;
	font-size: 0.875rem; /* 14px = 0.875rem 
	margin-bottom: 5px;
}

.blog-details .comments .comment.comment-reply {
	padding-left: 40px;
}

.blog-details .comments .comments-count {
	font-weight: bold;
}

.blog-details .comments .reply-form {
	box-shadow: 0 4px 16px rgba(var(--default-color-rgb), 0.1);
	margin-top: 30px;
	padding: 30px;
}

.blog-details .comments .reply-form .btn-primary {
	background-color: var(--accent-color);
	border-radius: 4px;
	border: 0;
	color: var(--contrast-color);
	padding: 10px 20px;
}

.blog-details .comments .reply-form .btn-primary:hover {
	background-color: rgba(var(--accent-color-rgb), 0.8);
	color: var(--contrast-color);
}

.blog-details .comments .reply-form .form-group {
	margin-bottom: 25px;
}

.blog-details .comments .reply-form h4 {
	font-size: 1.375rem; /* 22px = 1.375rem 
	font-weight: bold;
}

.blog-details .comments .reply-form input {
	background-color: var(--background-color);
	border-radius: 4px;
	border: 1px solid rgba(var(--default-color-rgb), 0.3);
	color: var(--default-color);
	font-size: 0.875rem; /* 14px = 0.875rem 
	padding: 10px 10px;
}

.blog-details .comments .reply-form input:focus {
	border-color: var(--accent-color);
	box-shadow: none;
}

.blog-details .comments .reply-form p {
	
}

.blog-details .comments .reply-form textarea {
	background-color: var(--background-color);
	border-radius: 4px;
	border: 1px solid rgba(var(--default-color-rgb), 0.3);
	color: var(--default-color);
	font-size: 0.875rem; /* 14px = 0.875rem 
	height: 120px;
	padding: 10px 10px;
}

.blog-details .comments .reply-form textarea:focus {
	border-color: var(--accent-color);
	box-shadow: none;
}

.blog-details .content {
	margin-top: 20px;
}

.blog-details .content blockquote {
	background-color: rgba(var(--default-color-rgb), 0.05);
	margin: 20px 0;
	overflow: hidden;
	padding: 60px;
	position: relative;
	text-align: center;
}

.blog-details .content blockquote p {
	color: var(--default-color);
	
	font-style: italic;
	font-weight: 500;
	line-height: 1.6;
	margin-bottom: 0;
}

.blog-details .content blockquote:after {
	background-color: var(--accent-color);
	bottom: 0;
	content: "";
	left: 0;
	margin-bottom: 20px;
	margin-top: 20px;
	position: absolute;
	top: 0;
	width: 3px;
}

.blog-details .content h3 {
	font-weight: bold;
	margin-top: 30px;
}

.blog-details .meta-bottom {
	border-top: 1px solid rgba(var(--default-color-rgb), 0.1);
	padding-top: 10px;
}

.blog-details .meta-bottom .cats {
	display: inline;
	font-size: 0.875rem; /* 14px = 0.875rem 
	list-style: none;
	padding: 0 20px 0 0;
}

.blog-details .meta-bottom .cats li {
	display: inline-block;
}

.blog-details .meta-bottom .share {
	font-size: 1rem; /* 16px = 1rem 
}

.blog-details .meta-bottom .share i {
	padding-left: 5px;
}

.blog-details .meta-bottom .tags {
	display: inline;
	font-size: 0.875rem; /* 14px = 0.875rem 
	list-style: none;
	padding: 0;
}

.blog-details .meta-bottom .tags li {
	display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
	color: var(--default-color);
	content: ", ";
	padding-right: 6px;
}

.blog-details .meta-bottom a {
	color: rgba(var(--default-color-rgb), 0.6);
	transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
	color: var(--accent-color);
}

.blog-details .meta-bottom i {
	color: rgba(var(--default-color-rgb), 0.6);
	display: inline;
}

.blog-details .meta-top {
	color: rgba(var(--default-color-rgb), 0.6);
	margin-top: 20px;
}

.blog-details .meta-top a {
	color: rgba(var(--default-color-rgb), 0.6);
	display: inline-block;
	font-size: 0.875rem; /* 14px = 0.875rem 
	line-height: 1;
}

.blog-details .meta-top i {
	color: rgba(var(--default-color-rgb), 0.6);
	font-size: 1rem; /* 16px = 1rem 
	line-height: 0;
	margin-right: 8px;
}

.blog-details .meta-top ul {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
}

.blog-details .meta-top ul li+li {
	padding-left: 20px;
}

.blog-details .post-img {
	margin: -30px -30px 20px -30px;
	overflow: hidden;
}

.blog-details .sidebar {
	box-shadow: 0 4px 16px rgba(var(--default-color-rgb), 0.1);
	padding: 30px;
}

.blog-details .sidebar .categories ul {
	list-style: none;
	padding: 0;
}

.blog-details .sidebar .categories ul a {
	color: rgba(var(--default-color-rgb), 0.8);
	transition: 0.3s;
}

.blog-details .sidebar .categories ul a span {
	color: rgba(var(--default-color-rgb), 0.5);
	font-size: ; /* 14px = 0.875rem 
	padding-left: 5px;
}

.blog-details .sidebar .categories ul a:hover {
	color: var(--accent-color);
}

.blog-details .sidebar .categories ul li+li {
	padding-top: 10px;
}

.blog-details .sidebar .recent-posts .post-item {
	display: flex;
	margin-top: 15px;
}

.blog-details .sidebar .recent-posts h4 {
	font-size: 0.9375rem; /* 15px = 0.9375rem 
	font-weight: bold;
	margin-bottom: 5px;
}

.blog-details .sidebar .recent-posts h4 a {
	color: var(--default-color);
	transition: 0.3s;
}

.blog-details .sidebar .recent-posts h4 a:hover {
	color: var(--accent-color);
}

.blog-details .sidebar .recent-posts img {
	margin-right: 15px;
	width: 80px;
}

.blog-details .sidebar .recent-posts time {
	color: rgba(var(--default-color-rgb), 0.5);
	display: block;
	font-size: 0.875rem; /* 14px = 0.875rem 
	font-style: italic;
}

.blog-details .sidebar .search-form form {
	background: var(--background-color);
	border: 1px solid rgba(var(--default-color-rgb), 0.3);
	padding: 3px 10px;
	position: relative;
}

.blog-details .sidebar .search-form form button {
	background: var(--accent-color);
	border-radius: 0 4px 4px 0;
	border: 0;
	bottom: 0;
	color: var(--background-color);
	font-size: 1rem; /* 16px = 1rem 
	line-height: 0;
	margin: -1px;
	padding: 0 15px;
	position: absolute;
	right: 0;
	top: 0;
	transition: 0.3s;
}

.blog-details .sidebar .search-form form button i {
	line-height: 0;
}

.blog-details .sidebar .search-form form button:hover {
	background: rgba(var(--accent-color-rgb), 0.8);
}

.blog-details .sidebar .search-form form input[type=text] {
	background-color: var(--background-color);
	border-radius: 4px;
	border: 0;
	color: var(--default-color);
	padding: 4px;
	width: calc(100% - 40px);
}

.blog-details .sidebar .search-form form input[type=text]:focus {
	outline: none;
}

.blog-details .sidebar .sidebar-item+.sidebar-item {
	margin-top: 40px;
}

.blog-details .sidebar .sidebar-title {
	color: var(--heading-color);
	font-size: 1.25rem; /* 20px = 1.25rem 
	/*font-weight: 700;
	margin: 0;
	padding: 0;
}

.blog-details .sidebar .tags {
	margin-bottom: -10px;
}

.blog-details .sidebar .tags ul {
	list-style: none;
	padding: 0;
}

.blog-details .sidebar .tags ul a {
	border: 1px solid rgba(var(--default-color-rgb), 0.4);
	color: rgba(var(--default-color-rgb), 0.7);
	display: inline-block;
	font-size: 0.875rem; /* 14px = 0.875rem 
	margin: 0 6px 8px 0;
	padding: 6px 14px;
	transition: 0.3s;
}

.blog-details .sidebar .tags ul a span {
	color: rgba(var(--default-color-rgb), 0.4);
	font-size: ; /* 14px = 0.875rem 
	padding-left: 5px;
}

.blog-details .sidebar .tags ul a:hover {
	background: var(--accent-color);
	border: 1px solid var(--accent-color);
	color: var(--background-color);
}

.blog-details .sidebar .tags ul li {
	display: inline-block;
}

.blog-details .title {
	color: var(--heading-color);
	font-size: 1.25rem; /* 28px = 1.75rem
	/*font-weight: 700;
	margin: 30px 0;
	padding: 0;
}*/
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

section#contact .form-group input,
section#contact .form-group textarea {
  -webkit-box-shadow: inset 0 1px 1px rgba(var(--black-rgb), 0.075);
  box-shadow: inset 0 1px 1px rgba(var(--black-rgb), 0.075);
  border-radius: 0;
  border: 1px solid #bbbbbb;
  font-size: 0.875rem; /* 14px = 0.875rem */
  padding: 15px;
}

section#contact form {
  margin-top: 15px;
}

section#contact .form-group {
  margin-bottom: 0;
}

.contact .day {
  display: inline-block;
  width: 80px;
}

.contact .info-item {
  background: rgba(var(--default-color-rgb), 0.03);
  padding: 20px;
}

.contact .info-item h3 {
  margin: 20px 0 10px 0;
}

.contact .info-item i {
  color: var(--accent-color);
  font-size: 2.375rem; /* 38px = 2.375rem */
  line-height: 0;
}

.contact .info-item p {
  line-height: 24px;
  margin-bottom: 0;
  padding: 0;
}

.contact .php-email-form {
  background: rgba(var(--default-color-rgb), 0.03);
  height: 100%;
  padding: 20px;
}

.contact .php-email-form .error-message,
.contact .php-email-form .loading,
.contact .php-email-form .sent-message {
  display: none;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message {
  background: #df1529;
  color: #ffffff;
  text-align: left;
}

.contact .php-email-form .loading {
  background: var(--background-color);
  text-align: center;
}

.contact .php-email-form .loading:before {
  animation: animate-loading 1s linear infinite;
  border-radius: 50%;
  border-top-color: var(--background-color);
  border: 3px solid var(--accent-color);
  content: "";
  display: inline-block;
  height: 24px;
  margin: 0 10px -6px 0;
  width: 24px;
}

.contact .php-email-form .sent-message {
  background: #059652;
  color: #ffffff;
  text-align: center;
}

.contact .php-email-form button[type=submit] {
  background: var(--accent-color);
  border-radius: 4px;
  border: 0;
  color: var(--contrast-color);
  padding: 10px 30px;
  transition: 0.4s;
}

.contact .php-email-form button[type=submit]:hover {
  background: rgba(var(--accent-color-rgb), 0.8);
  cursor: pointer;
}

.contact .php-email-form input[type=email],
.contact .php-email-form input[type=text],
.contact .php-email-form textarea {
  background-color: rgba(var(--background-color-rgb), 0.5);
  border-color: rgba(var(--default-color-rgb), 0.2);
  border-radius: 0;
  box-shadow: none;
  color: var(--default-color);
  font-size: 0.875rem; /* 14px = 0.875rem */
  padding: 10px 15px;
}

.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: rgba(var(--default-color-rgb), 0.3);
}

.contact .php-email-form input[type=email]:focus,
.contact .php-email-form input[type=text]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact h3 {
  margin-bottom: 30px;
}

.contact i {
  margin-right: 5px;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Footer // Copyright
--------------------------------------------------------------*/
.footer {
	--background-color: #fff;
	background-color: var(--background-color);
	font-size: 0.8rem; /* 14px = 0.875rem */
	margin-top: auto;
	padding: 15px; /* Added padding for better spacing */
  }
  
  .footer .footer-about .logo {
	line-height: 0;
  }
  
  .footer .footer-about .logo img {
	max-height: 50px;
	margin-right: 6px;
  }
  
  .footer .footer-about .logo span {
	color: var(--heading-color);
	font-size: 1.875rem; /* 30px = 1.875rem */
	letter-spacing: 1px;
	font-family: var(--heading-font);
  }
  
  .footer .footer-about p {
	font-family: var(--heading-font);
	font-size: clamp(0.9rem, 2vw, 1.35rem);
	color: var(--default-color); /* Ensuring text color consistency */
  }
  
  .footer .social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid rgba(var(--default-color-rgb), 0.5);
	font-size: 1rem; /* 16px = 1rem */
	color: rgba(var(--default-color-rgb), 0.5);
	margin-right: 10px;
	transition: 0.3s;
  }
  
  .footer .social-links a:hover {
	color: var(--accent-color);
	border-color: var(--accent-color);
  }
  
  .footer h4 {
	color: var(--heading-color);
	font-size: 1rem; /* 16px = 1rem */
	font-weight: bold;
	position: relative;
  }
  
  .footer .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
  }
  
  .footer .footer-links ul i {
	padding-right: 2px;
	font-size: 0.75rem; /* 12px = 0.75rem */
	line-height: 0;
  }
  
  .footer .footer-links ul li {
	padding: 10px 0;
	display: flex;
	align-items: center;
  }
  
  .footer .footer-links ul li:first-child {
	padding-top: 0;
  }
  
  .footer .footer-links ul a {
	color: rgba(var(--default-color-rgb), 0.8);
	display: inline-block;
	line-height: 1;
	transition: color 0.3s;
  }
  
  .footer .footer-links ul a:hover {
	color: var(--accent-color);
  }
  
  .footer .copyright {
	/*background-color: rgba(var(--default-color-rgb), 0.05);*/
	padding: 10px 0; /* Optional: Adding padding for better spacing */
	text-align: center; /* Optional: Centering the text */
  }
  
  .footer .credits {
	font-size: 0.75rem; /* 12px = 0.75rem */
	text-align: center; /* Optional: Centering the text */
	margin-top: 10px; /* Optional: Adding spacing */
  }
  
  
  /*--------------------------------------------------------------
  # Scroll Top Button
  --------------------------------------------------------------*/
  .scroll-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 99999;
	background-color: var(--accent-color);
	width: 40px;
	height: 40px;
	border-radius: 4px;
	transition: all 0.4s;
  }
  
  .scroll-top i {
	font-size: 24px;
	color: #ffffff;
	line-height: 0;
  }
  
  .scroll-top:hover {
	background-color: black;
	color: #ffffff;
  }
  
  .scroll-top.active {
	visibility: visible;
	opacity: 1;
  }
  /*
  .scroll-top .icon-box i {
	width: clamp(2.375rem, 4vw, 3.75rem); /* 60px 
	height: clamp(2.375rem, 4vw, 3.75rem); /* 60px 
	right: 15px;
	bottom: 15px;
	z-index: 99999;
	background-color: var(--accent-color);
	border-radius: 50%;
	font-size: clamp(1.25rem, 3.5vw, 1.75rem); /* 20px to 28px 
	line-height: 0;
	transition: all 0.4s ease-out;
	background-color: rgba(var(--accent-color-rgb), 0.05);
	color: #ffffff;
  }*/
  
  