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

:root {
  --font-default:
  'Poppins', sans-serif;
  --font-primary:
  'Poppins', sans-serif;
  --font-secondary:
  'Poppins', sans-serif;
  scroll-behavior: smooth;
  --color-bg: #025add;
  --hero-overlay-color: transparent;
  --menu-color: #ffffff;
  --theme-color: #025add;
  --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: #025add;
  --light-color: #ffffff;
  --color-default: #3a3a3a;
  --color-primary: #025add;
  --color-secondary: #0c6de0;
  --color-start: #3a3a3a;
  --color-end: #3a3a3a;
  --hero-card-bg: rgb(228 227 223 / 17%);
  --box-shadow-color: rgb(82 90 101 / 10%);
}

:root.dark {
  --menu-color-bg: #565656;
  --color-bg: #000000;
  --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-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%);
}

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;
  --hero-overlay-color: #000000;
  --menu-color: #ffffff;
  --border-color: #025add;
  --theme-color-dark: #151515;
  --text-color: #ffffff;
  --text-white-color: #ffffff;
  --text-grey-color: #565656;
  --text-theme-color: #025add;
  --light-color: #000000;
  --color-default: #000000;
  --color-secondary: #0c6de0;
  --color-start: #000000;
  --color-end: #000000; 
  --hero-card-bg: rgb(0 0 0 / 83%);
  --box-shadow-color: rgb(12 109 224 / 69%);
}


#darkmode-button{
    border-radius: 50%;
    border: none;
    outline: none;
    display: grid;
    place-items: center;
    width: 45px;
    height: 45px;
    margin-left: 10px;
}

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;
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 30px 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: 30px;
}

.section-header h2 {
  font-size: 32px;
  position: relative;
  color: var(--color-primary);
}

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

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: 50px;
  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);}

/*--------------------------------------------------------------
# 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;
}

.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;
}

.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: var(--color-primary);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  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(--color-primary);
  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;
  }
}

/*--------------------------------------------------------------
# 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.sticked {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 90px;
}

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

.header.stikcy-menu {
  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);}

.small-container{
  max-width: 1080px;
  margin: auto;
  padding-left: 25px;
  padding-right: 25px;
}

/* Single Product */
.single-product .col-2 img{
  padding: 0;
}
.single-product .col-2{
  padding: 20px;
}
.single-product h4{
  margin: 20px 0;
  font-size: 22px;
  font-weight: bold;
}

.single-product select {
  width: 150px;
  height: 40px;
  padding: 5px 10px;
  font-size: 1em;
  font-weight: bold;
  color: #444;
  border: 2px solid #ccc;
  border-radius: 8px;
  background-color: #f7f7f7;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.single-product select:hover {
  border-color: #ff4500;
}

.single-product select:focus {
  outline: none;
  border-color: #ff4500;
  background-color: #fff;
}

.single-product input[type="number"] {
  width: 60px;
  height: 40px;
  font-size: 1em;
  font-weight: bold;
  text-align: center;
  border: 2px solid #ccc;
  border-radius: 8px;
  background-color: #f7f7f7;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-right: 10px;
  transition: all 0.3s ease;
}

.single-product input[type="number"]:hover,
.single-product input[type="number"]:focus {
  border-color: #ff4500;
  background-color: #fff;
  outline: none;
}

/* .single-product select{
  display: block;
  padding: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.single-product input{
  width: 50px;
  height: 40px;
  padding-left: 10px;
  font-size: 20px;
  margin-left: 10px;
  border: 1px solid #ff523b;
  margin-right: 10px;
} */
.single-product .fa{
  color: #ff523b;
  margin-left: 10px;
}
.small-img-row{
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
.small-img-col{
  flex-basis: 24%;
  cursor: pointer;
}

.single-product .btn {
  height: 40px;
  padding: 0 20px;
  font-size: 1em;
  font-weight: bold;
  color: #fff;
  background-color: #ff4500;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  align-content: center;
  margin: 0 0 15px 0;
}

.single-product .btn:hover {
  background-color: #e63e00;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.25);
}

.single-product li{
  list-style-type: disc;
  color: #ff523b;
  margin-left: 12px;
}

/* Media query for 600 screen size */
@media only screen and (max-width: 600px){

  .single-product .row{
      text-align: left;
  }
  .single-product .col-6{
      padding: 20px 0;
  }
  .single-product h1{
      font-size: 26px;
      line-height: 32px;
  }
}
/*--------------------------------------------------------------
# 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>ul>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(--menu-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>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--color-primary);
  }

  .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: 0px;
  }

  .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>a {
    color: var(--color-primary);
  }

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

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

  .navbar .dropdown .dropdown:hover>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>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>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>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: var(--color-primary);
    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
--------------------------------------------------------------*/

.left {
  text-align: right;
}
.right {
  text-align: left;
}
.list-wrap{
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.list-wrap p{
  color: var(--text-color);
}
.list-wrap:nth-child(3),
.list-wrap:nth-child(6){
  margin-bottom: 0;
}

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

.icon {
  width: 150px;
  text-align: center;
  height: 100px;
  border-radius: 50%;
}
.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;
}

/*--------------------------------------------------------------
# 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;
  filter: grayscale(1);
  opacity: 1;
  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: 150px 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: 50px;
  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), var(--color-primary));
}

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

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


/*--------------------------------------------------------------
# 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: 50px;
  margin-right: 15px;
}

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

.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(--color-primary);
  font-size: 26px;
  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 {
  font-style: italic;
  margin: 15px auto 15px auto;
  color: var(--text-color);
}

.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
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  border-radius: 10px;
  padding: 15px;
  overflow: hidden;
}

.team .member img {
  border-radius: 10px;
  overflow: hidden;
}

.team .member .member-content {
  padding: 0 20px 30px 20px;
}

.team .member h4 {
  margin-top: 16px;
  margin-bottom: 2px;
  font-size: 20px;
  color: var(--color-primary);
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 14px;
  color: var(--text-color);
}

.team .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: #6c757d;
}

.team .member .social {
  margin-top: 15px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .member .social a {
  color: var(--color-primary);
  transition: 0.3s;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e8e8e8;
}

.team .member .social a:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.team .member .social i {
  font-size: 14px;
  margin: 0 2px;
}


/*--------------------------------------------------------------
# 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 .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);
}

/*--------------------------------------------------------------
# Recent Blog Posts Section
--------------------------------------------------------------*/
.recent-posts article {
  background-color: var(--light-color);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
}

.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;
}

.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;
  }
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  position: relative;
  background: url(../images/hero-bg.png) center center;
  background-size: cover;
  padding: 60px 0 0 0;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
  margin-top: 0;
  background: linear-gradient(360deg, var(--hero-overlay-color), var(--hero-overlay-color));
}
.hero .circle{
  color: var(--color-primary);
}
@media (min-width: 1365px) {
  .hero {
    background-attachment: fixed;
  }
}

.dark-bg{
  padding: 50px 30px;
  border-radius: 8px;
}
.social {
  margin-top: 15px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  /* justify-content: space-around; */
  gap: 10px;
}

.social a {
  color: var(--text-color);
  transition: 0.3s;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social a:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.social i {
  font-size: 14px;
  margin: 0 2px;
  color: var(--color-primary);
}
.mr-20{
  margin-right: 20px !important;
}

.hero h2 {
  font-size: 40px;
  margin-bottom: 20px;
  color: var(--hero-text-color);
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}
.hero span{
  color: var(--color-primary);
  font-weight: bold;
}

.hero p {
  color: var(--hero-text-color);
  font-weight: 400;
  margin-bottom: 30px;
}

.btn-get-started {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 20px;
  border-radius: 50px;
  transition: 0.3s;
  color: var(--text-white-color);
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
}

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

.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;
  }
  .hero h2 {
    font-size: 22px;
  }
  .call-to-action {
    background: url(../images/cta-bg.jpg) center left;
      background-size: cover;
      padding: 150px 60px;
      border-radius: 0px;
      overflow: hidden;
  }
}

@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);

  }
}
@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);}

/*--------------------------------------------------------------
# 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: 50px;
  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: 50px;
}

.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 50px;
  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: 50px;
  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: 50px;
}

.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: 50px;
  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 .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(--color-primary);
  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;
}


/*--------------------------------------------------------------
# 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;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  color: var(--text-white-color);
  line-height: 1;
  transition: all 0.3s ease-in-out;
  padding: 15px 25px;
  border-radius: 30px;
  margin-bottom: 20px;
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
}

.portfolio .portfolio-flters li:hover,
.portfolio .portfolio-flters li.filter-active {
  color: var(--text-white-color);
  background: linear-gradient(45deg, var(--color-secondary), var(--color-primary));
}

.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);
  background: var(--color-secondary);
  border-radius: 0 8px 0 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);
}

/*--------------------------------------------------------------
# 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: 30px;
    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), var(--color-primary));
}

/*--------------------------------------------------------------
# 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: 50px;
}

.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 50px;
  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: 50px;
  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: 50px;
}

.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: 50px;
  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: #000;
  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(--text-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-form button[type=submit]{
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 40px;
  border-radius: 50px;
  transition: 0.3s;
  border: 0;
  color: var(--text-white-color);
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
}
.contact-form button[type=submit]:hover{
  color: var(--text-white-color);
  background: linear-gradient(45deg, var(--color-secondary), var(--color-primary));
}

.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;
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/


.footer-section {
  background: url(../images/hero-bg.png) center left;
  background-size: cover;
  padding: 60px 0;
  border-radius: 0px;
  position: relative;
  background-attachment: fixed;
}
.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(--color-primary);
  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(--color-primary);
  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 {
  color: var(--color-primary);
}

.footer-widget ul li a {
  color: var(--text-white-color);
  text-transform: capitalize;
}

.subscribe-form {
  position: relative;
  overflow: hidden;
  border-radius: 50px;
}

.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #e4e4e4;
  border: 1px solid #e4e4e4;
  color: #222222;
  outline: none;
}

.subscribe-form button {
  position: absolute;
  right: -3px;
  background: transparent;
  border: 0;
  top: -8px;
}

.subscribe-form button i {
  color: var(--color-primary);
  font-size: 3rem;
  transform: rotate(-6deg);
}

.copyright-area {
  padding: 25px 0;
}

.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #b9b9b9;
}

.copyright-text p a {
  color: var(--color-primary);
}

.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;
}

/* Hi */

