<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*------------------------------------------------------------
    Template name    : Nexonix - Multipurpose Responsive Website Template
    Author           : ZRTHEMES
    Version          : 1.0
    File Description : Main css file of the template
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

:root {
  --font-default:
    'Poppins', sans-serif;
  --font-primary:
    'Poppins', sans-serif;
  --font-secondary:
    'Poppins', sans-serif;
  scroll-behavior: smooth;
  --color-bg: #ff0000;
  --color-light: #ffffff;
  --color-dark: #222;
  --color-heading: #222;
  --hero-overlay-color: #000000;
  --menu-color: #ffffff;
  --theme-color: #ff0000;
  --border-color: #e2e2e2;
  --theme-color-dark: #f8f8f8;
  --text-color: #3a3a3a;
  --hero-text-color: #ffffff;
  --text-white-color: #ffffff;
  --text-grey-color: #3a3a3a;
  --text-theme-color: #ff0000;
  --light-color: #ffffff;
  --color-default: #3a3a3a;
  --color-primary-hover: #ff0000;
  --color-secondary-hover: #0c6de0;
  --color-primary: #3a3a3a;
  --color-secondary: #424242;
  --color-start: #3a3a3a;
  --color-end: #3a3a3a;
  --hero-card-bg: rgb(228 227 223 / 17%);
  --box-shadow-color: rgb(82 90 101 / 10%);
  --bg-header: url('../images/hero-bg.png');
  --hero-bg-color: #edeceb;
}

:root.dark {
  --menu-color-bg: #565656;
  --color-bg: #000000;
  --color-light: #000000;
  --color-dark: #ffffff;
  --color-heading: #ff0000;
  --hero-overlay-color: #000000;
  --menu-color: #ffffff;
  --theme-color: #000000;
  --border-color: #14929a;
  --theme-color-dark: #2c2c2c;
  --text-color: #ffffff;
  --hero-text-color: #ffffff;
  --text-white-color: #ffffff;
  --text-grey-color: #565656;
  --text-theme-color: #14929a;
  --light-color: #000000;
  --color-primary-hover: #ff0000;
  --color-secondary-hover: #0c6de0;
  --color-default: #000000;
  --color-primary: #000000;
  --color-secondary: #000000;
  --color-start: #000000;
  --color-end: #000000;
  --hero-card-bg: rgb(0 0 0 / 83%);
  --box-shadow-color: rgb(20 146 154 / 49%);
  --bg-header: url('../images/hero-bg.png');
  --hero-bg-color: #000000;
}

body {
  font-family: var(--font-default);
  color: var(--text-color);
  background: var(--theme-color);
  transition: 0.5s background ease;
}

body.dark {
  --menu-color-bg: #ffffff;
  --color-bg: #000000;
  --color-light: #000000;
  --color-dark: #ffffff;
  --color-heading: #ff0000;
  --hero-overlay-color: #000000;
  --menu-color: #ffffff;
  --border-color: #ff0000;
  --theme-color-dark: #151515;
  --text-color: #ffffff;
  --text-white-color: #ffffff;
  --text-grey-color: #565656;
  --text-theme-color: #ff0000;
  --light-color: #000000;
  --color-primary-hover: #ff0000;
  --color-secondary-hover: #0c6de0;
  --color-default: #424242;
  --color-primary: #424242;
  --color-secondary: #424242;
  --color-start: #000000;
  --color-end: #000000;
  --hero-card-bg: rgb(0 0 0 / 83%);
  --box-shadow-color: rgb(94 94 94 / 69%);
  --bg-header: url('../images/hero-bg-dark.png');
  --hero-bg-color: #000000;
}


#darkmode-button {
  border-radius: 4px;
  border: none;
  outline: none;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-left: 10px;
  position: absolute;
  right: 0px;
  top: 101px;
  background: var(--color-light);
  color: var(--theme-color);
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

.toggle-container {
  position: relative;
}

.theme-btn {
  width: 6em;
  height: 6em;
  padding: 0.5em;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  background-color: transparent;
}

.theme-btn img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.theme-btn.light {
  display: none;
}

.dark .theme-btn.dark {
  display: none;
}

.dark .theme-btn.light {
  display: block;
}

.hide-on-mobile {
  display: block;
}