.portfolio-wrap {
  position: relative;
}

.portfolio-image {
  position: relative;
}

.portfolio-image img {
  width: 100%;
  height: auto;
}

.portfolio-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 10px;
  font-size: 18px;
}

/* Modal Layout */
.modal-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-image {
  flex: 1;
  max-width: 50%;
}

.modal-text {
  flex: 1;
  max-width: 50%;
}

.modal-image img {
  width: 100%;
  height: auto;
}

/* Modal Layout */
.modal-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-image {
  flex: 1;
  max-width: 50%;
}

.modal-text {
  flex: 1;
  max-width: 50%;
}

.modal-image img {
  width: 100%;
  height: auto;
}

.stat-card-link {
  text-decoration: none;
  display: block;
}

.stat-card-link:hover {
  text-decoration: none;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1.2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  height: auto; /* Changed from 100% to auto */
  min-height: fit-content;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.stat-icon {
  margin-bottom: 0.8rem; /* Reduced margin */
}

.stat-icon img {
  width: 50px; /* Slightly reduced size */
  height: 50px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.stat-content {
  text-align: left;
  margin-bottom: 0; /* Ensure no extra margin at bottom */
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff !important;
  line-height: 1;  /* Reduced line height */
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.stat-number span {
  color: #ffffff !important; /* Enforced white color for counter */
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  padding: 0;
  font-weight: 500;
  line-height: 1.2; /* Add this to control line height */
}

    /* Portfolio section specific styles */
    .custom-portfolio-section {
      padding: 30px 0;
      background: #f8f9fa;
  }

  .custom-portfolio-section .custom-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
  }

  .custom-portfolio-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 25px;
      padding: 20px 0;
  }

  .custom-portfolio-card {
      position: relative;
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
      background: #fff;
      transition: all 0.3s ease;
      cursor: pointer;
      display: block;
  }

  .custom-portfolio-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  }

  .custom-portfolio-link {
      position: relative;
      display: block;
      text-decoration: none;
      color: inherit;
      background: #fff;
  }

  .custom-portfolio-link img {
      width: 100%;
      height: 250px;
      object-fit: contain;
      background: #fff;
      transition: transform 0.3s ease;
      display: block;
  }

  .custom-portfolio-card:hover .custom-portfolio-link img {
      transform: scale(1.05);
  }

  .custom-portfolio-details {
      padding: 20px;
      background: #fff;
  }

  .custom-portfolio-details h3 {
      font-family: 'Poppins', sans-serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: #333;
      margin: 0 0 8px 0;
      letter-spacing: -0.02em;
  }

  .custom-portfolio-details p {
      font-family: 'Poppins', sans-serif;
      font-size: 0.9rem;
      color: #666;
      margin: 0;
      font-weight: 400;
  }

  .custom-portfolio-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, #0ea2bd, #2196F3);
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 0.3s ease;
  }

  .custom-portfolio-link .image-container {
      position: relative;
      width: 100%;
      padding-top: 75%; /* 4:3 aspect ratio container */
      overflow: hidden;
  }
  
  .custom-portfolio-card:hover::after {
      transform: scaleX(1);
      transform-origin: left;
  }

  .custom-portfolio-link img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover; /* This will cover the area while maintaining aspect ratio */
      object-position: center;
      transition: transform 0.3s ease, opacity 0.3s ease;
  }

  /* Portfolio filters styles */
  .portfolio-filters-container {
      background: rgba(2, 90, 221, 0.03);
      padding: 20px;
      border-radius: 16px;
      margin-bottom: 40px;
  }

  .portfolio-flters {
      padding: 0;
      margin: 0;
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      max-width: 1200px;
      margin: 0 auto;
  }

  .portfolio-flters li {
      margin: 0;
  }

  .portfolio-flters li a {
      display: inline-flex;
      align-items: center;
      padding: 8px 18px;
      font-size: 14px;
      font-weight: 500;
      line-height: 1;
      color: #025add;
      text-decoration: none;
      transition: all 0.2s ease;
      border-radius: 8px;
      background: transparent;
      border: 1px solid #025add;
  }

  .portfolio-flters li a:hover {
      background: rgba(2, 90, 221, 0.1);
  }

  .portfolio-flters li a.filter-active {
      background: #025add;
      color: white;
  }

  @media (max-width: 768px) {
      .portfolio-filters-container {
          padding: 15px;
          border-radius: 12px;
          margin: 0 15px 30px 15px;
      }

      .portfolio-flters {
          gap: 8px;
      }
      
      .portfolio-flters li a {
          padding: 6px 14px;
          font-size: 13px;
      }
  }

  /* Modern Services Section Styles */
.modern-services {
  /* padding: clamp(60px, 8vw, 120px) 0; */
  background: var(--light-color);
  position: relative;
}

.modern-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 1rem 0;
}

.modern-service-card {
  background: var(--light-color);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
}

.modern-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      45deg,
      rgba(2, 90, 221, 0.05),
      rgba(12, 109, 224, 0.05)
  );
  opacity: 0;
  transition: all 0.4s ease;
}

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

.modern-service-card:hover::before {
  opacity: 1;
}

.modern-service-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 1.5rem;
  position: relative;
  transition: all 0.4s ease;
}

.modern-service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.4s ease;
}

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

.modern-service-title {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-color);
  position: relative;
}

.modern-service-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.modern-service-title a:hover {
  color: var(--color-primary);
}

.modern-service-description {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.6;
  color: var(--text-grey-color);
  margin: 0;
  position: relative;
}

/* Enhanced Animation Classes */
.modern-service-card[data-aos="fade-up"] {
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease, box-shadow 0.4s ease;
}

.modern-service-card[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
  opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .modern-services-grid {
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .modern-service-card {
      padding: 2rem 1.5rem;
  }
  
  .modern-service-icon {
      width: 60px;
      height: 60px;
  }
}

@media (max-width: 576px) {
  .modern-services {
      padding: 60px 0;
  }
  
  .modern-services-grid {
      grid-template-columns: 1fr;
      gap: 1.25rem;
  }
}

/* Dark Mode Adjustments */
:root.dark .modern-service-card {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.05);
}

:root.dark .modern-service-card::before {
  background: linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.02),
      rgba(255, 255, 255, 0.04)
  );
}

:root.dark .modern-service-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}


/* Modern Features Section Styles */
.modern-features {
  /* padding: clamp(60px, 8vw, 120px) 0; */
  background: var(--light-color);
  position: relative;
  overflow: hidden;
}

.modern-features-container {
  position: relative;
  z-index: 2;
}

/* Feature Item Styles */
.modern-feature-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 16px;
  transition: all 0.4s ease;
  background: var(--light-color);
  position: relative;
}

.modern-feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Left Side Features */
.modern-features-left .modern-feature-item {
  text-align: right;
  flex-direction: row-reverse;
}

/* Right Side Features */
.modern-features-right .modern-feature-item {
  text-align: left;
}

/* Feature Icon */
.modern-feature-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  padding: 1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(2, 90, 221, 0.05), rgba(12, 109, 224, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.modern-feature-item:hover .modern-feature-icon {
  transform: scale(1.1);
  background: linear-gradient(135deg, rgba(2, 90, 221, 0.1), rgba(12, 109, 224, 0.1));
}

.modern-feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.4s ease;
}

/* Feature Content */
.modern-feature-content {
  flex: 1;
}

.modern-feature-content h4 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.modern-feature-content p {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.6;
  color: var(--text-grey-color);
  margin: 0;
}

/* Center Image */
.modern-features-center {
  padding: 2rem;
  position: relative;
}

.modern-center-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.modern-center-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  transition: all 0.6s ease;
}

.modern-center-image:hover img {
  transform: scale(1.05);
}

/* Decorative Elements */
.modern-features::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(2, 90, 221, 0.03) 0%, transparent 70%);
  z-index: 1;
}

.modern-features::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(12, 109, 224, 0.03) 0%, transparent 70%);
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 991px) {
  .modern-features-center {
      order: -1;
      margin-bottom: 3rem;
  }
  
  .modern-feature-item {
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
  }
}

@media (max-width: 768px) {
  .modern-feature-item {
      flex-direction: column !important;
      text-align: center !important;
      padding: 1.5rem;
  }
  
  .modern-feature-icon {
      width: 60px;
      height: 60px;
  }
  
  .modern-features-left .modern-feature-item,
  .modern-features-right .modern-feature-item {
      padding: 1.5rem;
  }
}

/* Dark Mode Adjustments */
:root.dark .modern-feature-item {
  background: rgba(255, 255, 255, 0.02);
}

:root.dark .modern-feature-icon {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

:root.dark .modern-feature-item:hover {
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

:root.dark .modern-feature-item:hover .modern-feature-icon {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
}

/* Modern Testimonials Section Styles */
.modern-testimonials {
    /* padding: clamp(60px, 8vw, 120px) 0; */
    background: var(--light-color);
    position: relative;
    overflow: hidden;
}

/* Background Decorations */
.modern-testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(2, 90, 221, 0.03) 0%, transparent 70%);
    z-index: 1;
}

.modern-testimonials::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(12, 109, 224, 0.03) 0%, transparent 70%);
    z-index: 1;
}

/* Testimonial Card Styles */
.modern-testimonial-card {
    background: var(--light-color);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.modern-testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(2, 90, 221, 0.03), rgba(12, 109, 224, 0.03));
    opacity: 0;
    transition: all 0.4s ease;
}

.modern-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.modern-testimonial-card:hover::before {
    opacity: 1;
}

/* Header Section */
.modern-testimonial-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.modern-testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-primary);
    position: relative;
}

.modern-testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modern-testimonial-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.3rem;
    color: var(--text-color);
}

.modern-testimonial-info h4 {
    font-size: 0.9rem;
    color: var(--text-grey-color);
    margin: 0 0 0.5rem;
    font-weight: 500;
}

/* Stars Rating */
.modern-rating {
    display: flex;
    gap: 0.2rem;
}

.modern-rating i {
    color: #FFD700;
    font-size: 0.9rem;
}

/* Compact Testimonials Section Styles */
.compact-testimonials {
  /* padding: clamp(60px, 8vw, 120px) 0; */
  background: var(--light-color);
  position: relative;
  overflow: hidden;
}

/* Card Styles */
.compact-testimonial-card {
  background: var(--light-color);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  min-height: 300px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 1rem;
}

.compact-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Content Layout */
.compact-testimonial-content {
  flex: 1;
  position: relative;
  padding: 0 1rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-grey-color);
  margin-bottom: 2rem;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Quote Icons */
.compact-testimonial-content::before {
  content: "\201C";
  position: absolute;
  left: -0.5rem;
  top: -1.5rem;
  font-size: 4rem;
  font-family: serif;
  line-height: 1;
  color: var(--color-primary);
  opacity: 0.2;
}

.compact-testimonial-content::after {
  content: "\201D";
  position: absolute;
  right: -0.5rem;
  bottom: -2rem;
  font-size: 4rem;
  font-family: serif;
  line-height: 1;
  color: var(--color-primary);
  opacity: 0.2;
}

/* Author Info */
.compact-testimonial-author {
  text-align: center;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.compact-testimonial-author h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.3rem;
  color: var(--text-color);
}

.compact-testimonial-author h4 {
  font-size: 0.9rem;
  color: var(--text-grey-color);
  margin: 0 0 0.5rem;
  font-weight: 500;
}

/* Rating Stars */
.compact-rating {
  display: flex;
  justify-content: center;
  gap: 0.2rem;
  margin-top: 0.5rem;
}

.compact-rating i {
  color: #FFD700;
  font-size: 0.9rem;
}

/* Swiper Customization */
.testimonials-swiper {
  padding: 1rem 0.5rem 3rem 0.5rem;
  margin: 0 -1rem;
}

.testimonials-swiper .swiper-slide {
  height: auto;
}

.testimonials-swiper .swiper-pagination {
  bottom: 0;
}

.testimonials-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  opacity: 0.3;
  transition: all 0.3s ease;
}

.testimonials-swiper .swiper-pagination-bullet-active {
  width: 20px;
  border-radius: 5px;
  opacity: 1;
}

/* Dark Mode */
:root.dark .compact-testimonial-card {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.05);
}

:root.dark .compact-testimonial-author {
  border-top-color: rgba(255, 255, 255, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .compact-testimonial-card {
      padding: 2rem 1.5rem;
  }
  
  .compact-testimonial-content {
      -webkit-line-clamp: 5;
  }
}

@media (max-width: 767px) {
  .compact-testimonial-card {
      padding: 1.5rem;
      margin: 0.5rem;
  }
  
  .compact-testimonial-content {
      font-size: 0.95rem;
      -webkit-line-clamp: 4;
  }
  
  .compact-testimonial-content::before,
  .compact-testimonial-content::after {
      font-size: 3rem;
  }
}

/* Homepage Bite-sized FAQ Styles */
.bite-sized-faq {
  padding: 30px 0;
  background: var(--light-color);
}

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

.bite-sized-faq-item {
  background: var(--light-color);
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  overflow: hidden;
}

.bite-sized-faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.bite-sized-faq-question {
  padding: 20px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.bite-sized-faq-question h3 {
  margin: 0;
  font-size: 18px;
  color: var(--text-color);
  font-weight: 500;
  flex: 1;
  padding-right: 20px;
}

.bite-sized-faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}

.bite-sized-faq-icon i {
  color: var(--color-primary);
  font-size: 20px;
  transition: all 0.3s ease;
}

.bite-sized-faq-icon i.bi-dash {
  display: none;
}

.bite-sized-faq-item.active .bite-sized-faq-icon i.bi-plus {
  display: none;
}

.bite-sized-faq-item.active .bite-sized-faq-icon i.bi-dash {
  display: block;
}

.bite-sized-faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
}

.bite-sized-faq-item.active .bite-sized-faq-answer {
  padding: 20px 30px;
  max-height: 1000px;
  opacity: 1;
}

.bite-sized-faq-answer p {
  margin: 0;
  color: var(--text-grey-color);
  line-height: 1.6;
}

.bite-sized-faq-footer {
  text-align: center;
  margin-top: 40px;
}

/* Comprehensive FAQ Page Styles */
.comprehensive-faq {
  padding: 10px 0;
  background: var(--light-color);
}

.comprehensive-faq-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 50px 0;
}

.comprehensive-faq-nav-item {
  padding: 12px 24px;
  border-radius: 50px;
  border: 1px solid var(--color-primary);
  background: transparent;
  color: var(--text-color);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 15px;
}

.comprehensive-faq-nav-item:hover,
.comprehensive-faq-nav-item.active {
  background: var(--color-primary);
  color: white;
}

.comprehensive-faq-category {
  display: none;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.comprehensive-faq-category.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.comprehensive-faq-category-title {
  font-size: 24px;
  color: var(--color-primary);
  margin-bottom: 30px;
  font-weight: 600;
}

.comprehensive-faq-item {
  background: var(--light-color);
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.comprehensive-faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.comprehensive-faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comprehensive-faq-question h4 {
  margin: 0;
  font-size: 18px;
  color: var(--text-color);
  font-weight: 500;
  flex: 1;
  padding-right: 20px;
}

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

.comprehensive-faq-item.active .comprehensive-faq-answer {
  padding: 25px 30px;
  max-height: 1000px;
  opacity: 1;
}

.comprehensive-faq-answer p {
  margin: 0 0 15px 0;
  color: var(--text-grey-color);
  line-height: 1.6;
}

.comprehensive-faq-answer p:last-child {
  margin-bottom: 0;
}

.comprehensive-faq-answer ul,
.comprehensive-faq-answer ol {
  margin: 15px 0;
  padding-left: 20px;
}

.comprehensive-faq-answer li {
  color: var(--text-grey-color);
  margin-bottom: 10px;
  line-height: 1.6;
}

.comprehensive-faq-answer li:last-child {
  margin-bottom: 0;
}

/* Dark Mode Adjustments */
:root.dark .bite-sized-faq-item,
:root.dark .comprehensive-faq-item {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.05);
}

:root.dark .bite-sized-faq-question,
:root.dark .comprehensive-faq-question {
  border-bottom-color: rgba(255, 255, 255, 0.05);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .bite-sized-faq,
  .comprehensive-faq {
    padding: 60px 0;
  }

  .bite-sized-faq-question h3,
  .comprehensive-faq-question h4 {
    font-size: 16px;
  }

  .comprehensive-faq-nav {
    margin: 30px 0;
    gap: 10px;
  }

  .comprehensive-faq-nav-item {
    padding: 10px 20px;
    font-size: 14px;
  }

  .bite-sized-faq-question,
  .comprehensive-faq-question,
  .bite-sized-faq-item.active .bite-sized-faq-answer,
  .comprehensive-faq-item.active .comprehensive-faq-answer {
    padding: 15px 20px;
  }

  .comprehensive-faq-category-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .comprehensive-faq-nav-item {
    padding: 8px 16px;
    font-size: 13px;
  }

  .bite-sized-faq-question h3,
  .comprehensive-faq-question h4 {
    font-size: 15px;
  }
}

/* Enhanced List Styles for FAQs */

/* Base styles for all lists */
.bite-sized-faq-answer ul,
.bite-sized-faq-answer ol,
.comprehensive-faq-answer ul,
.comprehensive-faq-answer ol {
    margin: 15px 0;
    padding-left: 0;
    list-style: none;
}

/* Unordered Lists - Modern Arrow Bullets */
.comprehensive-faq-answer ul li,
.bite-sized-faq-answer ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    transition: transform 0.2s ease;
}

.comprehensive-faq-answer ul li::before,
.bite-sized-faq-answer ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23025add' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.2s ease;
}

.comprehensive-faq-answer ul li:hover,
.bite-sized-faq-answer ul li:hover {
    transform: translateX(5px);
}

/* Ordered Lists - Modern Numbered Style */
.comprehensive-faq-answer ol,
.bite-sized-faq-answer ol {
    counter-reset: faq-counter;
}

.comprehensive-faq-answer ol li,
.bite-sized-faq-answer ol li {
    position: relative;
    padding-left: 45px;
    margin-bottom: 15px;
    min-height: 32px;
    display: flex;
    align-items: center;
}

.comprehensive-faq-answer ol li::before,
.bite-sized-faq-answer ol li::before {
    counter-increment: faq-counter;
    content: counter(faq-counter);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(2, 90, 221, 0.2);
    transition: all 0.3s ease;
}

.comprehensive-faq-answer ol li:hover::before,
.bite-sized-faq-answer ol li:hover::before {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(2, 90, 221, 0.3);
}