.line-clamp-2 {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
/*--------------------------------------------------------------
# Sections &amp; Section Header
--------------------------------------------------------------*/
section {
  padding: 100px 0;
  overflow: hidden;
}

.section {
  padding: 60px 0;
  overflow: hidden;
  background: var(--light-color);
}

.section-grey {
  padding: 90px 0;
  overflow: hidden;
  background: var(--theme-color-dark);
}

.sections-bg {
  background-color: var(--theme-color-dark);
}

.section-header {
  text-align: center;
  padding-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  position: relative;
  color: var(--theme-color);
}

.section-header p {
  margin-bottom: 0;
}

img {
  transition: 0.3s;
}

img:hover {
  transform: scale(1.1);
}

.fill-btn {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 40px;
  border-radius: 10px 30px 10px 10px;
  border: 0;
  transition: 0.3s;
  color: var(--text-white-color);
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

.fill-btn:hover {
  background: linear-gradient(45deg, var(--color-secondary), var(--color-primary));
  color: var(--text-white-color);
}

.light-bg {
  background: var(--light-color) !important;
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.light-bg div{
  color: var(--text-color);
}
.light-bg h4 {
  color: var(--text-color);
}
.light-bg h2 {
  color: var(--text-color);
}

.light-bg p {
  color: var(--text-color);
}

.dark-bg {
  position: relative;
  background: linear-gradient(135deg, #ff6f00 30%, #ff0000 100%);
  padding: 80px 0;
  overflow: hidden;
}

.dark-bg h2 {
  color: var(--light-color);
}

.dark-bg p {
  color: var(--light-color);
}


.black-bg {
  position: relative;
  background: linear-gradient(135deg, #ff6f00 30%, #ff0000 100%);
  padding: 80px 0;
  overflow: hidden;
}

.black-bg h2 {
  color: var(--light-color);
}

.black-bg p {
  color: var(--light-color);
}

.cta-bg {
  background: url(../images/whatsapp-bg.jpg) center bottom;
}

/* Floating Elements */
.floating-blob {
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.blob-1 {
  top: 10%;
  left: -50px;
}

.blob-2 {
  bottom: 10%;
  right: -50px;
}

/* Glowing Orbs */
.glowing-orb {
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  filter: blur(10px);
  animation: pulse 4s infinite;
}

.orb-1 {
  top: 20%;
  right: 10%;
}

.orb-2 {
  bottom: 20%;
  left: 10%;
}

/* Animation Effects */
@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(15px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.6;
  }
}


.text-gradient {
  background: linear-gradient(90deg, #ff6f00, #ff0000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-bg {
  background: linear-gradient(135deg, #ff6f00, #ff0000);
  padding: 15px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs .page-header {
  padding: 120px 0 60px 0;
  min-height: 20vh;
  background: url(../images/page-header-bg.png) center bottom;
  background-size: cover;
  border-radius: 0px;
  overflow: hidden;
  position: relative;
}

.breadcrumbs .page-header:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(360deg, var(--light-color), var(--light-color));
  z-index: 0;
  opacity: 0.6;
}

.breadcrumbs .page-header h2 {
  color: var(--color-primary);
}

.breadcrumbs .page-header p {
  color: var(--menu-color);
}

.breadcrumbs nav {
  background-color: var(--theme-color);
  padding: 20px 0;
  margin-top: 103px;
}

.breadcrumbs nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  color: var(--color-default);
}

.breadcrumbs nav ol a {
  color: var(--text-white-color);
  transition: 0.3s;
}

.breadcrumbs nav ol a:hover {
  text-decoration: underline;
}

.breadcrumbs nav ol li+li {
  padding-left: 10px;
  color: var(--text-white-color);
}

.breadcrumbs nav ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--color-secondary);
  content: "/";
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background: linear-gradient(90deg, #ff6f00, #ff0000);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: rgb(16 16 16 / 80%);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--theme-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(48% - 3px);
  left: calc(48% - 3px);
  border: 2px solid #fff;
  border-color: var(--light-color) transparent var(--light-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1.5s linear infinite;
  animation: animate-preloader 1.5s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }

  .hide-on-mobile {
    display: none !important;
  }

  #preloader:before {
    left: calc(44% - 3px);
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.topbar {
  background: #00796b;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
}

.topbar .contact-info i {
  font-style: normal;
  color: #fff;
  line-height: 0;
}

.topbar .contact-info i a,
.topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}

@media (max-width: 575px) {

  .topbar .contact-info i a,
  .topbar .contact-info i span {
    font-size: 13px;
  }
}

.topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.topbar .contact-info i a:hover {
  color: #fff;
  text-decoration: underline;
}

.topbar .social-links a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.topbar .social-links a:hover {
  color: #fff;
}


.header {
  transition: all 0.5s;
  z-index: 997;
  height: 90px;
}

.header .container-fluid {
  padding: 20px;
  border: 1px solid rgb(255 255 255 / 53%);
  border-radius: 20px;
  margin-top: 20px;
  /* box-shadow: inset 0 0px 6px rgba(0, 0, 0, 0.1); */
  /* backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); */
  background: var(--hero-bg-color);
}

.header.sticked {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.header.stikcy-menu .container-fluid {
  background: var(--light-color);
}

.header.stikcy-menu .logo h1 {
  color: var(--color-primary);
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  letter-spacing: 0.8px;
  color: var(--color-primary);
  font-family: var(--font-primary);
}

.header .logo h1 span {
  color: var(--color-primary);
}

.sticked-header-offset {
  margin-top: 0;
}

section {
  background: var(--light-color);
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar&gt;ul&gt;li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .stikcy-menu .navbar a {
    color: var(--text-color);
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover:before,
  .navbar li:hover&gt;a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover&gt;a {
    color: var(--text-theme-color);
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: var(--light-color);
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 12px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 400;
    color: var(--text-color);
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover&gt;a {
    color: var(--color-primary);
  }

  .navbar .dropdown:hover&gt;ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover&gt;ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover&gt;ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: var(--color-primary);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 15px;
    color: rgb(255 255 255);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover&gt;a {
    color: #fff;
  }

  .navbar .getstarted,
  .navbar .getstarted:focus {
    background: var(--color-primary);
    padding: 8px 20px;
    border-radius: 4px;
    margin: 15px;
    color: #fff;
  }

  .navbar .getstarted:hover,
  .navbar .getstarted:focus:hover {
    color: #fff;
    background: rgba(0, 131, 116, 0.8);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    background-color: var(--color-primary);
  }

  .navbar .dropdown&gt;.dropdown-active,
  .navbar .dropdown .dropdown&gt;.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: var(--theme-color);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin-right: 10px;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgb(0 0 0 / 80%);
    z-index: 9996;
  }
}



/*--------------------------------------------------------------
# Featured Section
--------------------------------------------------------------*/
.featured {
  padding: 100px 0px;
  border-radius: 0px;
  overflow: hidden;
  position: relative;
}

.left {
  text-align: right;
}

.right {
  text-align: left;
}

.list-wrap {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.list-wrap p {
  color: #777;
}

.list-wrap:nth-child(3),
.list-wrap:nth-child(6) {
  margin-bottom: 0;
}

.list-wrap .description h4 {
  color: var(--text-color);
}

.icon {
  width: 50px;
  text-align: center;
  height: 50px;
  border-radius: 50%;
  display: flex;
  padding: 10px;
}

.icon svg {
  width: 100%;
}

.list-center-wrap {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  height: 100%;
}

.center-icon {
  width: 100%;
  text-align: center;
}

.center-icon img {
  width: 100%;
  border-radius: 20px;
  opacity: 0.9;
}

/* Section Background */
.featured {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

/* Floating Elements */
.floating-blob {
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.blob-1 {
  top: 10%;
  left: -50px;
}

.blob-2 {
  bottom: 10%;
  right: -50px;
}

/* Glowing Orbs */
.glowing-orb {
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  filter: blur(10px);
  animation: pulse 4s infinite;
}

.orb-1 {
  top: 20%;
  right: 10%;
}

.orb-2 {
  bottom: 20%;
  left: 10%;
}

.single-page .feature-card{
  background: rgb(23 23 23 / 74%);
}
/* Feature Card Styling */
.feature-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  min-height: 120px;
  /* Ensures uniform height */
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  margin-bottom: 25px;
}

.feature-card .description {
  flex: 1;
  /* Ensures text adapts evenly */
}

.feature-card .description p {
  margin-bottom: 0;
}

.feature-card .icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
  /* Prevents resizing */
}

/* Responsive fix */
@media (min-width: 768px) {
  .feature-card {
    min-height: 100px;
    /* Increases height on larger screens */
  }
}

.feature-card .icon img {
  width: 40px;
  height: 40px;
}

/* Description */
.feature-card .description h4 {
  font-size: 20px;
  color: #fff;
}


/* Animation Effects */
@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(15px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.6;
  }
}

/* Section Background */
.featured {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

/* Floating Elements */
.floating-blob {
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.blob-1 {
  top: 10%;
  left: -50px;
}

.blob-2 {
  bottom: 10%;
  right: -50px;
}

/* Glowing Orbs */
.glowing-orb {
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  filter: blur(10px);
  animation: pulse 4s infinite;
}

.orb-1 {
  top: 20%;
  right: 10%;
}

.orb-2 {
  bottom: 20%;
  left: 10%;
}

/* Feature Card Styling */
.feature-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* Icon Styling */
.feature-card .icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.feature-card .icon img {
  width: 40px;
  height: 40px;
}

/* Description */
.feature-card .description h4 {
  font-size: 20px;
  color: #fff;
}

/* Animation Effects */
@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(15px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.6;
  }
}

/* Section Background */
.featured {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

/* Floating Elements */
.floating-blob {
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.blob-1 {
  top: 10%;
  left: -50px;
}

.blob-2 {
  bottom: 10%;
  right: -50px;
}

/* Glowing Orbs */
.glowing-orb {
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  filter: blur(10px);
  animation: pulse 4s infinite;
}

.orb-1 {
  top: 20%;
  right: 10%;
}

.orb-2 {
  bottom: 20%;
  left: 10%;
}

/* Feature Card Styling */
.feature-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* Icon Styling */
.feature-card .icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.feature-card .icon img {
  width: 40px;
  height: 40px;
}

/* Description */
.feature-card .description h4 {
  font-size: 20px;
  color: #fff;
}

.feature-card .description p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

/* Animation Effects */
@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(15px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.6;
  }
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.about h3 {
  font-size: 28px;
  margin-bottom: 20px;
  font-family: var(--font-secondary);
}

.about .call-us {
  left: 10%;
  right: 10%;
  bottom: 0;
  background-color: #fff;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: center;
}

.about .call-us h4 {
  font-size: 24px;
  margin-bottom: 5px;
}

.about .call-us p {
  font-size: 28px;
  color: var(--color-primary);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 10px 30px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--color-primary);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--color-primary) 50%, rgba(0, 131, 116, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(0, 131, 116, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

.about .play-btn:hover:after {
  border-left: 15px solid var(--color-primary);
  transform: scale(20);
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

.img-frame {
  position: relative;
  background: #f6f6f6;
  background-size: contain;
  padding: 9%;
}

.bar {
  background-color: #f1f1f1;
  padding: 1px;
  border-radius: 15px;
  margin-bottom: 20px;
  font-size: 12px;
  color: var(--light-color);
}

.bar::before {
  content: attr(data-skill);
  background-color: var(--color-primary);
  display: inline-block;
  padding: 5px 0 5px 10px;
  border-radius: inherit;
  animation: load 2s 0s;
  -webkit-animation: load 2s 0s;
  -moz-animation: load 2s 0s;
  -o-animation: load 2s 0s;
}

.bar.front::before {
  background-color: var(--color-primary);
}

.bar.back::before {
  background-color: var(--color-primary);
}

.bar.learning::before {
  width: calc(20% - 10px);
}

.bar.basic::before {
  width: calc(40% - 10px);
}

.bar.intermediate::before {
  width: calc(60% - 10px);
}

.bar.advanced::before {
  width: calc(80% - 10px);
}

.bar.expert::before {
  width: calc(100% - 10px);
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 90px 0;
}

.clients .swiper {
  padding: 10px 0;
}

.clients .swiper-slide img {
  transition: 0.3s;
  opacity: 0.9;
  border-radius: 8px;
}

.clients .swiper-slide img:hover {
  transform: scale(1.1);
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  background-color: #ddd;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}


/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  background: url(../images/hero-bg.png) center left;
  background-size: cover;
  padding: 100px 0px;
  border-radius: 0px;
  overflow: hidden;
  position: relative;
  background-attachment: fixed;
}

.call-to-action h3 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 20px;
}

.call-to-action p {
  color: #fff;
  margin-bottom: 20px;
}

.call-to-action .play-btn {
  width: 94px;
  height: 94px;
  margin-bottom: 20px;
  background: radial-gradient(var(--color-primary) 50%, rgba(0, 131, 116, 0.4) 52%);
  border-radius: 50%;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.call-to-action .play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(0, 131, 116, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.call-to-action:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  z-index: 0;
  opacity: 0.6;
}

.call-to-action .play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

.call-to-action .play-btn:hover:after {
  border-left: 15px solid var(--color-primary);
  transform: scale(20);
}

.call-to-action .cta-btn {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 48px;
  border-radius: 10px 30px 10px 10px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
}

.call-to-action .cta-btn:hover {
  background: linear-gradient(45deg, var(--color-secondary-hover), var(--color-primary-hover));
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}


/* Call-to-Action Section Styles */
.call-to-action {
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  padding: 80px 20px;
  color: #ffffff;
  text-align: center;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
}

.call-to-action .cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.call-to-action h3 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffffff;
}

.call-to-action p {
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.call-to-action .cta-btn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(135deg, #ff758c, #ff5858);
  border: none;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0px 8px 20px rgba(255, 88, 88, 0.5);
  transition: all 0.3s ease-in-out;
}

.call-to-action .cta-btn:hover {
  background: linear-gradient(135deg, #ff5858, #ff758c);
  transform: translateY(-5px);
  box-shadow: 0px 12px 30px rgba(255, 88, 88, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
  .call-to-action h3 {
    font-size: 2rem;
  }

  .call-to-action p {
    font-size: 0.9rem;
  }

  .call-to-action .cta-btn {
    font-size: 0.9rem;
    padding: 12px 25px;
  }
}


/* Call-to-Action Section */
.cta-section {
  padding: 100px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-box {
  max-width: 600px;
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease-in-out;
}

.cta-box:hover {
  transform: translateY(-5px);
}

.cta-box h3 {
  font-size: 28px;
  color: white;
  margin-bottom: 15px;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  margin-bottom: 25px;
}

.cta-buttons {
  display: flex;
  gap: 15px;
}

.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: white;
  color: #ff0000;
  padding: 12px 25px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0px 5px 15px rgba(255, 111, 0, 0.3);
  transition: all 0.3s ease-in-out;
}

.cta-btn.secondary {
  background: linear-gradient(90deg, #ff6f00, #ff0000);
  color: white;
}

.cta-btn:hover {
  background: linear-gradient(90deg, #ff0000, #ff6f00);
  ;
  color: white;
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 10px;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px;
  margin: 30px 10px;
  position: relative;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  box-shadow: -1px 5px 20px 0px var(--box-shadow-color);
}

.testimonials .testimonial-item .info-box {
  min-width: 276px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: var(--theme-color);
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: var(--theme-color);
  );
  font-size: 14px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  margin: 15px auto 15px auto;
  color: var(--text-color);
  font-size: 1.1rem;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgb(134 134 134 / 20%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
    flex-direction: column;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}






/*--------------------------------------------------------------
# Our Team Section
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Frequently Asked Questions Section
--------------------------------------------------------------*/
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content h4 {
  font-size: 20px;
  margin-top: 5px;
}

.faq .content p {
  font-size: 15px;
  color: #6c757d;
}

.faq-question {
  color: var(--light-color);
}

/* FAQ Section Styling */
.faq-section {
  background: linear-gradient(135deg, #ff6f00 0%, #ff0000 100%);
  padding: 100px 0;
  text-align: center;
}

.faq-wrapper {
  max-width: 800px;
  margin: auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  margin: 15px 0;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  backdrop-filter: blur(10px);
}

.faq-item:hover {
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}

.faq-question h4 {
  margin-bottom: 0;
}

.faq-icon {
  font-size: 22px;
  color: #ffcc00;
  transition: transform 0.3s ease-in-out;
}

.faq-answer {
  display: none;
  margin-top: 15px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  text-align: left;
  color: white;
}

.faq-item.active .faq-answer {
  display: block;
}

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

.faq .accordion-item {
  margin-bottom: 20px;
  border-radius: 8px;
  background: var(--theme-color-dark);
  border: 1px solid var(--border-color);
}

.accordion-flush .accordion-item:last-child {
  border-bottom: 1px solid var(--border-color);
}


.faq .accordion-collapse {
  border: 0;
  background: var(--theme-color-dark);
  border-radius: 0 8px 8px 0;
}

.accordion-flush .accordion-item:first-child {
  border: 1px solid var(--border-color);
}

.faq .accordion-button {
  background: var(--theme-color-dark);
  padding: 20px 50px 20px 20px;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-primary);
  text-align: left;
  box-shadow: none;
  border-radius: 8px !important;
}

.faq .accordion-button .num {
  padding-right: 10px;
  font-size: 20px;
  line-height: 0;
  color: var(--color-primary);
}

.faq .accordion-button:not(.collapsed) {
  color: var(--color-primary);
  box-shadow: none;
}

.faq .accordion-button:after {
  position: absolute;
  right: 20px;
  top: 20px;
  background: url(../images/icons/down-arrow.svg);
}

.faq .accordion-body {
  padding: 40px;
  border: 0;
  border-radius: 0 0 8px 8px;
  background: var(--theme-color-dark);
  box-shadow: none;
  color: var(--text-color);
}


/* FAQ Section Styles */
.sections-bg {
  /* background: linear-gradient(135deg, #f2f4f8, #ffffff); */
  padding: 80px 0;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}

/* Section Header */
.section-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.section-header p {
  font-size: 1rem;
  text-align: center;
  margin-bottom: 40px;
}

/* Accordion Styling */
.accordion .accordion-item {
  background: #ffffff;
  border: none;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
}

.accordion .accordion-header {
  border-bottom: none;
}

.accordion .accordion-button {
  background: transparent;
  color: #333;
  font-weight: 600;
  padding: 15px 20px;
  border: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.accordion .accordion-button .icon {
  background: linear-gradient(135deg, #ff758c, #ff5858);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.accordion .accordion-button:focus {
  box-shadow: none;
}

.accordion .accordion-button.collapsed {
  background: var(--text-white-color);
}

.accordion .accordion-body {
  padding: 20px;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }

  .accordion .accordion-button {
    font-size: 0.9rem;
  }

  .accordion .accordion-body {
    font-size: 0.85rem;
  }
}


/* FAQ Section Styles */
.faq-section .faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  background: rgba(255, 255, 255, 0.1);
}

.faq-question {
  padding: 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.08);
}

.faq-question h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  flex: 1;
  text-align: left;
}

.faq-icon {
  margin-right: 15px;
  font-size: 20px;
  color: var(--primary-color);
}

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

.faq-item.active .faq-answer {
  max-height: 500px; /* Adjust based on your content */
  padding: 0 20px 20px;
}

.faq-answer p {
  margin: 0;
  padding-top: 10px;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# Recent Blog Posts Section
--------------------------------------------------------------*/
.recent-posts article {
  background-color: var(--light-color);
  padding: 30px;
  height: 100%;
}

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

.recent-posts .post-category {
  font-size: 16px;
  color: var(--text-color);
  margin-bottom: 10px;
  margin-top: 10px; 
  text-transform: uppercase;
}

.recent-posts .title {
  font-size: 22px;
  padding: 0;
  margin: 0 0 20px 0;
}

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

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

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

.recent-posts .post-author {
  margin-bottom: 5px;
  color: var(--text-color);
}

.recent-posts .post-date {
  font-size: 14px;
  color: var(--text-color);
  margin-bottom: 0;
}

/* @media (min-width: 1280px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1140px;
  }
} */


.post-card:hover {
  transform: translateY(-10px);
}

.post-title a:hover {
  color: #ff6f00;
}

/* Recent Posts Section Styles */
.recent-posts {
  padding: 80px 20px;
  /* color: #fff; */
}

.recent-posts .section-header h2 {
  margin-bottom: 20px;
}

.recent-posts .section-header p {
  font-size: 1rem;
  margin-bottom: 40px;
}

.recent-posts .post-card {
  border-radius: 15px; 
  overflow: hidden; 
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); 
  transition: transform 0.3s;
}

.recent-posts .post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.15);
}

.recent-posts .post-img img {
  width: 100%;
  height: auto;
  border-radius: 12px 12px 0 0;
}

.recent-posts .post-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 20px 0;
}

.recent-posts .post-title a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.recent-posts .post-title a:hover {
  color: #ff5858;
}

.recent-posts .post-meta {
  font-size: 0.9rem;
  color: #888;
}

.recent-posts .post-meta p {
  margin: 0;
  padding: 0;
}

.recent-posts .post-meta .post-author {
  font-weight: bold;
}

@media (max-width: 768px) {
  .recent-posts .section-header h2 {
    font-size: 2rem;
  }

  .recent-posts .post-card {
    margin-bottom: 20px;
  }
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  position: relative;
  width: 100%;
  height: 70vh;
  background-image: var(--bg-header);
  /* Replace with your pattern image */
  background-position: right;
  background-repeat: no-repeat;
  overflow: hidden;
  color: var(--text-color);
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Multi-Layered Circle Waves */
.circle-waves {
  position: absolute;
  width: 50%;
  height: 50%;
  border-radius: 50%;
  z-index: -1;
  display: flex;
  justify-content: center;
  align-items: center;
  right: 0;
  top: 50%;
}

/* Individual Wave Animation */
.wave {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: 10px solid rgba(255, 255, 255, 0.1);
  animation: waveAnimation 3s infinite ease-in-out;
}

/* Each wave with a different timing */
.wave-1 {
  animation-delay: 0s;
}

.wave-2 {
  animation-delay: 1s;
  transform: scale(1.2);
}

.wave-3 {
  animation-delay: 2s;
  transform: scale(1.4);
}

.wave-4 {
  animation-delay: 3s;
  transform: scale(1.6);
}

/* Keyframe Animation for Expanding Waves */
@keyframes waveAnimation {
  0% {
    transform: scale(1);
    opacity: 0.1;
  }

  100% {
    transform: scale(2.5);
    opacity: 0.4;
  }
}

/* Glowing Effect for Heading */
@keyframes glow {
  from {
    text-shadow: 0 0 10px rgba(255, 221, 0, 0.8);
  }

  to {
    text-shadow: 0 0 20px rgba(255, 255, 255, 1);
  }
}

/* âš¡ Lightning Effect */
.neon-line {
  top: 30%;
  left: 50%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, #ff6f00, #ff0000, #ff6f00);
  animation: neonPulse 2s infinite linear;
  margin-bottom: 25px;
}

@keyframes neonPulse {
  0% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.5;
  }
}

/* ðŸ”¥ Glowing Particles */
.glowing-particle {
  position: absolute;
  top: 50%;
  left: 20%;
  width: 15px;
  height: 15px;
  background: radial-gradient(circle, #ff4500 0%, transparent 60%);
  animation: moveParticle 6s infinite ease-in-out;
}

@keyframes moveParticle {
  0% {
    transform: translateX(0) translateY(0);
  }

  50% {
    transform: translateX(50px) translateY(-50px);
  }

  100% {
    transform: translateX(0) translateY(0);
  }
}

/* âœ¨ Glassmorphism Buttons */
.btn-glass {
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 6px;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.4);
}

/* âš¡ Neon Button */
.btn-neon {
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 50px;
  background: linear-gradient(90deg, #ff6f00, #ff0000);
  box-shadow: 0px 0px 15px rgba(255, 69, 0, 0.8);
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.btn-neon:hover {
  box-shadow: 0px 0px 30px rgba(255, 69, 0, 1);
}

.hero-features {
  list-style: none;
  padding: 0;
}

.hero-features li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.hero-features i {
  color: #ff6f00;
  margin-right: 8px;
}

/* Get Quotes Button */
.btn-get-started {
  background: linear-gradient(45deg, #ff7eb3, #ff758c, #ff0000);
  color: #fff;
  padding: 0.7rem 1.8rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(255, 94, 140, 0.3);
  transition: all 0.4s ease-in-out;
}

.btn-get-started:hover {
  background: linear-gradient(45deg, #ff0000, #ff758c, #ff7eb3);
  box-shadow: 0 6px 20px rgba(255, 94, 140, 0.5);
  transform: translateY(-2px);
}

.btn-get-started:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(255, 94, 140, 0.3);
}


.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: #fff;
}

.hero .btn-watch-video i {
  color: rgba(255, 255, 255, 0.5);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover i {
  color: #fff;
}

@media (max-width: 991px) {
  .hero {
    background: url(../images/hero-bg.png) center center;
    min-height: 563px;
    background-position: right 50% bottom !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
  }
.btn-neon,
.btn-glass{
  padding: 15px !important;
}
  .hero-title{
    font-size: 28px !important;
  }

  .hero h2 {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .text-left.caption {
    text-align: center;
  }

  .caption .justify-content-start {
    justify-content: center !important;
  }

  .caption .social {
    justify-content: center;
  }

  .btn-get-started,
  .hero .btn-watch-video {
    font-size: 14px;
  }

  .icon-boxes .card-two {
    margin-top: var(--bs-gutter-y);
    margin-bottom: 0px;
    padding-left: calc(var(--bs-gutter-x) * .5);
    padding-right: calc(var(--bs-gutter-x) * .5);

  }
  .hero-features li {
    text-shadow: -2px 2px 9px rgb(255 255 255 / 63%);
  }
}

@media (min-width: 768px) {

  .btn-get-started,
  .hero .btn-watch-video {
    font-size: 14px;
  }

  .icon-boxes .card-two {
    margin-top: -20px;
    margin-bottom: -20px;
  }
}

.icon-box {
  padding: 20px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  height: 100%;
  width: 100%;
  text-align: center;
  color: var(--text-color);
  box-shadow: -1px 5px 20px 0px var(--box-shadow-color);
}

.icon-box .icon img {
  width: 77px;
}

.icon-box .title {
  margin-bottom: 15px;
  font-size: 24px;
}

.icon-box .title a {
  color: var(--color-primary);
  transition: 0.3s;
}

.icon-box .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 48px;
  line-height: 1;
  color: var(--color-primary);
}

.icon-box:hover {
  transform: scale(1.04);
}

.mb-25 {
  margin-bottom: 25px;
}

.index-100 {
  z-index: 100;
}

/* ðŸŒŸ HERO SECTION */
.hero {
  position: relative;
  background: var(--hero-bg-color);
  color: white;
  padding: 140px 0;
  text-align: left;
  overflow: hidden;
}

/* ðŸŒ€ Animated Background */
.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('assets/images/hero-bg.jpg') center/cover no-repeat;
  filter: blur(5px);
  opacity: 0.3;
}

/* ðŸ”¥ Floating Elements */
.floating-elements .neon-glow {
  position: absolute;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8), rgba(255, 0, 0, 0.2));
  border-radius: 50%;
  top: 10%;
  right: 15%;
  animation: glow-move 6s infinite ease-in-out;
}

.floating-elements .pulse-particle {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  top: 80%;
  left: 10%;
  animation: pulse 4s infinite ease-in-out;
}

/* ðŸŽ¯ Hero Text */
.hero-title {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.2;
}

.hero-title .highlight {
  color: #ffde59;
  background: linear-gradient(45deg, #ffde59, #ff0000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.hero-subtitle {
  font-size: 18px;
  margin-bottom: 20px;
  opacity: 0.85;
  text-shadow: -2px 2px 9px rgb(255 255 255 / 63%);
}

/* âœ… Features List */
.hero-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.hero-features li {
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-features i {
  color: #ffde59;
  font-size: 22px;
}

/* ðŸŽ® CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.btn-glass {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid #ff0000;
  color: #ff0000;
  padding: 12px 25px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.btn-glass:hover {
  background: white;
  color: #ff0000;
  transform: translateY(-3px);
}

.btn-neon {
  background: linear-gradient(45deg, #ffde59, #ff0000);
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}

.btn-neon:hover {
  background: linear-gradient(45deg, #ff0000, #ffde59);
  transform: translateY(-3px);
}



/* ðŸŽ¬ Keyframe Animations */
@keyframes glow-move {
  0% {
    transform: translateY(0);
    opacity: 0.8;
  }

  50% {
    transform: translateY(-10px);
    opacity: 1;
  }

  100% {
    transform: translateY(0);
    opacity: 0.8;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.9;
  }

  100% {
    transform: scale(1);
    opacity: 0.6;
  }
}


/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog .blog-pagination {
  margin-top: 30px;
  color: #555555;
}

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

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
  border-radius: 10px;
}

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

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: var(--color-primary);
  color: #fff;
}

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

.blog-sidbar {
  background-color: var(--light-color);
  padding: 30px 20px;
  border-radius: 8px;
}

.blog-sidbar ul li a:hover {
  color: rgb(74 74 74);
}

/*--------------------------------------------------------------
# Blog Posts List
--------------------------------------------------------------*/
.blog .posts-list article {
  box-shadow: 0 1px 6px rgb(0 0 0 / 10%);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

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

.blog .posts-list .post-category {
  font-size: 16px;
  color: #555555;
  margin-bottom: 10px;
}

.blog .posts-list .title {
  font-size: 22px;

  padding: 0;
  margin: 0 0 20px 0;
}

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

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

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

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

.blog .posts-list .post-date {
  font-size: 14px;
  color: #3c3c3c;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.blog .blog-details {
  box-shadow: 0 1px 6px rgb(0 0 0 / 10%);
  padding: 30px;
  border-radius: 10px;
}

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

.blog .blog-details .title {
  font-size: 28px;

  padding: 0;
  margin: 20px 0 0 0;
  color: var(--color-default);
}

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

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

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

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

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

.blog .blog-details .meta-top {
  margin-top: 20px;
  color: #6c757d;
}

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

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

.blog .blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: var(--color-primary);
}

.blog .blog-details .meta-top a {
  color: #6c757d;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid rgba(34, 34, 34, 0.15);
}

.blog .blog-details .meta-bottom i {
  color: #555555;
  display: inline;
}

.blog .blog-details .meta-bottom a {
  color: rgba(34, 34, 34, 0.8);
  transition: 0.3s;
}

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

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

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

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

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

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

.blog .blog-details .meta-bottom .share {
  font-size: 16px;
}

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

.blog .post-author {
  padding: 20px;
  margin-top: 30px;
  box-shadow: 0 1px 6px rgb(0 0 0 / 10%);
  border-radius: 10px;
}

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

.blog .post-author h4 {
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: var(--color-default);
}

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

.blog .post-author .social-links a {
  color: rgba(34, 34, 34, 0.5);
  margin-right: 5px;
}

.blog .post-author p {
  font-style: italic;
  color: rgba(108, 117, 125, 0.8);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Sidebar
--------------------------------------------------------------*/
dl,
ol,
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.single-page ul {
  list-style: none;
}

.single-page ul li {
  position: relative;
  color: var(--text-color);
  margin-bottom: 5px;
  border-radius: 8px;
}

.blog .sidebar {
  padding: 30px;
  box-shadow: 0 1px 6px rgb(0 0 0 / 10%);
  border-radius: 10px;
}

.search-form {
  position: relative;
  overflow: hidden;
  border-radius: 10px 30px 10px 10px;
  margin-bottom: 30px;
  border: 0;
}

.search-form input {
  width: 100%;
  padding: 14px 28px;
  background: #ffffff;
  border: none;
  color: #393838;
  outline: none;
}

.search-form button {
  position: absolute;
  right: 0;
  padding: 16px 20px;
  border: none;
  top: 0px;
  color: var(--text-white-color);
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  outline: none;
}

.search-form button:hover {
  cursor: pointer;
  background: linear-gradient(45deg, var(--color-secondary), var(--color-primary));
  color: var(--text-white-color);
}

.search-form button i {
  color: #fff;
}

.blog .sidebar .sidebar-title {
  font-size: 20px;

  padding: 0;
  margin: 0;
  color: var(--color-default);
}

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

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid rgba(34, 34, 34, 0.3);
  padding: 5px 10px;
  position: relative;
  border-radius: 10px 30px 10px 10px;
}

.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 10px 30px 10px 10px;
  width: calc(100% - 60px);
}

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

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 25px;
  margin: -1px;
  background: var(--color-primary);
  color: #fff;
  transition: 0.3s;
  border-radius: 10px 30px 10px 10px;
  line-height: 0;
}

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

.blog .sidebar .search-form form button:hover {
  background: rgba(0, 131, 116, 0.8);
}

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

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

.blog .sidebar .categories ul a {
  color: var(--color-default);
  transition: 0.3s;
}

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

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: rgba(34, 34, 34, 0.4);
  font-size: 14px;
}

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

.blog .sidebar .recent-posts img {
  width: 80px;
  float: left;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}

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

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

.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: rgba(34, 34, 34, 0.4);
}

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

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

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

.blog .sidebar .tags ul a {
  color: #555555;
  font-size: 14px;
  padding: 6px 20px;
  margin: 0 6px 8px 0;
  border: 1px solid #d5d5d5;
  display: inline-block;
  transition: 0.3s;
  border-radius: 10px 30px 10px 10px;
}

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

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: rgba(85, 85, 85, 0.8);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Blog Comments
--------------------------------------------------------------*/
.blog .comments {
  margin-top: 30px;
}

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

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

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

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

.blog .comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

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

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

.blog .comments .comment h5 .reply {
  padding-left: 10px;
  color: var(--color-primary);
}

.blog .comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .comments .comment time {
  display: block;
  font-size: 14px;
  color: rgba(34, 34, 34, 0.8);
  margin-bottom: 5px;
}

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

.blog .comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.blog .comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .comments .reply-form p {
  font-size: 14px;
}

.blog .comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form input:focus {
  box-shadow: none;
  border-color: rgba(0, 131, 116, 0.8);
}

.blog .comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: rgba(0, 131, 116, 0.8);
}

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

.blog .comments .reply-form .btn-primary {
  border-radius: 10px 30px 10px 10px;
  padding: 14px 40px;
  border: 0;
  background-color: var(--color-secondary);
}

.blog .comments .reply-form .btn-primary:hover {
  background-color: rgba(248, 90, 64, 0.8);
}


/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/
.stats-counter{
  background: linear-gradient(135deg, #ff6f00, #ff0000);
  padding: 80px 0; 
  color: white;
}

.stats-counter .stats-item .purecounter {
  padding-right: 0;
}

.stats-counter .stats-item i {
  font-size: 90px;
  line-height: 0;
  color: var(--color-primary);
  margin-bottom: 30px;
}

.stats-counter .stats-item span {
  font-size: 24px;
  display: block;
  color: var(--theme-color);
  line-height: 34px;
  text-align: center;
}

.stats-counter .stats-item p {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stats-counter .stats-box {
  position: relative;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  position: relative; 
  background: rgba(255, 255, 255, 0.15); 
  border-radius: 15px; 
  padding: 30px;
  backdrop-filter: blur(10px); 
  transition: transform 0.3s ease;
}

.stats-counter .stats-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stats-counter .stats-layer {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, rgba(255, 0, 150, 0.3), rgba(0, 204, 255, 0.3));
  transform: rotate(45deg);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stats-counter .stats-box:hover .stats-layer {
  opacity: 1;
}

.stats-counter .stats-icon {
  position: relative;
  z-index: 2;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.stats-counter .stats-icon img {
  width: 50px;
}

.stats-counter .stats-content {
  position: relative;
  z-index: 2;
}

.stats-counter .stats-number {
  color: var(--light-color);
  margin: 0;
  font-size: 42px; 
  font-weight: bold;
}

.stats-counter .stats-label {
  font-size: 1.5rem;
  font-weight: 600;
  color: #555;
  margin: 10px 0;
}

.stats-counter small {
  font-size: 0.875rem;
  color: #777;
}


/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-flters {
  padding: 0 0 40px 0;
  margin: 0 auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 0.7rem 1.8rem;
  border: none;
  border-radius: 50px;
  font-weight: 500;
  margin: 0 10px;
  color: var(--text-white-color);
  line-height: 1;
  transition: all 0.3s ease-in-out;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #ff7eb3, #ff758c, #ff0000);
}

.portfolio .portfolio-flters li:hover,
.portfolio .portfolio-flters li.filter-active {
  color: var(--text-white-black);
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(255, 94, 140, 0.3);
}

.portfolio .portfolio-flters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-flters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-flters li {
    font-size: 14px;
  }
}

.portfolio .portfolio-wrap {
  box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
  border-radius: 8px;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.portfolio .portfolio-wrap img {
  transition: 0.3s;
  position: relative;
  z-index: 1;
}

.portfolio .portfolio-wrap .portfolio-info {
  padding: 25px 20px;
  position: absolute;
  z-index: 2;
  bottom: -1px;
  -webkit-backdrop-filter: saturate(180%) blur(5px);
  backdrop-filter: saturate(180%) blur(5px);
  border-radius: 0;
}

.portfolio .portfolio-wrap .portfolio-info:hover {
  background: #1c042e;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 18px;
  margin-bottom: 0;
  color: #fff;
}

.portfolio .portfolio-wrap .portfolio-info h4 a {
  color: var(--light-color);
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info h4 a:hover {
  color: var(--color-primary);
}

.portfolio .portfolio-wrap .project-btn a {
  color: var(--light-color);
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-wrap .portfolio-info .portfolio-details {
  margin-bottom: 20px;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.1);
}

/* Overlay with Project Info */
.portfolio-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
  text-align: center;
  opacity: 0;
  transform: translateY(100%);
  transition: 0.3s ease-in-out;
}

.portfolio-wrap:hover .portfolio-info {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-info h4 {
  margin: 0;
  font-size: 1.2rem;
}

.portfolio-info p {
  font-size: 0.9rem;
  color: #ddd;
}

/* Background &amp; Effects */
.portfolio {
  position: relative;
  background: var(#121212);
  padding: 80px 0;
  overflow: hidden;
}

/* Floating Elements */
.floating-blob {
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.blob-1 {
  top: 10%;
  left: -50px;
}

.blob-2 {
  bottom: 10%;
  right: -50px;
}

/* Glowing Orbs */
.glowing-orb {
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  filter: blur(10px);
  animation: pulse 4s infinite;
}

.orb-1 {
  top: 20%;
  right: 10%;
}

.orb-2 {
  bottom: 20%;
  left: 10%;
}

/* Portfolio Item Hover Effects */
.portfolio-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.portfolio-wrap:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.portfolio-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.7);
  padding: 10px 15px;
  color: white;
  border-radius: 6px;
}

/* Animation Effects */
@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(15px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0.6;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
#services {
  padding: 100px 0;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  /* color: var(--color-heading); */
}

.section-header p {
  font-size: 1.125rem;
}

.service-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  transition: transform 0.3s ease-in-out;
}

.service-card:hover {
  transform: translateY(-10px);
}

.btn-gradient {
  background: linear-gradient(90deg, #ff6f00, #ff0000);
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
}

.btn-gradient:hover {
  background: linear-gradient(90deg, #ff0000, #ff6f00);
}

/* Service Cards */
.service-card {
  position: relative;
  padding: 2rem;
  background-color: var(--color-light);
  border-radius: 25px;
  transition: all 0.3s ease;
  overflow: hidden;
  text-align: center;
  z-index: 1;
}

/* Rotated Cards */
.card-rotated {
  transform: rotate(-4deg);
}

.card-rotated-2 {
  transform: rotate(4deg);
}

.service-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.service-icon {
  display: inline-block;
  width: 80px;
  height: 80px;
  background-color: #007bff;
  border-radius: 50%;
  margin-bottom: 1rem;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-icon img {
  width: 50px;
  height: 50px;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 1.5rem;
}

.service-description {
  font-size: 1rem;
  color: #777;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.btn {
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 10px 25px;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-outline-primary {
  border: 2px solid #007bff;
  color: #007bff;
}

.btn-outline-primary:hover {
  background-color: #007bff;
  color: #fff;
}

.btn-outline-secondary {
  border: 2px solid #6c757d;
  color: #6c757d;
}

.btn-outline-secondary:hover {
  background-color: #6c757d;
  color: #fff;
}

.btn-outline-warning {
  border: 2px solid #ffc107;
  color: #ffc107;
}

.btn-outline-warning:hover {
  background-color: #ffc107;
  color: #fff;
}

.btn-outline-danger {
  border: 2px solid #dc3545;
  color: #dc3545;
}

.btn-outline-danger:hover {
  background-color: #dc3545;
  color: #fff;
}

.btn-outline-success {
  border: 2px solid #28a745;
  color: #28a745;
}

.btn-outline-success:hover {
  background-color: #28a745;
  color: #fff;
}

.btn-outline-info {
  border: 2px solid #17a2b8;
  color: #17a2b8;
}

.btn-outline-info:hover {
  background-color: #17a2b8;
  color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
  .service-card {
    padding: 1.5rem;
  }

  .service-title {
    font-size: 1.3rem;
  }

  .service-description {
    font-size: 0.9rem;
  }
}

#services {
  position: relative;
  overflow: hidden;
}

.tech-pattern {
  opacity: 0.1;
}


/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.card {
  position: relative;
  height: auto;
  background: var(--light-color);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  margin: 0 auto;
  padding: 40px 20px;
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  overflow: hidden;
  margin-bottom: 20px;
  border: 0;
  box-shadow: -1px 5px 20px 0px var(--box-shadow-color);
}

.card:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

.card .title img {
  width: 120px;
}

.col-sm-3:nth-child(1) .card,
.col-sm-3:nth-child(1) .card .title .fa {
  /* background: linear-gradient(-45deg, var(--color-primary), #ec9f00); */
}

.col-sm-3:nth-child(2) .card,
.col-sm-4:nth-child(2) .card .title .fa {
  /* background: linear-gradient(-45deg, var(--color-primary), #ec9f00); */
}

.col-sm-3:nth-child(3) .card,
.col-sm-3:nth-child(3) .card .title .fa {
  background: linear-gradient(-45deg, var(--color-primary), #ec9f00);
}

.col-sm-3:nth-child(3) .card a {
  color: var(--light-color);
  border: 2px solid var(--light-color);
}

.card:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  z-index: 1;
  transform: skewY(-5deg) scale(1.5);
  -webkit-transform: skewY(-5deg) scale(1.5);
  -moz-transform: skewY(-5deg) scale(1.5);
  -ms-transform: skewY(-5deg) scale(1.5);
  -o-transform: skewY(-5deg) scale(1.5);
}

.title .fa {
  color: #fff;
  font-size: 60px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  text-align: center;
  line-height: 100px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, .2);
}

.title h2 {
  position: relative;
  margin: 20px 0 0;
  padding: 0;
  color: var(--text-color);
  font-size: 28px;
  z-index: 2;
}

.price {
  position: relative;
  z-index: 2;
  color: var(--text-color);
}

.price h4 {
  margin: 0;
  padding: 20px 0;
  color: var(--text-color);
  font-size: 60px;
}

.option {
  position: relative;
  z-index: 2;
}

.option ul {
  margin: 0;
  padding: 0;
}

.option ul li {
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
  color: var(--text-color);
  font-size: 16px;
}

.card a {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  transition: all 0.3s ease-in-out;
  padding: 15px 25px;
  border-radius: 10px 30px 10px 10px;
  margin-bottom: 20px;
  position: relative;
  color: var(--text-white-color);
  z-index: 2;
  margin: 20px auto 0;
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
}

.card a:hover {
  text-decoration: none;
  background: linear-gradient(45deg, var(--color-secondary-hover), var(--color-primary-hover));
}

/* Card Style */
.pricing-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3sease, box-shadow 0.3sease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  /* color: #333; */
  margin-bottom: 20px;
}

/* Price Styling */
.pricing-card .price h4 {
  font-size: 2.5rem;
  color: var(--theme-color);
  font-weight: 700;
}

.pricing-card .price p {
  font-size: 1.1rem;
  color: #bcb9b9;
  margin-top: -10px;
}

.modern-card {
  background: linear-gradient(176deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2));
  /* border: 1px solid rgba(255, 255, 255, 0.3); */
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease-in-out;
}

.modern-card:hover {
  transform: scale(1.05);
}

.highlighted {
  box-shadow: 0px 0px 20px rgba(255, 215, 0, 0.5);
}

.premium {
  background: linear-gradient(135deg, #ffecd2, #fcb69f);
}

/* Features List */
.pricing-card .features {
  list-style-type: none;
  padding: 0;
  margin: 20px 0;
}

.pricing-card .features li {
  font-size: 1rem;
  margin-bottom: 15px;
  display: flex;
  text-align: left;
}

.pricing-card .features li.cross-line {
  opacity: 0.4;
}

.pricing-card .features li i {
  color: #28a745;
  margin-right: 10px;
}

/* Button */
.pricing-card .btn {
  display: inline-block;
  padding: 12px 25px;
  font-size: 1.1rem;
  color: #fff;
  background-color: #007bff;
  border-radius: 5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.pricing-card .btn:hover {
  background-color: #ff6f00;
}

/* Different Plan Colors */
.basic-plan {
  background: linear-gradient(145deg, #ff9a9e, #fecfef);
}

.standard-plan {
  background: linear-gradient(145deg, #6a82fb, #fc5c7d);
}

.premium-plan {
  background: linear-gradient(145deg, #ff7e5f, #feb47b);
}

.cross-line {
  text-decoration: line-through;
}

@media (max-width: 768px) {
  .pricing .row {
    flex-direction: column;
  }

  .pricing-card {
    margin-bottom: 30px;
  }
}


.pricing {
  background: linear-gradient(135deg, #ff6f00, #ff0000);
  padding: 80px 0;
  color: #fff;
}

.pricing-card {
  background: rgb(0 0 0 / 90%);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 15px 40px rgba(255, 111, 0, 0.3);
}

.pricing-card .card-header {
  padding: 15px 0;
}

.pricing-card .price {
  font-size: 26px;
  font-weight: bold;
  color: #fff;
}

.features {
  list-style: none;
  padding: 0;
}

.features li {
  font-size: 16px;
}

.cross-line {
  opacity: 0.6;
  text-decoration: line-through;
}

.btn-neon {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(90deg, #ff6f00, #ff0000);
  border-radius: 6px;
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  transition: 0.3s ease-in-out;
  border: none;
}

.btn-neon:hover {
  background: linear-gradient(90deg, #ff0000, #ff6f00);
  box-shadow: 0px 0px 20px rgba(255, 111, 0, 0.8);
  border: none;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.pricing-toggle .switch {
  margin: 0 15px;
  position: relative;
  display: inline-block;
  width: 50px;
  height: 25px;
}

.pricing-toggle .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.pricing-toggle .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}

.pricing-toggle .slider::before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 2px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

.pricing-toggle input:checked+.slider {
  background-color: #ff6f00;
}

.pricing-toggle input:checked+.slider::before {
  transform: translateX(25px);
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team-section {
  background: #121212;
  padding: 100px 0;
  color: white;
  text-align: center;
}

.team-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.team-card {
  position: relative;
  width: 250px;
  border-radius: 15px;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.team-card:hover {
  transform: scale(1.05);
}

.team-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
}

.team-overlay {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  padding: 15px;
  transition: all 0.3s ease-in-out;
  border-radius: 0 10px 10px 0;
}

.team-card:hover .team-overlay {
  background: rgba(255, 111, 0, 0.9);
}

.team-overlay h4 {
  margin: 0;
  font-size: 18px;
}

.team-overlay span {
  font-size: 14px;
  opacity: 0.8;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 10px;
}

.team-social a {
  color: #ff6f00;
  font-size: 20px;
  transition: color 0.3s ease-in-out;
}

.team-social a:hover {
  color: #ff0000;
}

/* Modal Styles */
.team-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  width: 400px;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

/*--------------------------------------------------------------
# Blog Posts List
--------------------------------------------------------------*/
.blog .posts-list article {
  box-shadow: 0 1px 6px rgb(0 0 0 / 10%);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

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

.blog .posts-list .post-category {
  font-size: 16px;
  color: #555555;
  margin-bottom: 10px;
}

.blog .posts-list .title {
  font-size: 22px;
  padding: 0;
  margin: 0 0 20px 0;
}

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

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

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

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

.blog .posts-list .post-date {
  font-size: 14px;
  color: #3c3c3c;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.blog .blog-details {
  box-shadow: 0 1px 6px rgb(0 0 0 / 10%);
  padding: 30px;
  border-radius: 10px;
}

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

.blog .blog-details .title {
  font-size: 28px;
  padding: 0;
  margin: 20px 0 0 0;
  color: var(--color-default);
}

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

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

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

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

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

.blog .blog-details .meta-top {
  margin-top: 20px;
  color: #6c757d;
}

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

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

.blog .blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: var(--color-primary);
}

.blog .blog-details .meta-top a {
  color: #6c757d;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid rgba(34, 34, 34, 0.15);
}

.blog .blog-details .meta-bottom i {
  color: #555555;
  display: inline;
}

.blog .blog-details .meta-bottom a {
  color: rgba(34, 34, 34, 0.8);
  transition: 0.3s;
}

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

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

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

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

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

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

.blog .blog-details .meta-bottom .share {
  font-size: 16px;
}

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

.blog .post-author {
  padding: 20px;
  margin-top: 30px;
  box-shadow: 0 1px 6px rgb(0 0 0 / 10%);
  border-radius: 10px;
}

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

.blog .post-author h4 {
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: var(--color-default);
}

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

.blog .post-author .social-links a {
  color: rgba(34, 34, 34, 0.5);
  margin-right: 5px;
}

.blog .post-author p {
  font-style: italic;
  color: rgba(108, 117, 125, 0.8);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Sidebar
--------------------------------------------------------------*/
.blog .sidebar {
  padding: 30px;
  box-shadow: 0 1px 6px rgb(0 0 0 / 10%);
  border-radius: 10px;
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  padding: 0;
  margin: 0;
  color: var(--color-default);
}

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

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid rgba(34, 34, 34, 0.3);
  padding: 5px 10px;
  position: relative;
  border-radius: 10px 30px 10px 10px;
}

.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 10px 30px 10px 10px;
  width: calc(100% - 60px);
}

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

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 25px;
  margin: -1px;
  background: var(--color-primary);
  color: #fff;
  transition: 0.3s;
  border-radius: 10px 30px 10px 10px;
  line-height: 0;
}

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

.blog .sidebar .search-form form button:hover {
  background: rgba(0, 131, 116, 0.8);
}

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

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

.blog .sidebar .categories ul a {
  color: var(--color-default);
  transition: 0.3s;
}

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

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: rgba(34, 34, 34, 0.4);
  font-size: 14px;
}

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

.blog .sidebar .recent-posts img {
  width: 80px;
  float: left;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}

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

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

.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: rgba(34, 34, 34, 0.4);
}

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

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

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

.blog .sidebar .tags ul a {
  color: #555555;
  font-size: 14px;
  padding: 6px 20px;
  margin: 0 6px 8px 0;
  border: 1px solid #d5d5d5;
  display: inline-block;
  transition: 0.3s;
  border-radius: 10px 30px 10px 10px;
}

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

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: rgba(85, 85, 85, 0.8);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Blog Comments
--------------------------------------------------------------*/
.blog .comments {
  margin-top: 30px;
}

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

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

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

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

.blog .comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

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

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

.blog .comments .comment h5 .reply {
  padding-left: 10px;
  color: var(--color-primary);
}

.blog .comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .comments .comment time {
  display: block;
  font-size: 14px;
  color: rgba(34, 34, 34, 0.8);
  margin-bottom: 5px;
}

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

.blog .comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.blog .comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .comments .reply-form p {
  font-size: 14px;
}

.blog .comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form input:focus {
  box-shadow: none;
  border-color: rgba(0, 131, 116, 0.8);
}

.blog .comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: rgba(0, 131, 116, 0.8);
}

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

.blog .comments .reply-form .btn-primary {
  border-radius: 10px 30px 10px 10px;
  padding: 14px 40px;
  border: 0;
  background-color: var(--color-secondary);
}

.blog .comments .reply-form .btn-primary:hover {
  background-color: rgba(248, 90, 64, 0.8);
}


/**************************************
  Contact
 **************************************/
.contact-section .contact-form-3 form .form-control {
  font-size: 15px;
  width: 100%;
  padding: 10px 20px;
  height: 52px;
  color: #025bdd;
  border: none;
  border-radius: 8px;
  text-transform: capitalize;
  transition: all 0.4s;
  background: var(--theme-color-dark);
}

.contact-section .contact-form-3 form input:focus,
.contact-section .contact-form-3 form textarea:focus {
  outline: none;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.contact-information-box-3 {
  padding: 25px 20px;
  border-radius: 8px;
  margin-bottom: 50px;
}

.contact-information-box-3 .single-contact-info-box {
  position: relative;
  z-index: 1;
  padding: 10px 10px;
  display: block;
  border-radius: 3px;
  text-align: left;
  margin-bottom: 10px;
  overflow: hidden;
}

.contact-information-box-3 .contact-info {
  position: relative;
  z-index: 1;
}

.contact-information-box-3 .contact-info h6 {
  font-size: 18px;
  color: var(--theme-color);
  margin-bottom: 7px;
  text-transform: capitalize;
}

.contact-information-box-3 .contact-info p {
  color: var(--text-color);
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.contact-information-box-3 .single-contact-info-box .contact-info-bg-icon {
  color: #f44336;
  opacity: .2;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -25px;
  margin: 0 auto;
  z-index: -1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.contact-information-box-3 .single-contact-info-box .contact-info-bg-icon i {
  font-size: 100px;
}

.contact-section .contact-form .form-group {
  margin-bottom: 30px;
}

.contact-section .contact-form form textarea.form-control {
  height: auto;
  padding-top: 15px;
  line-height: initial;
}

.contact-section .form-message {
  margin: 0;
}


.contact-section .form-message.success {
  background: #03b103;
  color: #fff;
  padding: 10px 15px;
  border-radius: 3px;
  margin-bottom: 30px;
}

.contact-section .form-message.error {
  background: #ff4d15;
  color: #fff;
  padding: 10px 15px;
  border-radius: 3px;
  margin-bottom: 30px;
}

.contact-area .form-message.success {
  background: #03b103;
  color: #fff;
  padding: 10px 15px;
  border-radius: 3px;
  display: block;
  margin-bottom: 15px;
}

.contact-area .form-message.error {
  background: #ff4d15;
  color: #fff;
  padding: 10px 15px;
  border-radius: 3px;
  display: block;
  margin-bottom: 15px;
}

.with-errors {
  color: #dc3545;
}

.messages {
  margin-top: 30px;
}

.alert-success {
  margin-left: 15px;
}

.hidden {
  display: none;
}




/*--------------------------------------------------------------
# Particles
--------------------------------------------------------------*/
#particles-js {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

canvas {
  display: block;
  vertical-align: bottom;
}


.count-particles {
  background: #000022;
  position: absolute;
  top: 48px;
  left: 0;
  width: 80px;
  color: #13E8E9;
  font-size: .8em;
  text-align: left;
  text-indent: 4px;
  line-height: 14px;
  padding-bottom: 2px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
}

.js-count-particles {
  font-size: 1.1em;
}

#stats,
.count-particles {
  -webkit-user-select: none;
  margin-top: 5px;
  margin-left: 5px;
}

#stats {
  border-radius: 3px 3px 0 0;
  overflow: hidden;
}

.count-particles {
  border-radius: 0 0 3px 3px;
}


/*--------------------------------------------------------------
# Subscribe Section
--------------------------------------------------------------*/
/* Subscribe Section */
.subscribe-section {
  background: linear-gradient(135deg, #ff6f00 0%, #ff0000 100%);
  padding: 30px 0;
  text-align: center;
  color: white;
}

.subscribe-section h3 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}

.subscribe-section p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 25px;
}

.subscribe-box {
  display: flex;
  justify-content: center;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
  padding: 10px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.subscribe-box input {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  outline: none;
}

.subscribe-box button {
  border: none;
}

.privacy-note {
  font-size: 14px;
  opacity: 0.8;
  margin-top: 10px;
  margin-bottom: 0;
}
.modal2 {
  display: none;
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #ffffff;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #0c51a3;
  width: 400px;
  border-radius: 10px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

#contact-modal .close-button {
  color: #0c51a3;
  float: right;
  font-size: 24px;
  font-weight: bold;
}

#contact-modal .close-button:hover,
#contact-modal .close-button:focus {
  color: #00509e;
  cursor: pointer;
}

#contact-modal h2 {
  color: #0c51a3;
  margin-bottom: 15px;
  font-size: 30px;
}

#contact-modal label {
  display: block;
  margin: 10px 0 5px;
  color: #0c51a3;
  text-align: left;
}

#contact-modal input[type="text"],
#contact-modal input[type="number"],
#contact-modal textarea {
  width: calc(100% - 20px);
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #0c51a3;
  border-radius: 5px;
  background-color: #ffffff;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}
#contact-modal button[type="submit"] {
  background-color: #0c51a3;
  color: #ffffff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

#contact-modal button[type="submit"]:hover {
  background-color: #00509e;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer-section {
  background-size: cover;
  padding: 60px 0;
  border-radius: 0px;
  position: relative;
  background-attachment: fixed;
}
.footer-section a {
  color: #ffffff;
  z-index: 9;
  position: relative;
}
.footer-section:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  z-index: 0;
  opacity: 0.8;
}

.footer-cta {
  border-bottom: 1px solid #373636;
}

.copyright-text {
  margin-top: 30px;
}

.single-cta i {
  color: #c00113;
  font-size: 30px;
  float: left;
  margin-top: 8px;
}

.cta-text {
  padding-left: 15px;
  display: inline-block;
}

.cta-text h4 {
  color: #c00113;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 2px;
}

.cta-text span {
  color: #757575;
  font-size: 15px;
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-content .list {
  padding-left: 0;
}

.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}

.footer-logo {
  margin-bottom: 30px;
}

.footer-logo img {
  max-width: 200px;
}

.footer-widget ul li,
.footer-widget ul li a {
  font-size: 14px;
}

.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--text-white-color);
  line-height: 28px;
}

.footer-social-icon span {
  color: var(--theme-color);
  display: block;
  font-size: 20px;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
}

.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}

.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 41px;
  border-radius: 50%;
}

.facebook-bg {
  background: var(--color-primary);
}

.twitter-bg {
  background: var(--color-primary);
}

.google-bg {
  background: var(--color-primary);
}

.footer-widget-heading h3 {
  color: var(--theme-color);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
  position: relative;
}

.footer-widget ul li {
  display: inline-block;
  float: left;
  width: 100%;
  margin-bottom: 12px;
}

.footer-widget ul li a:hover {
  text-decoration: underline;
}

.footer-widget ul li a {
  color: var(--text-white-color);
  text-transform: capitalize;
}

.subscribe-form {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #e4e4e4;
  border: 1px solid #e4e4e4;
  color: #222222;
}

.subscribe-form button {
  position: absolute;
  right: -3px;
  background: transparent;
  border: 0;
  top: -8px;
}

.subscribe-form button i {
  color: var(--color-primary);
  font-size: 2rem;
  transform: rotate(-6deg);
}

.copyright-area {
  padding: 25px 0;
}

.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #b9b9b9;
}

.copyright-text p a {
  color: var(--theme-color);
}

.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}

.footer-menu li:hover a {
  color: var(--color-primary);
}

.footer-menu li a {
  font-size: 14px;
  color: #b9b9b9;
}

.footer-menu li a:hover {
  color: #000000;
}

/* Footer Section Styling */


.footer-content {
  position: relative;
  z-index: 1;
}

.footer-logo img {
  max-width: 180px;
}

.footer-text p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.8;
}

.footer-social-icon {
  margin-top: 20px;
}

.footer-social-icon span {
  font-size: 16px;
  margin-right: 10px;
}

.footer-social-icon a {
  color: #fff;
  margin: 0 15px;
  font-size: 22px;
  transition: color 0.3s ease;
}

.footer-social-icon a:hover {
  color: #f5a623;
}

.footer-widget-heading h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #fff;
}

.footer-widget .list li {
  list-style: none;
  margin-bottom: 15px;
}

.footer-widget .list li a {
  color: #ccc;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-widget .list li a:hover {
  color: #f5a623;
}

.subscribe-form input[type="text"] {
  padding: 15px;
  width: 100%;
  border-radius: 6px;
  border: 1px solid #555;
  background-color: transparent;
  color: #fff;
  font-size: 14px;
  overflow: hidden;
}

.subscribe-form button {
  background-color: #f5a623;
  border: none;
  padding: 15px 30px;
  /* border-radius: 30px; */
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.subscribe-form button:hover {
  background-color: #e48720;
}

.copyright-text {
  font-size: 14px;
  color: #b3b3b3;
}

.copyright-text a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.copyright-text a:hover {
  color: #f5a623;
}

/* Floating Icons Animation */
.footer-social-icon a {
  animation: floatIcon 5s ease-in-out infinite;
}

.footer-social-icon a:nth-child(1) {
  animation-delay: 0s;
}

.footer-social-icon a:nth-child(2) {
  animation-delay: 1s;
}

.footer-social-icon a:nth-child(3) {
  animation-delay: 2s;
}

.footer-social-icon a:nth-child(4) {
  animation-delay: 3s;
}

@keyframes floatIcon {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Footer Widget Columns - Responsive Design */
@media (max-width: 991px) {
  .footer-widget {
    margin-bottom: 30px;
  }

  .footer-column {
    margin-bottom: 30px;
  }

  .subscribe-form {
    margin-bottom: 15px;
  }
}</pre></body></html>