/* Dark Mode Adjustments */
:root.dark .comprehensive-faq-answer ul li::before,
:root.dark .bite-sized-faq-answer ul li::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2314929a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='m12 5 7 7-7 7'/%3E%3C/svg%3E");
}

:root.dark .comprehensive-faq-answer ol li::before,
:root.dark .bite-sized-faq-answer ol li::before {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    box-shadow: 0 2px 8px rgba(20, 146, 154, 0.2);
}

:root.dark .comprehensive-faq-answer ol li:hover::before,
:root.dark .bite-sized-faq-answer ol li:hover::before {
    box-shadow: 0 4px 12px rgba(20, 146, 154, 0.3);
}

/* Nested Lists */
.comprehensive-faq-answer ul ul,
.comprehensive-faq-answer ol ul,
.bite-sized-faq-answer ul ul,
.bite-sized-faq-answer ol ul {
    margin: 10px 0 5px 0;
}

.comprehensive-faq-answer ul ul li::before,
.comprehensive-faq-answer ol ul li::before,
.bite-sized-faq-answer ul ul li::before,
.bite-sized-faq-answer ol ul li::before {
    width: 12px;
    height: 12px;
    opacity: 0.8;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .comprehensive-faq-answer ul li,
    .bite-sized-faq-answer ul li {
        padding-left: 24px;
        margin-bottom: 10px;
    }

    .comprehensive-faq-answer ul li::before,
    .bite-sized-faq-answer ul li::before {
        width: 14px;
        height: 14px;
    }

    .comprehensive-faq-answer ol li,
    .bite-sized-faq-answer ol li {
        padding-left: 35px;
        min-height: 26px;
    }

    .comprehensive-faq-answer ol li::before,
    .bite-sized-faq-answer ol li::before {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .comprehensive-faq-answer ul li,
    .bite-sized-faq-answer ul li {
        padding-left: 20px;
    }

    .comprehensive-faq-answer ol li,
    .bite-sized-faq-answer ol li {
        padding-left: 30px;
    }
}

/* Enhanced Hero Section Styles */
.enhanced-hero {
  width: 100%;
  position: relative;
  background: url(../images/hero-bg.png) center center;
  background-size: cover;
  padding: 60px 0 0 0;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.enhanced-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(360deg, var(--hero-overlay-color), var(--hero-overlay-color));
  opacity: 0.6;
  z-index: 0;
}

.enhanced-hero-content {
  padding: 50px 30px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.enhanced-hero-wrapper {
  position: relative;
  z-index: 1;
}

.enhanced-hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--hero-text-color);
  font-weight: 600;
}

.enhanced-hero-title .highlight-text {
  color: var(--color-primary);
  font-weight: 700;
  display: inline-block;
}

.enhanced-hero-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--hero-text-color);
  opacity: 0.9;
}

.enhanced-hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.enhanced-hero-btn {
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 160px;
}

.enhanced-hero-btn.primary-btn {
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  color: white;
  border: none;
}

.enhanced-hero-btn.secondary-btn {
  background: transparent;
  color: white;
  border: 2px solid var(--color-primary);
}

.enhanced-hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Enhanced Stats Section */
.enhanced-stats-section {
  margin-top: 3rem;
}

.enhanced-stat-card {
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
}

.enhanced-stat-inner {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.enhanced-stat-card:hover .enhanced-stat-inner {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.enhanced-stat-icon {
  margin-bottom: 1rem;
}

.enhanced-stat-icon img {
  width: 48px;
  height: 48px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.enhanced-stat-content {
  text-align: left;
}

.enhanced-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.enhanced-stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.2;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .enhanced-hero {
      height: auto;
      min-height: auto;
      padding: 120px 0 60px;
  }

  .enhanced-hero-content {
      margin-top: 2rem;
      padding: 30px 20px;
  }

  .enhanced-hero-buttons {
      justify-content: center;
  }

  .enhanced-hero-btn {
      min-width: 140px;
      padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .enhanced-hero-title {
      text-align: center;
  }

  .enhanced-hero-description {
      text-align: center;
  }

  .enhanced-hero-buttons {
      justify-content: center;
  }

  .enhanced-stat-inner {
      padding: 1.25rem;
  }

  .enhanced-stat-number {
      font-size: 2rem;
  }

  .enhanced-stat-label {
      font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .enhanced-hero-btn {
      width: 100%;
      margin: 0.5rem 0;
  }

  .enhanced-stat-card {
      margin-bottom: 1rem;
  }
}

/* Dark Mode Adjustments */
:root.dark .enhanced-hero-content {
  background: rgba(0, 0, 0, 0.5);
}

:root.dark .enhanced-stat-inner {
  background: rgba(0, 0, 0, 0.3);
}

/* These are additional styles you can add to enhance your existing hero section */

/* Enhance the stat cards while keeping their original design */
.stat-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Improve the hero text responsiveness */
@media (max-width: 991px) {
  .hero h2 {
      font-size: clamp(28px, 5vw, 40px);
      line-height: 1.3;
  }
  
  .hero p {
      font-size: clamp(16px, 2vw, 18px);
      line-height: 1.6;
  }

  .stat-card {
      margin-bottom: 15px;
  }
}

/* Enhance mobile layout */
@media (max-width: 768px) {
  .dark-bg {
      padding: 40px 25px;
      margin: 0 15px;
      border-radius: 12px;
  }

  .stats-cards {
      margin-top: 2rem !important;
  }

  .stat-card {
      padding: 1.2rem;
  }
}

/* Add subtle animation to the hero content */
.hero .dark-bg {
  animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Minimal Contact Styles */
.minimal-contact {
  padding: 40px 0;
  background: var(--light-color);
}

.minimal-contact-header {
  margin-bottom: 60px;
}

.minimal-contact-header h2 {
  font-size: 48px;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.minimal-contact-header p {
  font-size: 18px;
  color: #b8651d;
  margin: 0;
}

/* Contact Info Styles */
.minimal-contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.minimal-info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: #f8f9fa;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.minimal-info-card:hover {
  transform: translateY(-5px);
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.minimal-info-icon {
  flex-shrink: 0;
}

.minimal-info-icon .icon-wrapper {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.minimal-info-icon i {
  font-size: 20px;
  color: white;
}

.minimal-info-card:hover .icon-wrapper {
  transform: scale(1.1);
}

.minimal-info-content {
  flex: 1;
}

.minimal-info-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.minimal-info-content p {
  font-size: 15px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* Form Styles */
.minimal-contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.minimal-form-group {
  position: relative;
  margin-bottom: 8px;
}

.minimal-form-control {
  width: 100%;
  padding: 12px 0;
  font-size: 16px;
  color: #333;
  background: transparent;
  border: none;
  border-bottom: 1px solid #ddd;
  transition: all 0.3s ease;
}

.minimal-form-control:focus {
  outline: none;
}

.minimal-form-group label {
  position: absolute;
  left: 0;
  top: 12px;
  font-size: 16px;
  color: #666;
  transition: all 0.3s ease;
  pointer-events: none;
}

.minimal-form-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: all 0.3s ease;
}

.minimal-form-control:focus ~ .minimal-form-line,
.minimal-form-control:valid ~ .minimal-form-line {
  width: 100%;
}

.minimal-form-control:focus ~ label,
.minimal-form-control:valid ~ label {
  top: -20px;
  font-size: 14px;
  color: var(--color-primary);
}

textarea.minimal-form-control {
  min-height: 120px;
  resize: vertical;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px;
}

textarea.minimal-form-control ~ label {
  top: 12px;
  left: 12px;
}

textarea.minimal-form-control:focus ~ label,
textarea.minimal-form-control:valid ~ label {
  top: -20px;
  left: 0;
}

.minimal-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  font-size: 16px;
  color: white;
  background: var(--color-primary);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.minimal-submit-btn svg {
  transition: transform 0.3s ease;
}

.minimal-submit-btn:hover {
  background: var(--color-secondary);
}

.minimal-submit-btn:hover svg {
  transform: translateX(5px);
}

/* Dark Mode */
:root.dark .minimal-info-card {
  background: rgba(255, 255, 255, 0.03);
}

:root.dark .minimal-info-card:hover {
  background: rgba(255, 255, 255, 0.05);
}

:root.dark .minimal-contact-form {
  background: rgba(255, 255, 255, 0.03);
}

:root.dark .minimal-form-control {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.1);
}

:root.dark .minimal-form-group label {
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 991px) {
  .minimal-contact {
      padding: 60px 0;
  }

  .minimal-contact-header h2 {
      font-size: 36px;
  }

  .minimal-contact-info {
      margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .minimal-contact-header h2 {
      font-size: 32px;
  }

  .minimal-contact-form {
      padding: 30px 20px;
  }

  .minimal-info-card {
      padding: 20px;
  }

  .minimal-info-icon .icon-wrapper {
      width: 40px;
      height: 40px;
  }

  .minimal-submit-btn {
      width: 100%;
      justify-content: center;
  }
}

/* About Page Styles */
.about-hero {
  padding: 120px 0 80px;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/about-bg.jpg');
  background-size: cover;
  background-position: center;
  color: white;
}

.about-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.about-hero-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  opacity: 0.9;
  line-height: 1.6;
}

.about-hero-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.about-hero-image img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.about-hero-image:hover img {
  transform: scale(1.05);
}

/* Vision & Mission Section */
.about-vision-mission {
  padding: 80px 0;
  background: var(--light-color);
}

.vision-card, .mission-card {
  padding: 40px;
  border-radius: 20px;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.vision-card:hover, .mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.vision-icon, .mission-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.vision-icon img, .mission-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.vision-card h3, .mission-card h3 {
  font-size: 24px;
  color: var(--color-primary);
  margin-bottom: 15px;
}

.vision-card p, .mission-card p {
  color: var(--text-grey-color);
  line-height: 1.6;
  margin: 0;
}

/* Approach Section */
.about-approach {
  padding: 80px 0;
  background: var(--theme-color-dark);
}

.approach-timeline {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0;
  padding: 0 20px;
}

.approach-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--color-primary);
}

.approach-item {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}

.approach-item:last-child {
  margin-bottom: 0;
}

.approach-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(2, 90, 221, 0.2);
  z-index: 1;
  transition: all 0.3s ease;
}

.approach-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(2, 90, 221, 0.3);
}

.approach-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.approach-content {
  margin-left: 30px;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  flex: 1;
}

.approach-content h4 {
  color: var(--color-primary);
  margin-bottom: 10px;
  font-size: 20px;
}

.approach-content p {
  color: var(--text-grey-color);
  margin: 0;
  line-height: 1.6;
}

/* Why Choose Us Section */
.about-why-us {
  padding: 80px 0;
  background: var(--light-color);
}

.why-us-card {
  padding: 40px 30px;
  border-radius: 15px;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.why-us-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.why-us-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.why-us-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.why-us-card:hover .why-us-icon img {
  transform: scale(1.1);
}

.why-us-card h4 {
  color: var(--color-primary);
  margin-bottom: 15px;
  font-size: 20px;
}

.why-us-card p {
  color: var(--text-grey-color);
  margin: 0;
  line-height: 1.6;
}

/* Testimonials Section */
.about-testimonials {
  padding: 80px 0;
  background: var(--theme-color-dark);
}

.testimonial-card {
  padding: 40px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  margin: 15px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-rating {
  color: #FFD700;
  margin-bottom: 20px;
}

.testimonial-rating i {
  margin-right: 2px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-grey-color);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-info h5 {
  margin: 0;
  font-size: 18px;
  color: var(--color-primary);
  font-weight: 600;
}

.author-info span {
  font-size: 14px;
  color: var(--text-grey-color);
}

/* CTA Section */
.about-cta {
  padding: 100px 0;
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 600;
}

.cta-content p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.6;
}

.cta-content .btn-get-started {
  background: white;
  color: var(--color-primary);
  border: none;
}

.cta-content .btn-get-started:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .about-hero {
      padding: 80px 0;
      text-align: center;
  }

  .about-hero-image {
      margin-top: 40px;
  }

  .approach-timeline::before {
      left: 40px;
  }

  .approach-item {
      flex-direction: column;
      align-items: flex-start;
      padding-left: 80px;
  }

  .approach-icon {
      position: absolute;
      left: 0;
      top: 0;
      width: 60px;
      height: 60px;
  }

  .approach-content {
      margin-left: 0;
      margin-top: 20px;
      width: 100%;
  }

  .cta-content h2 {
      font-size: 30px;
  }

  .cta-content p {
      font-size: 16px;
  }
}

@media (max-width: 768px) {
  .vision-card, .mission-card {
      padding: 30px;
  }

  .why-us-card {
      padding: 30px 20px;
  }

  .testimonial-card {
      padding: 30px;
  }
}

@media (max-width: 576px) {
  .about-hero-content h1 {
      font-size: 28px;
  }

  .vision-icon, .mission-icon {
      width: 60px;
      height: 60px;
  }

  .approach-icon img {
      width: 30px;
      height: 30px;
  }

  .testimonial-text {
      font-size: 15px;
  }

  .cta-content h2 {
      font-size: 26px;
  }
}

/* Dark Mode Adjustments */
:root.dark .vision-card,
:root.dark .mission-card,
:root.dark .approach-content,
:root.dark .why-us-card,
:root.dark .testimonial-card {
  background: rgba(255, 255, 255, 0.03);
}

:root.dark .vision-card:hover,
:root.dark .mission-card:hover,
:root.dark .why-us-card:hover,
:root.dark .testimonial-card:hover {
  background: rgba(255, 255, 255, 0.05);
}

:root.dark .testimonial-text {
  color: rgba(255, 255, 255, 0.8);
}

:root.dark .approach-content,
:root.dark .why-us-card p,
:root.dark .vision-card p,
:root.dark .mission-card p {
  color: rgba(255, 255, 255, 0.7);
}

/* Enhanced About Hero Styles */
.enhanced-about-hero {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #0B1B35 0%, #1a2942 100%);
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

/* Particle Background */
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.3;
}

/* Content Styles */
.hero-content-wrapper {
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  font-size: 18px;
  color: white;
  margin-bottom: 20px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: white;
  line-height: 1.2;
  margin-bottom: 25px;
  font-weight: 600;
}

.gradient-text {
  background: linear-gradient(45deg, var(--color-primary), #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.hero-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 600px;
}

/* Image Section Styles */
.hero-image-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.main-image {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.float-element {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 3s ease-in-out infinite;
}

.float-element:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.float-element:nth-child(2) {
  top: 50%;
  right: 10%;
  animation-delay: 1s;
}

.float-element:nth-child(3) {
  bottom: 20%;
  left: 20%;
  animation-delay: 2s;
}

.tech-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

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

/* Responsive Adjustments */
@media (max-width: 991px) {
  .enhanced-about-hero {
      padding: 80px 0;
      text-align: center;
  }

  .hero-content-wrapper {
      margin-bottom: 50px;
  }

  .hero-description {
      margin: 0 auto 30px;
  }

  .hero-image-wrapper {
      margin-top: 40px;
  }

  .float-element {
      width: 50px;
      height: 50px;
  }

  .tech-icon {
      width: 25px;
      height: 25px;
  }
}

@media (max-width: 768px) {
  .hero-title {
      font-size: 2rem;
  }

  .hero-subtitle {
      font-size: 16px;
  }

  .hero-description {
      font-size: 16px;
  }

  .float-element {
      width: 40px;
      height: 40px;
  }

  .tech-icon {
      width: 20px;
      height: 20px;
  }
}

/* Dark Mode Adjustments */
:root.dark .enhanced-about-hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

:root.dark .float-element {
  background: rgba(255, 255, 255, 0.05);
}

/* Detailed Services Section Styles */
.detailed-services-section {
  padding: 80px 0;
  background: var(--light-color);
}

.detailed-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 30px;
  padding: 30px 0;
}

.detailed-service-card {
  background: var(--light-color);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.4s ease;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.detailed-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--color-primary);
}

.detailed-service-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.detailed-service-icon {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.detailed-service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.4s ease;
}

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

.detailed-service-header h3 {
  font-size: 24px;
  color: var(--text-color);
  margin: 0;
  font-weight: 600;
}

.detailed-service-content {
  flex: 1;
}

.service-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-grey-color);
  margin-bottom: 25px;
}

.service-features {
  margin-bottom: 25px;
}

.service-features h4,
.service-technologies h4 {
  font-size: 18px;
  color: var(--text-color);
  margin-bottom: 15px;
  font-weight: 500;
}

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

.service-features ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: var(--text-grey-color);
}

.service-features ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23025add' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-tags span {
  padding: 6px 12px;
  background: rgba(2, 90, 221, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.detailed-service-card:hover .tech-tags span {
  background: var(--color-primary);
  color: white;
}

.service-cta {
  margin-top: 30px;
}

.detailed-service-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  background: var(--color-primary);
  color: white;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.detailed-service-btn i {
  transition: transform 0.3s ease;
}

.detailed-service-btn:hover {
  background: var(--color-secondary);
  color: white;
}

.detailed-service-btn:hover i {
  transform: translateX(5px);
}

/* Dark Mode Adjustments */
:root.dark .detailed-service-card {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.05);
}

:root.dark .tech-tags span {
  background: rgba(255, 255, 255, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .detailed-services-grid {
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  }
}

@media (max-width: 768px) {
  .detailed-services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .detailed-service-card {
    padding: 30px;
  }

  .detailed-service-header {
    margin-bottom: 20px;
  }

  .detailed-service-icon {
    width: 60px;
    height: 60px;
  }

  .detailed-service-header h3 {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .detailed-service-card {
    padding: 25px;
  }

  .service-features h4,
  .service-technologies h4 {
    font-size: 16px;
  }

  .tech-tags span {
    font-size: 13px;
  }
}

/* Enhanced Portfolio Section Styles */
.enhanced-portfolio-section {
  padding: 60px 0;
  background: var(--light-color);
  position: relative;
  overflow: hidden;
}

/* Background Decorations */
.enhanced-portfolio-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(2, 90, 221, 0.03) 0%, transparent 70%);
  z-index: 0;
}

.enhanced-portfolio-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(12, 109, 224, 0.03) 0%, transparent 70%);
  z-index: 0;
}

.enhanced-portfolio-container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Enhanced Filter Navigation */
.enhanced-portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  position: relative;
}

.enhanced-portfolio-filters li {
  list-style: none;
}

.enhanced-portfolio-filters li a {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-color);
  background: rgba(2, 90, 221, 0.05);
  border-radius: 30px;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 1px solid transparent;
}

.enhanced-portfolio-filters li a:hover {
  background: rgba(2, 90, 221, 0.1);
  transform: translateY(-2px);
}

.enhanced-portfolio-filters li a.filter-active {
  background: var(--color-primary);
  color: white;
  box-shadow: 0 4px 15px rgba(2, 90, 221, 0.3);
}

/* Enhanced Portfolio Grid */
.enhanced-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

/* Enhanced Portfolio Card */
.enhanced-portfolio-card {
  background: var(--light-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  height: 100%;
  transform: translateY(0);
  opacity: 1;
  display: block;
}

.enhanced-portfolio-card.hidden {
  display: none;
}

.enhanced-portfolio-card.fade-out {
  opacity: 0;
  transform: translateY(20px);
}

.enhanced-portfolio-card.fade-in {
  animation: fadeIn 0.5s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.enhanced-portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Portfolio Image Container */
.enhanced-portfolio-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.enhanced-portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.enhanced-portfolio-card:hover .enhanced-portfolio-image img {
  transform: scale(1.08);
}

/* Image Overlay */
.enhanced-portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 70%);
  opacity: 0.8;
  transition: opacity 0.4s ease;
}

.enhanced-portfolio-card:hover .enhanced-portfolio-overlay {
  opacity: 0.5;
}

/* Portfolio Details */
.enhanced-portfolio-details {
  padding: 25px;
  position: relative;
}

.enhanced-portfolio-category {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 18px;
}

.enhanced-portfolio-category::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 2px;
  background: var(--color-primary);
}

.enhanced-portfolio-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 15px 0;
  color: var(--text-color);
  transition: color 0.3s ease;
}

.enhanced-portfolio-card:hover .enhanced-portfolio-title {
  color: var(--color-primary);
}

.enhanced-portfolio-description {
  font-size: 14px;
  color: var(--text-grey-color);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* View Button */
.enhanced-portfolio-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-primary);
  transition: all 0.3s ease;
}

.enhanced-portfolio-button i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.enhanced-portfolio-card:hover .enhanced-portfolio-button i {
  transform: translateX(5px);
}

/* Empty State */
.enhanced-portfolio-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px;
  background: rgba(2, 90, 221, 0.03);
  border-radius: 15px;
  display: none;
}

.enhanced-portfolio-empty.visible {
  display: block;
}

.enhanced-portfolio-empty h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--text-color);
}

.enhanced-portfolio-empty p {
  color: var(--text-grey-color);
  margin-bottom: 20px;
}

.enhanced-portfolio-empty-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--color-primary);
  color: white;
  font-weight: 500;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.enhanced-portfolio-empty-button:hover {
  background: var(--color-secondary);
  transform: translateY(-2px);
}

/* Dark Mode Adjustments */
:root.dark .enhanced-portfolio-card {
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

:root.dark .enhanced-portfolio-card:hover {
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

:root.dark .enhanced-portfolio-filters li a {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.9);
}

:root.dark .enhanced-portfolio-filters li a:hover {
  background: rgba(255, 255, 255, 0.08);
}

:root.dark .enhanced-portfolio-empty {
  background: rgba(255, 255, 255, 0.03);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .enhanced-portfolio-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .enhanced-portfolio-filters {
    gap: 8px;
    margin-bottom: 25px;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
    flex-wrap: nowrap;
  }
  
  .enhanced-portfolio-filters li a {
    padding: 8px 16px;
    font-size: 13px;
    white-space: nowrap;
  }
  
  .enhanced-portfolio-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .enhanced-portfolio-details {
    padding: 20px;
  }
  
  .enhanced-portfolio-title {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .enhanced-portfolio-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Portfolio Animation Sequence */
.enhanced-portfolio-section[data-aos="fade-up"] .enhanced-portfolio-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.enhanced-portfolio-section[data-aos="fade-up"].aos-animate .enhanced-portfolio-card {
  opacity: 1;
  transform: translateY(0);
}

.enhanced-portfolio-section[data-aos="fade-up"].aos-animate .enhanced-portfolio-card:nth-child(2) {
  transition-delay: 0.1s;
}

.enhanced-portfolio-section[data-aos="fade-up"].aos-animate .enhanced-portfolio-card:nth-child(3) {
  transition-delay: 0.2s;
}

.enhanced-portfolio-section[data-aos="fade-up"].aos-animate .enhanced-portfolio-card:nth-child(4) {
  transition-delay: 0.3s;
}

.enhanced-portfolio-section[data-aos="fade-up"].aos-animate .enhanced-portfolio-card:nth-child(5) {
  transition-delay: 0.4s;
}

.enhanced-portfolio-section[data-aos="fade-up"].aos-animate .enhanced-portfolio-card:nth-child(6) {
  transition-delay: 0.5s;
}

/* Portfolio Category Badges */
.portfolio-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 6px 12px;
  background: var(--color-primary);
  color: white;
  font-size: 12px;
  font-weight: 500;
  border-radius: 20px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Portfolio Featured Tag */
.portfolio-featured {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.portfolio-featured i {
  font-size: 14px;
  color: gold;
}

/* Portfolio Grid Layout Variations */
.enhanced-portfolio-grid.masonry {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(200px, auto);
  gap: 25px;
}

.enhanced-portfolio-grid.masonry .enhanced-portfolio-card:nth-child(3n+1) {
  grid-row: span 2;
}

.enhanced-portfolio-grid.masonry .enhanced-portfolio-card:nth-child(4n) {
  grid-column: span 2;
}

@media (max-width: 991px) {
  .enhanced-portfolio-grid.masonry {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .enhanced-portfolio-grid.masonry .enhanced-portfolio-card:nth-child(3n+1) {
    grid-row: auto;
  }
  
  .enhanced-portfolio-grid.masonry .enhanced-portfolio-card:nth-child(4n) {
    grid-column: auto;
  }
  
  .enhanced-portfolio-grid.masonry .enhanced-portfolio-card:nth-child(3n) {
    grid-column: span 2;
  }
}

@media (max-width: 576px) {
  .enhanced-portfolio-grid.masonry {
    grid-template-columns: 1fr;
  }
  
  .enhanced-portfolio-grid.masonry .enhanced-portfolio-card:nth-child(3n) {
    grid-column: auto;
  }
}

/* Modern Portfolio Section for Homepage */
.modern-portfolio-section {
  padding: 60px 0;
  background: var(--light-color);
  position: relative;
}

/* Portfolio Filter Tabs */
.modern-portfolio-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.modern-portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.modern-portfolio-filters li {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-color);
  background: rgba(2, 90, 221, 0.05);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modern-portfolio-filters li:hover {
  background: rgba(2, 90, 221, 0.1);
  transform: translateY(-2px);
}

.modern-portfolio-filters li.filter-active {
  background: var(--color-primary);
  color: white;
  box-shadow: 0 4px 10px rgba(2, 90, 221, 0.2);
}

/* Portfolio Grid */
.modern-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 25px;
}

/* Portfolio Items */
.modern-portfolio-item {
  transition: all 0.4s ease;
}

.modern-portfolio-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  height: 100%;
  background: var(--light-color);
}

.modern-portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.modern-portfolio-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.modern-portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.modern-portfolio-card:hover .modern-portfolio-image img {
  transform: scale(1.1);
}

/* Overlay */
.modern-portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: opacity 0.4s ease;
}

.modern-portfolio-card:hover .modern-portfolio-overlay {
  opacity: 1;
}

.modern-portfolio-info {
  width: 100%;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.modern-portfolio-card:hover .modern-portfolio-info {
  transform: translateY(0);
}

.modern-portfolio-info h4 {
  color: white;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 5px 0;
}

.modern-portfolio-info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin: 0 0 10px 0;
}

.modern-portfolio-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.3s ease;
}

.modern-portfolio-link:hover {
  background: white;
  color: var(--color-primary);
  transform: scale(1.1);
}

/* Dark Mode Adjustments */
:root.dark .modern-portfolio-card {
  background: rgba(255, 255, 255, 0.02);
}

:root.dark .modern-portfolio-filters li {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.9);
}

:root.dark .modern-portfolio-filters li:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .modern-portfolio-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .modern-portfolio-filters {
    gap: 8px;
  }
  
  .modern-portfolio-filters li {
    padding: 6px 14px;
    font-size: 13px;
  }
  
  .modern-portfolio-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  
  .modern-portfolio-info h4 {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .modern-portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .modern-portfolio-tabs {
    overflow-x: auto;
    padding-bottom: 15px;
  }
  
  .modern-portfolio-filters {
    flex-wrap: nowrap;
    width: max-content;
  }
}

/* Call to Action Section */
.home-cta-section {
  padding: 40px 0;
  background: var(--light-color);
}

.home-cta-box {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.home-cta-box:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.home-cta-content h2 {
  color: white;
  font-size: 32px;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.home-cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

.home-cta-buttons {
  position: relative;
  z-index: 2;
}

.home-cta-secondary-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 30px;
  background: transparent;
  color: white;
  border: 2px solid white;
  border-radius: 50px;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  margin-left: 15px;
}

.home-cta-secondary-btn:hover {
  background: white;
  color: var(--color-primary);
  transform: translateY(-2px);
}

/* Client Logos Section */
.client-logos-section {
  padding: 60px 0;
  background: var(--theme-color-dark);
}

.client-logos-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 30px;
}

.client-logo-item {
  flex: 0 0 150px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.4s ease;
}

.client-logo-item:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.client-logo-item img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}

/* Blog Preview Section */
.blog-preview-section {
  padding: 60px 0;
  background: var(--light-color);
}

.blog-preview-card {
  background: var(--light-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: all 0.4s ease;
}

.blog-preview-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.blog-preview-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-preview-card:hover .blog-preview-image img {
  transform: scale(1.1);
}

.blog-preview-date {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--color-primary);
  color: white;
  padding: 8px 15px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.blog-preview-date .day {
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}

.blog-preview-date .month {
  display: block;
  font-size: 14px;
  margin-top: 2px;
}

.blog-preview-content {
  padding: 25px;
}

.blog-preview-category {
  display: inline-block;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  padding-bottom: 5px;
  position: relative;
}

.blog-preview-category:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--color-primary);
}

.blog-preview-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.blog-preview-title a {
  color: var(--text-color);
  transition: color 0.3s ease;
}

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

.blog-preview-excerpt {
  font-size: 14px;
  color: var(--text-grey-color);
  margin-bottom: 20px;
  line-height: 1.6;
}

.blog-preview-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}

.blog-preview-link i {
  transition: transform 0.3s ease;
}

.blog-preview-link:hover i {
  transform: translateX(5px);
}

/* Dark Mode Adjustments */
:root.dark .blog-preview-card {
  background: rgba(255, 255, 255, 0.02);
}

:root.dark .client-logo-item {
  filter: brightness(0) invert(1) grayscale(100%);
  opacity: 0.6;
}

:root.dark .client-logo-item:hover {
  filter: brightness(0) invert(1) grayscale(0%);
  opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .home-cta-box {
    padding: 40px 30px;
  }
  
  .home-cta-content h2 {
    font-size: 28px;
  }
  
  .home-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .home-cta-secondary-btn {
    margin-left: 0;
  }
  
  .client-logo-item {
    flex: 0 0 120px;
  }
}

@media (max-width: 768px) {
  .home-cta-box {
    padding: 30px 20px;
  }
  
  .home-cta-content h2 {
    font-size: 24px;
  }
  
  .home-cta-content p {
    font-size: 14px;
  }
  
  .client-logos-container {
    gap: 20px;
  }
  
  .client-logo-item {
    flex: 0 0 100px;
    height: 60px;
  }
  
  .blog-preview-image {
    height: 180px;
  }
  
  .blog-preview-content {
    padding: 20px;
  }
  
  .blog-preview-title {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .home-cta-box {
    padding: 25px 15px;
  }
  
  .home-cta-content h2 {
    font-size: 22px;
  }
  
  .client-logos-container {
    gap: 15px;
  }
  
  .client-logo-item {
    flex: 0 0 90px;
    height: 50px;
  }
}

/* Animations for Elements */
.home-cta-box[data-aos="fade-up"] {
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.home-cta-box[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
  opacity: 1;
}

.client-logo-item[data-aos="zoom-in"] {
  transform: scale(0.8);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.client-logo-item[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
  opacity: 0.7;
}

.blog-preview-card[data-aos="fade-up"] {
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.blog-preview-card[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
  opacity: 1;
}

/* Enhance the Footer */
.enhanced-footer-top {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

.footer-brand-info {
  margin-bottom: 30px;
}

.footer-brand-info p {
  margin: 15px 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.footer-social-links {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.footer-social-link:hover {
  background: var(--color-primary);
  transform: translateY(-3px);
}

.footer-nav-column h4 {
  color: white;
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  font-weight: 600;
  padding-bottom: 10px;
}

.footer-nav-column h4:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--color-primary);
}

.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-link {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  font-size: 15px;
}

.footer-nav-link:before {
  content: '\f105';
  font-family: 'bootstrap-icons';
  margin-right: 8px;
  font-size: 12px;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.footer-nav-link:hover {
  color: white;
  transform: translateX(5px);
}

.footer-nav-link:hover:before {
  color: var(--color-primary);
  opacity: 1;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-contact-item {
  display: flex;
  gap: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--color-primary);
  font-size: 18px;
}

.footer-contact-text {
  font-size: 15px;
  line-height: 1.6;
}

.footer-contact-text strong {
  display: block;
  color: white;
  margin-bottom: 3px;
}

.footer-newsletter {
  margin-top: 25px;
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
  font-size: 15px;
}

.footer-newsletter-form {
  position: relative;
  max-width: 100%;
}

.footer-newsletter-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50px;
  color: white;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}

.footer-newsletter-input:focus {
  background: rgba(255, 255, 255, 0.15);
}

.footer-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.footer-newsletter-button {
  position: absolute;
  right: 5px;
  top: 5px;
  bottom: 5px;
  border: none;
  background: var(--color-primary);
  border-radius: 50px;
  color: white;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-newsletter-button:hover {
  background: var(--color-secondary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-bottom-link:hover {
  color: white;
}

/* Enhanced Scroll-to-Top Button */
.enhanced-scroll-top {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 50px;
  height: 50px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  cursor: pointer;
}

.enhanced-scroll-top.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.enhanced-scroll-top:hover {
  background: var(--color-secondary);
  transform: translateY(-5px);
}

/* Responsive Footer */
@media (max-width: 991px) {
  .footer-contact-item {
    gap: 10px;
  }
  
  .footer-contact-icon {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .footer-nav-column {
    margin-bottom: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .enhanced-scroll-top {
    right: 15px;
    bottom: 15px;
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}

/* Enhanced Privacy Policy Styles */
.privacy-policy-section {
  padding: 60px 0;
  background: var(--light-color);
}

/* Introduction Card */
.privacy-policy-intro {
  margin-bottom: 40px;
}

.privacy-card {
  background: var(--light-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 30px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.privacy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.privacy-card-icon {
  margin-bottom: 20px;
  font-size: 40px;
  color: var(--color-primary);
}

.privacy-card-header {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
}

.privacy-card-header h3 {
  margin: 0;
  font-size: 22px;
  color: var(--text-color);
  font-weight: 600;
}

.privacy-card-header h3 i {
  margin-right: 10px;
  color: var(--color-primary);
}

.privacy-card-content {
  color: var(--text-color);
}

.privacy-card-content p {
  margin-bottom: 20px;
  line-height: 1.7;
}

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

/* List Styles */
.privacy-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 25px;
}

.privacy-list-item {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: var(--theme-color-dark);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.privacy-list-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.privacy-list-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: rgba(2, 90, 221, 0.1);
  color: var(--color-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.privacy-list-content {
  flex: 1;
}

.privacy-list-content h4 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 18px;
  color: var(--text-color);
  font-weight: 600;
}

.privacy-list-content p {
  margin: 0;
  color: var(--text-grey-color);
}

/* Bullet Lists */
.privacy-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.privacy-bullet-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: var(--text-grey-color);
}

.privacy-bullet-list li:before {
  content: "\f058";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--color-primary);
}

/* Security Measures */
.security-measures {
  margin-top: 25px;
}

.security-measure-item {
  text-align: center;
  padding: 25px 15px;
  background: rgba(2, 90, 221, 0.03);
  border-radius: 10px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  height: 100%;
}

.security-measure-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  background: rgba(2, 90, 221, 0.05);
}

.security-measure-icon {
  font-size: 30px;
  color: var(--color-primary);
  margin-bottom: 15px;
}

.security-measure-item h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text-color);
  font-weight: 600;
}

.security-measure-item p {
  font-size: 14px;
  color: var(--text-grey-color);
  margin: 0;
}

/* User Rights */
.user-rights {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}

.user-right-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: var(--theme-color-dark);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.user-right-item:hover {
  transform: translateX(5px);
  background: rgba(2, 90, 221, 0.05);
}

.user-right-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(2, 90, 221, 0.1);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.user-right-text {
  flex: 1;
}

.user-right-text p {
  margin: 0;
  color: var(--text-grey-color);
}

.request-info {
  background: rgba(2, 90, 221, 0.05);
  padding: 15px;
  border-radius: 10px;
  text-align: center;
}

.request-info p {
  margin: 0;
  font-weight: 500;
}

.request-info a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
}

/* Policy Versions */
.policy-versions {
  background: var(--theme-color-dark);
  padding: 15px;
  border-radius: 10px;
  text-align: center;
}

.policy-version {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.version-date, .version-number {
  font-size: 14px;
  color: var(--text-grey-color);
}

.version-date {
  font-weight: 600;
}

/* Contact Card */
.contact-card {
  background: linear-gradient(to right, var(--light-color), rgba(2, 90, 221, 0.05));
}

.contact-info {
  margin: 25px 0;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  margin-bottom: 20px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(2, 90, 221, 0.1);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  transform: scale(1.1);
  background: var(--color-primary);
  color: white;
}

.contact-item p {
  margin: 0;
  font-weight: 500;
}

.trust-statement {
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-statement p {
  margin: 0;
  font-weight: 500;
  font-style: italic;
}

/* FAQ Section */
.privacy-faq {
  margin-top: 60px;
}

.privacy-faq-header {
  text-align: center;
  margin-bottom: 30px;
}

.privacy-faq-header h3 {
  font-size: 24px;
  color: var(--text-color);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.privacy-faq-header h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--color-primary);
}

/* Accordion Styling */
.accordion {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.accordion-item {
  border: none;
  background: var(--light-color);
  margin-bottom: 2px;
}

.accordion-button {
  background: var(--light-color);
  color: var(--text-color);
  font-weight: 600;
  padding: 20px 25px;
  font-size: 16px;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: rgba(2, 90, 221, 0.05);
  color: var(--color-primary);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.05);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23025add'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 20px 25px;
  color: var(--text-grey-color);
  background: var(--theme-color-dark);
}

/* Dark Mode Support */
:root.dark .privacy-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.05);
}

:root.dark .privacy-card-header {
  border-bottom-color: rgba(255, 255, 255, 0.05);
}

:root.dark .privacy-list-item,
:root.dark .user-right-item,
:root.dark .policy-versions,
:root.dark .accordion-body {
  background: rgba(255, 255, 255, 0.02);
}

:root.dark .security-measure-item {
  background: rgba(255, 255, 255, 0.02);
}

:root.dark .security-measure-item:hover,
:root.dark .user-right-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

:root.dark .contact-card {
  background: linear-gradient(to right, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.05));
}

:root.dark .accordion-button {
  background: rgba(255, 255, 255, 0.03);
}

:root.dark .accordion-button:not(.collapsed) {
  background: rgba(255, 255, 255, 0.05);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .privacy-policy-section {
    padding: 40px 0;
  }
  
  .privacy-card {
    padding: 25px;
  }
  
  .security-measure-item {
    padding: 20px 15px;
  }
}

@media (max-width: 768px) {
  .privacy-card-header h3 {
    font-size: 20px;
  }
  
  .privacy-list-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .privacy-list-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .security-measure-item {
    margin-bottom: 15px;
  }
  
  .contact-item {
    margin-bottom: 25px;
  }
  
  .privacy-faq {
    margin-top: 40px;
  }
  
  .privacy-faq-header h3 {
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  .privacy-card {
    padding: 20px 15px;
  }
  
  .privacy-card-header h3 {
    font-size: 18px;
  }
  
  .privacy-card-header h3 i {
    margin-right: 8px;
  }
  
  .user-right-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .accordion-button {
    padding: 15px 20px;
    font-size: 15px;
  }
  
  .accordion-body {
    padding: 15px 20px;
  }
}

/* Animation Effects */
.privacy-card[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.6s ease, opacity 0.6s ease, box-shadow 0.3s ease;
}

.privacy-card[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Floating Labels for Form Elements */
.privacy-form-group {
  position: relative;
  margin-bottom: 25px;
}

.privacy-form-control {
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  font-size: 15px;
  transition: all 0.3s ease;
  background: var(--light-color);
  color: var(--text-color);
}

.privacy-form-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(2, 90, 221, 0.1);
  outline: none;
}

.privacy-form-label {
  position: absolute;
  top: 15px;
  left: 15px;
  pointer-events: none;
  transition: all 0.3s ease;
  color: var(--text-grey-color);
  font-size: 15px;
}

.privacy-form-control:focus + .privacy-form-label,
.privacy-form-control:not(:placeholder-shown) + .privacy-form-label {
  top: -10px;
  left: 10px;
  font-size: 12px;
  background: var(--light-color);
  padding: 0 5px;
  color: var(--color-primary);
}

.privacy-submit-btn {
  background: var(--color-primary);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.privacy-submit-btn:hover {
  background: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.privacy-submit-btn i {
  font-size: 18px;
}

/* Privacy Alert Component */
.privacy-alert {
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.privacy-alert-info {
  background-color: rgba(2, 90, 221, 0.1);
  border: 1px solid rgba(2, 90, 221, 0.2);
}

.privacy-alert-warning {
  background-color: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.2);
}

.privacy-alert-icon {
  flex-shrink: 0;
  font-size: 24px;
}

.privacy-alert-info .privacy-alert-icon {
  color: var(--color-primary);
}

.privacy-alert-warning .privacy-alert-icon {
  color: #ffc107;
}

.privacy-alert-content {
  flex: 1;
}

.privacy-alert-title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 5px;
  color: var(--text-color);
}

.privacy-alert-text {
  margin: 0;
  font-size: 14px;
  color: var(--text-grey-color);
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 30px;
  left: 30px;
  max-width: 400px;
  background: var(--light-color);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  z-index: 999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.5s ease;
}

.cookie-consent.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-consent-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.cookie-consent-icon {
  font-size: 24px;
  color: var(--color-primary);
}

.cookie-consent-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: var(--text-color);
}

.cookie-consent-text {
  font-size: 14px;
  color: var(--text-grey-color);
  margin-bottom: 20px;
}

.cookie-consent-actions {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  text-align: center;
}

.cookie-accept {
  background: var(--color-primary);
  color: white;
  border: none;
}

.cookie-accept:hover {
  background: var(--color-secondary);
}

.cookie-decline {
  background: transparent;
  color: var(--text-color);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.cookie-decline:hover {
  background: rgba(0, 0, 0, 0.05);
}

.cookie-settings {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.cookie-settings:hover {
  background: rgba(2, 90, 221, 0.05);
}

/* Dark Mode for Additional Elements */
:root.dark .privacy-form-control {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

:root.dark .privacy-form-control:focus + .privacy-form-label,
:root.dark .privacy-form-control:not(:placeholder-shown) + .privacy-form-label {
  background: var(--theme-color-dark);
}

:root.dark .cookie-consent {
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

:root.dark .cookie-decline {
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

:root.dark .cookie-decline:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* Print-Friendly Styles */
@media print {
  .breadcrumbs,
  .privacy-alert,
  .cookie-consent,
  .footer-section,
  .scroll-top,
  #preloader,
  .privacy-faq,
  .privacy-submit-btn {
    display: none !important;
  }
  
  .privacy-policy-section {
    padding: 0;
  }
  
  .privacy-card {
    box-shadow: none;
    page-break-inside: avoid;
    border: 1px solid #ddd;
    margin-bottom: 20px;
  }
  
  .privacy-card-header h3 {
    color: #000;
  }
  
  .security-measure-item,
  .privacy-list-item,
  .user-right-item {
    page-break-inside: avoid;
  }
  
  a {
    text-decoration: none !important;
    color: #000 !important;
  }
  
  @page {
    margin: 1.5cm;
  }
}

/* bits-enhanced-about-styles.css */

/* Fix for approach timeline line loading issue */
.approach-timeline {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0;
  padding: 0 20px;
}

/* Replace the existing timeline line with one that fades in properly */
.approach-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--color-primary);
  opacity: 0; /* Start with opacity 0 */
  transition: opacity 0.8s ease; /* Add a transition for smooth appearance */
}

/* Class to be added via JavaScript when content is loaded */
.approach-timeline.content-loaded::before {
  opacity: 1;
}

/* Enhanced animations for approach items */
.approach-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.approach-item.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Add slight delay to each item for a staggered effect */
.approach-item:nth-child(1) {
  transition-delay: 0.2s;
}

.approach-item:nth-child(2) {
  transition-delay: 0.4s;
}

.approach-item:nth-child(3) {
  transition-delay: 0.6s;
}

/* Improve approach icon hover effect */
.approach-icon {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(2, 90, 221, 0.2);
  z-index: 1;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.approach-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transform: scale(0);
  transition: transform 0.5s ease;
  border-radius: 50%;
}

.approach-icon:hover::after {
  transform: scale(1);
}

.approach-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(2, 90, 221, 0.3);
}

/* Enhanced approach content */
.approach-content {
  margin-left: 30px;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transform: translateX(20px);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
  transition-delay: 0.1s;
}

.approach-item.fade-in .approach-content {
  transform: translateX(0);
  opacity: 1;
}

/* Make other About page sections load more smoothly */
.vision-card, .mission-card, .why-us-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.vision-card.fade-in, 
.mission-card.fade-in, 
.why-us-card.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Enhanced mobile view for approach section */
@media (max-width: 991px) {
  .approach-timeline::before {
    left: 40px;
  }
  
  .approach-content {
    margin-left: 0;
    margin-top: 20px;
    transform: translateY(20px);
  }
  
  .approach-item.fade-in .approach-content {
    transform: translateY(0);
  }
}

/* Dark mode support */
:root.dark .approach-content {
  background: rgba(255, 255, 255, 0.03);
}

/* bits-why-choose-us-styles.css */

/* Modern Features Section with Card-based Layout */
.modern-features {
  padding: 80px 0;
  background: var(--light-color);
  position: relative;
  overflow: hidden;
}

/* Background decorative elements */
.modern-features::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(2, 90, 221, 0.05) 0%, transparent 70%);
  z-index: 0;
}

.modern-features::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(2, 90, 221, 0.03) 0%, transparent 70%);
  z-index: 0;
}

/* Container styles */
.modern-features-container {
  position: relative;
  z-index: 1;
}

/* Enhanced Card Styles */
.why-us-card {
  background: var(--light-color);
  border-radius: 16px;
  padding: 40px 30px;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.why-us-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--color-primary), var(--color-secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: -1;
}

.why-us-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

/* Icon styles */
.why-us-icon {
  margin-bottom: 25px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.5s ease;
}

.why-us-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.5s ease;
}

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

/* Content styles */
.why-us-card h4 {
  color: var(--color-primary);
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
}

.why-us-card p {
  color: var(--text-grey-color);
  margin: 0;
  line-height: 1.7;
  font-size: 15px;
}

/* Call to action button styles */
.modern-features .btn-get-started {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.modern-features .btn-get-started:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Dark mode compatibility */
:root.dark .why-us-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

:root.dark .why-us-card:hover {
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .modern-features {
    padding: 60px 0;
  }
  
  .why-us-card {
    padding: 30px 25px;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .why-us-card {
    padding: 25px 20px;
  }
  
  .why-us-icon {
    width: 60px;
    height: 60px;
  }
  
  .why-us-card h4 {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .modern-features {
    padding: 50px 0;
  }
}

/* Animation delay fix for better visual flow */
[data-aos-delay] {
  transition-delay: 0s !important;
}

@media (min-width: 768px) {
  [data-aos-delay] {
    transition-delay: attr(data-aos-delay) !important;
  }
}

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

.bite-sized-faq-item {
  margin-bottom: 20px;
  border: 1px solid #e9e9e9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.bite-sized-faq-question {
  padding: 20px;
  background-color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bite-sized-faq-question h3 {
  margin: 0;
  font-size: 18px;
  color: #333;
}

.bite-sized-faq-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
}

.bite-sized-faq-icon i {
  font-size: 24px;
  transition: all 0.3s ease;
}

.bite-sized-faq-icon .bi-dash {
  display: none;
}

.bite-sized-faq-item.active .bite-sized-faq-icon .bi-plus {
  display: none;
}

.bite-sized-faq-item.active .bite-sized-faq-icon .bi-dash {
  display: block;
}

.bite-sized-faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: #f9f9f9;
}

.bite-sized-faq-answer p {
  margin-top: 15px;
  margin-bottom: 15px;
}

.bite-sized-faq-footer {
  text-align: center;
  margin-top: 30px;
}

.btn-get-started {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  color: #fff;
  background-color: #0d6efd;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-get-started:hover {
  background-color: #0b5ed7;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}