/*------------------------------------------------------------
    Template name    : Technoai - IT Solutions & Business Services Multipurpose Responsive Website Template
    Author           : ZRTHEMES
    Version          : 2.0
    File Description : Main css file of the template
--------------------------------------------------------------*/

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


:root {
  --font-default:
  /* 'Poppins', sans-serif; */
  'Segoe UI', Arial, sans-serif;
  --font-primary:
  'Poppins', sans-serif;
  --font-secondary:
  'Poppins', sans-serif;
  scroll-behavior: smooth;
  --color-bg: #029b9b;
  --color-bg-secondary: #f7fdfb;
  --color-light: #ffffff;
  --color-dark: #222;
  --color-heading: #222;
  --hero-overlay-color: #000000;
  --menu-color: #ffffff;
  --theme-color: #029b9b;
  --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: #029b9b;
  --light-color: #ffffff;
  --color-default: #3a3a3a;
  --color-primary-hover: #029b9b;
  --color-secondary-hover: #0c6de0;
  --color-primary: #3a3a3a;
  --color-secondary: #424242;
  --color-start: #3a3a3a;
  --color-end: #3a3a3a;
  --hero-card-bg: rgb(228 227 223 / 17%);
  --box-shadow-color: rgb(82 90 101 / 10%);
}

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

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

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


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

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

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

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

.toggle-container {
  position: relative;
}

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

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

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

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

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

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

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 100px 0;
  overflow: hidden;
}

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

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

.section-bg {
  background-color: var(--theme-color-dark) !important;
  /* box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1); */
}

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

.section-header h2 {
  font-size: 2rem;
  position: relative;
  font-weight: bold;
  color: var(--color-heading);
  text-align: center;
  margin-bottom: 10px;
}

.section-header p {
  color: #777;
  font-size: 1rem;
  text-align: center;
}

.section-gradient {
  background: linear-gradient(45deg, #029b9b, #029b9b, #035e5e);
  padding: 60px 0;
}

.landing-section {
  padding: 50px 0 !important;
}

img {
  transition: 0.3s;
}

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

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

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

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs .page-header {
  padding: 120px 0 60px 0;
  min-height: 20vh;
  background: url(../images/page-header-bg.png) center bottom;
  background-size: cover;
  border-radius: 0px;
  overflow: hidden;
  position: relative;
}
.breadcrumbs .page-header:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg,var(--light-color), var(--light-color));
    z-index: 0;
    opacity: 0.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #000000;
  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;
}

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

.header.sticked {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 90px;
  box-shadow: inset 0 -4px 8px rgba(0, 0, 0, 0.1); /* Inner shadow */
}

.header .logo img {
  max-height: 60px;
  margin-right: 8px;
}
.sticked .logo .logo-sticky{
  display: none;
}

.sticked.stikcy-menu .logo .logo{
  display: none;
}

.sticked.stikcy-menu .logo .logo-sticky{
  display: block;
}

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

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

  .stikcy-menu  .navbar a:hover,
  .stikcy-menu  .navbar .active,
  .stikcy-menu  .navbar .active:focus,
  .stikcy-menu  .navbar li:hover>a {
    color: var(--text-theme-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(--text-theme-color);
  }

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

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

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
    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(--text-theme-color);
  }

  .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: var(--text-theme-color);;
  }

  .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(--theme-color);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin-right: 10px;
  }

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

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

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

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



/*--------------------------------------------------------------
# Featured Section
--------------------------------------------------------------*/
.featured{
  background-color: var(--light-color);
  background-repeat: no-repeat;
  border-radius: 0px;
  overflow: hidden;
  position: relative;
  background-attachment: fixed;
}
.left {
  text-align: right;
}
.right {
  text-align: left;
}
.list-wrap{
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.list-wrap p {
  color: #777;
  font-size: 15px;
}
.list-wrap:nth-child(3),
.list-wrap:nth-child(6){
  margin-bottom: 0;
}

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

.icon {
  width: 50px;
  text-align: center;
  height: 50px;
  border-radius: 50%;
  display: flex;
  padding: 10px;
}
.icon svg{
  width: 100%;
}
.list-center-wrap{
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  height: 100%;
}
.center-icon{
  width: 100%;
  text-align: center;
}
.center-icon img{
  width: 100%;
  border-radius: 20px;
  opacity: 0.9;
}

@media (max-width: 991px) {
  .featured{
    background: var(--light-color);
  }
}

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

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

.clients .swiper-slide img {
  transition: 0.4s;
  /* 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: 100px 0px;
  border-radius: 0px;
  overflow: hidden;
  position: relative;
  background-attachment: fixed;
}

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

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

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

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

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

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

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

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

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

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

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


/* Call-to-Action Section Styles */
.call-to-action {
  background: linear-gradient(45deg, #029b9b, #029b9b, #035e5e);
  padding: 80px 20px;
  color: #ffffff;
  text-align: center;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
}

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

.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 h2{
  color: #ffffff !important;
}

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

.team-member .member-info {
  padding: 20px 30px;
  text-align: center;
  position: relative;
}

.team-member .member-info h4 {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 8px;
    color: var(--color-heading);
    line-height: 1;
    letter-spacing: 1px;
    min-height: 36px;
}
.team-member .member-info p {
  font-size: 13px;
  color: #888;
  margin-bottom: 12px;
  line-height: 1.4;
}
.team-member .member-info span {
  font-size: 0.75rem;
  color: #777777;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
}

.team-member .member-info .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    font-size: 14px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff !important;
    margin: 0;
    transition: opacity 0.3s ease;
    animation: none;
}

.team-member .member-info .social-icon:hover {
    background: var(--theme-color, #00bfa5);
    border-color: var(--theme-color, #00bfa5);
    transform: translateY(-3px);
}

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

.team-member .member-info .social-links .social-icon-disabled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ddd;
  color: #fff;
  margin: 0;
  font-size: 14px;
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.55;
}

/* Decorative Elements */
.team-member .decorative-circle {
  position: absolute;
  top: -20px;
  right: -20px;
  background: #ff7eb3;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  z-index: 1;
  opacity: 0.8;
  filter: blur(3px);
}

.team-member .decorative-circle.alt {
  top: auto;
  bottom: -20px;
  left: -20px;
  background: #ff758c;
}

/* Responsive Design */
@media (max-width: 768px) {
  .team-member .member-card {
    margin-bottom: 40px;
  }
}

.team-member .member-card {
  background: var(--light-color);
  border-radius: 12px;
  padding: 24px 20px 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member .member-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.team-member .member-image-wrap {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  background: #f1f1f1;
  margin-bottom: 12px;
  border: 3px solid #f4f4f4;
}

.team-member .member-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.team-member .member-info .divider {
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  margin: 8px 0;
}

/*--------------------------------------------------------------
# Team member details
--------------------------------------------------------------*/

.member-detail-photo img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.member-name {
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 10px;
}
.member-designation {
    display: inline-block;
    background: #eaf2ff;
    color: #029b9b;
    font-weight: 600;
    font-size: 14px;
    padding: 4px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
}
.info-block {
    margin-bottom: 28px;
}
.info-block h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1f1f1f;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 8px;
}
.bio-text {
    line-height: 1.8;
    color: #6b7280;
    margin: 0;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #4b5563;
}
.contact-item i {
    color: #029b9b;
    font-size: 18px;
    width: 22px;
}
.contact-item a {
    color: #4b5563;
    text-decoration: none;
}
.contact-item a:hover {
    color: #029b9b;
}
.member-detail-info .social-links {
    display: flex;
    gap: 12px;
}
.member-detail-info .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    font-size: 18px;
    transition: all 0.2s ease;
    animation: none;
}
.member-detail-info .social-icon:hover {
    background: #029b9b;
    color: #fff;
    transform: translateY(-3px);
}
.member-detail-info .social-links .social-icon-disabled {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ddd;
    color: #fff;
    margin: 0;
    font-size: 14px;
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.55;
}
.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #029b9b;
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.2s ease;
}
.btn-back:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px #029b9b70;
    color: #fff;
}

@media (max-width: 991px) {
    .member-detail-photo {
        max-width: 320px;
        margin: 0 auto;
    }
}

/*--------------------------------------------------------------
# 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: 10px 50px 15px 20px;
  font-size: 14px;
  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: 15px;
  background: url(../images/icons/down-arrow.svg);
}

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

/* FAQ Section Styles */
.accordion .accordion-item {
  background: var(--light-color);
  border: none;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
}

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

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

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

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
  .accordion .accordion-button {
    font-size: 0.9rem;
  }
}


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

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

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

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



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

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

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

.recent-posts .post-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

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

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

.recent-posts .post-category {
  background: linear-gradient(45deg, #029b9b, #029b9b, #035e5e);
  color: #fff;
  display: inline-block;
  padding: 8px 15px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 30px;
  margin-top: 15px;
}

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

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

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

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

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

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

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

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


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url('../images/hero-bg.png'); /* Replace with your pattern image */
  background-size: cover;
  background-position: center top;
  overflow: hidden;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

#hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  text-align: left;
  color: #fff;
}

.overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(20,20,20,0.8), rgba(50,50,50,0.5));
  z-index: 1;
}

/* Floating Blobs */
.floating-blob {
  position: absolute;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #000000, #f1f1f1);
  border-radius: 50%;
  opacity: 0.6;
  filter: blur(100px);
  animation: blobMove 10s infinite alternate ease-in-out;
  z-index: 0;
}

.blob-1 { top: 10%; left: 5%; animation-duration: 12s; }
.blob-2 { bottom: 10%; right: 5%; animation-duration: 15s; }

/* Glowing Orbs */
.glowing-orb {
  position: absolute;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgb(255 236 247) 0%, rgba(255, 50, 120, 0) 80%);
  border-radius: 50%;
  filter: blur(50px);
  animation: orbFloat 6s infinite alternate ease-in-out;
  z-index: 0;
}

.orb-1 { top: 20%; right: 20%; animation-duration: 8s; }
.orb-2 { bottom: 20%; left: 20%; animation-duration: 10s; }

/* Rotating Cubes */
.rotating-cube {
  position: absolute;
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #5b5b5b, #000000);
  opacity: 0.1;
  animation: cubeRotate 8s infinite linear;
}

.cube-1 { top: 15%; left: 10%; animation-duration: 12s; }
.cube-2 { bottom: 15%; right: 10%; animation-duration: 10s; }

@keyframes cubeRotate {
  0% { transform: rotateX(0deg) rotateY(0deg) translateY(0); }
  100% { transform: rotateX(360deg) rotateY(360deg) translateY(-20px); }
}

/* Pulsing Rings */
.pulsing-ring {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 2px solid rgb(0 0 0 / 50%);
  border-radius: 50%;
  animation: ringPulse 5s infinite ease-in-out;
  z-index: 0;
}

.ring-1 { top: 25%; right: 30%; animation-duration: 6s; }
.ring-2 { bottom: 25%; left: 30%; animation-duration: 7s; }

@keyframes ringPulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Glowing Dots */
.glowing-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #ffffff;
  border-radius: 50%;
  opacity: 0.8;
  animation: dotMove 4s infinite alternate ease-in-out;
  z-index: 0;
}

.dot-1 { top: 40%; left: 15%; animation-duration: 5s; }
.dot-2 { bottom: 40%; right: 15%; animation-duration: 6s; }

@keyframes dotMove {
  0% { transform: translateY(0) translateX(0); }
  100% { transform: translateY(-15px) translateX(10px); }
}

/* Animations */
@keyframes blobMove {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-20px) scale(1.1); }
}

@keyframes orbFloat {
  0% { transform: translateY(0) translateX(0); }
  100% { transform: translateY(-15px) translateX(10px); }
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-size: cover;
}

#repulse-circle-div {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.1;
  }
}

#hero .container {
  position: relative;
  z-index: 1;
}

#hero .caption h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1rem;
  color: #fff;
}

#hero .caption h2 span {
  color: var(--theme-color);
}

#hero .caption h2 .circle {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: linear-gradient(45deg, #029b9b, #029b9b, #035e5e);
  border-radius: 50%;
  vertical-align: middle;
  margin-left: 8px;
  animation: fade-right 1s ease-in-out infinite alternate;
}

@keyframes fade-right {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}

#hero .caption p {
  font-size: 1.125rem;
  color: #ddd;
  margin-bottom: 2rem;
}

#hero .social {
  display: flex;
  gap: 15px;
  margin-bottom: 1.5rem;
}

#hero .social a {
  font-size: 1.5rem;
  color: #ddd;
  transition: color 0.3s ease;
}

#hero .social a:hover {
  color: #f0c420;
}


 /* Hero Banner Buttons */
 .btn-get-started {
  background: linear-gradient(45deg, #029b9b, #029b9b, #035e5e);
  box-shadow: 0 6px 20px #029b9b70;
  color: #fff;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

.btn-get-started:hover {
  box-shadow: 0 6px 20px #029b9b70;
  color: #ffffff;
}

.btn-get-started:active {
  box-shadow: 0 6px 20px #029b9b70;
}

.btn-get-started::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.4s ease-in-out;
  z-index: 0;
}

.btn-get-started:hover::before {
  transform: scale(1);
}

.btn-get-started.mr-20 {
  margin-right: 1.25rem;
}


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

  #hero .caption p {
    font-size: 1rem;
  }

  #hero .btn-get-started {
    font-size: 0.875rem;
    padding: 8px 20px;
  }
}


.hero {
  width: 100%;
  position: relative;
  background: url(../images/hero-bg.png) center center;
  background-size: cover;
  padding: 60px 0 0 0;
  height: 90vh;
  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, #00000000, 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(--theme-color);
}
.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(--theme-color);
  font-weight: bold;
}

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

/* Get Quotes Button */
.btn-get-started {
  transition: all 0.4s ease-in-out;
}

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

.btn-get-started:active {
  transform: translateY(0);
}


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

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

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

@media (max-width: 991px) {
  .hero {
    background: url(../images/hero-bg.png) center center;
    min-height: 563px;
  }
  .hero h2 {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .text-left.caption{
    text-align: center;
  }
  .caption .justify-content-start{
    justify-content: center !important;
  }
  .caption .social{
    justify-content: center;
  }
  .btn-get-started,
  .hero .btn-watch-video {
    font-size: 14px;
  }
  .icon-boxes .card-two{
    margin-top: var(--bs-gutter-y);
    margin-bottom: 0px;
    padding-left: calc(var(--bs-gutter-x) * .5);
    padding-right: calc(var(--bs-gutter-x) * .5);

  }
}
@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: 10px 30px 10px 10px;
  margin-bottom: 30px;
  border: 0;
}
.search-form input {
  width: 100%;
  padding: 14px 28px;
  background: #ffffff;
  border: none;
  color: #393838;
  outline: none;
}
.search-form button {
  position: absolute;
  right: 0;
  padding: 16px 20px;
  border: none;
  top: 0px;
  color: var(--text-white-color);
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  outline: none;
}
.search-form button:hover {
  cursor: pointer;
  background: linear-gradient(45deg, var(--color-secondary), var(--color-primary));
  color: var(--text-white-color);
}
.search-form button i{
  color: #fff;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/

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

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

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

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

.stats-counter {
  padding: 100px 0;
  background: linear-gradient(120deg, #f9f9f9, #e8f0fe);
  position: relative;
  overflow: hidden;
}

.stats-counter .stats-box {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 40px 20px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

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

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

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

.stats-counter .stats-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--theme-color);
  margin: 0;
}

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

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


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

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

.portfolio .portfolio-flters li:hover,
.portfolio .portfolio-flters li.filter-active {
  color: #fff;
  transform: translateY(0);
  box-shadow: 0 4px 10px rgb(57 57 57 / 30%);
}

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

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

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

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

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

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

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

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

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

.portfolio .portfolio-wrap .portfolio-info h4 a:hover {
  color: var(--color-primary);
}
.portfolio .portfolio-wrap .project-btn a {
  color: var(--light-color);
}
.portfolio .portfolio-wrap .portfolio-info p {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

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

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

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

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

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


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
/* Service Filter Bar */
.svc-flters {
  padding: 0 0 40px 0;
  margin: 0 auto;
  list-style: none;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.svc-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 22px;
  border: 2px solid #029b9b;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: #029b9b;
  background: transparent;
  line-height: 1;
  transition: all 0.25s ease-in-out;
}
.svc-flters li:hover,
.svc-flters li.filter-active {
  background: #029b9b;
  color: #fff;
  box-shadow: 0 4px 12px rgba(2,155,155,0.30);
}

/* Service Category Badge */
.svc-category-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: rgba(2,155,155,0.12);
  color: #029b9b;
  margin-bottom: 10px;
}

/* Service Cards */
.service-card {
  position: relative;
  padding: 2rem;
  background-color: var(--color-light);
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
  text-align: center;
  z-index: 1;
  min-height: 350px;
}

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

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

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

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

.service-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-dark);
    margin-top: 8px;
    margin-bottom: 16px;
}

.service-description {
  font-size: 13px;
  color: #777;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Responsive */
@media (max-width: 992px) {
  .service-card {
      padding: 1.5rem;
  }
  .service-description {
      font-size: 0.9rem;
  }
}
#services {
  position: relative;
  overflow: hidden;
}

.tech-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/tech-pattern.jpg') center left; /* Replace with your pattern image */
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  z-index: 0; /* Ensures the pattern stays behind other content */
  opacity: 0.1; /* Adjust for a subtle effect */
}


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Card Style */
.pricing-card {
  background-color: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

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

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

/* Price Styling */
.pricing-card .price h4 {
  font-size: 2.5rem;
  color: #007bff;
  font-weight: 700;
}

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

.modern-card {
  background: linear-gradient(176deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2));
  /* border: 1px solid rgba(255, 255, 255, 0.3); */
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease-in-out;
}
.modern-card:hover {
  transform: scale(1.05);
}
.highlighted {
  border: 2px solid #029b9b;
  box-shadow: 0px 0px 20px #029b9b;
}
.premium {
  background: linear-gradient(135deg, #ffffff, #cdcdcd);
}

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

.pricing-card .features li {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

.contact-information-box-3 .contact-info p {
  color: var(--text-color);
  font-size: 13px;
  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: 20px;
}

.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] {
  background: linear-gradient(45deg, #029b9b, #029b9b, #035e5e);
  box-shadow: 0 6px 20px #029b9b70;
  color: #fff;
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

.contact-form button[type=submit]:hover {
  box-shadow: 0 6px 20px #029b9b70;
  color: #ffffff;
}

.contact-form button[type=submit]:active {
  box-shadow: 0 6px 20px #029b9b70;
}

.contact-form button[type=submit]::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.4s ease-in-out;
  z-index: 0;
}

.contact-form button[type=submit]:hover::before {
  transform: scale(1);
}

.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;
}
.contact-info-heading {
    font-size: 16px;
    color: var(--theme-color);
    margin-bottom: 7px;
    text-transform: capitalize;
}

.contact-info a:hover {
    color: var(--theme-color);
}


/*--------------------------------------------------------------
# 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;
    background-attachment: fixed;
    position: relative;
}

.footer-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 0;
}

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

/* ---- Brand ---- */
.footer-brand .logo img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 8px;
}

.footer-brand .logo-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
}

.footer-desc {
    font-size: 14px;
    color: #adb5bd;
    line-height: 1.8;
    max-width: 300px;
}

/* ---- Social Icons ---- */
.footer-social-icon span {
    color: var(--theme-color, #00bfa5);
    font-size: 15px;
    font-weight: 500;
    display: block;
    margin-bottom: 12px;
}

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

.footer-social-icon .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff !important;
    font-size: 16px;
    transition: all 0.3s ease;
    animation: floatIcon 5s ease-in-out infinite;
}

.footer-social-icon .social-icon:hover {
    background: var(--theme-color, #00bfa5);
    border-color: var(--theme-color, #00bfa5);
    transform: translateY(-3px);
}

.footer-social-icon .social-links a:nth-child(1) { animation-delay: 0s; }
.footer-social-icon .social-links a:nth-child(2) { animation-delay: 0.8s; }
.footer-social-icon .social-links a:nth-child(3) { animation-delay: 1.6s; }
.footer-social-icon .social-links a:nth-child(4) { animation-delay: 2.4s; }

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

/* ---- Widget Headings ---- */
.footer-widget-heading h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget-heading h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 36px;
    height: 2px;
    background: var(--theme-color, #00bfa5);
    border-radius: 2px;
}

/* ---- Footer Lists ---- */
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 11px;
}

.footer-list li a {
    color: #adb5bd;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-list li a i {
    font-size: 11px;
    color: var(--theme-color, #00bfa5);
}

.footer-list li a:hover {
    color: var(--theme-color, #00bfa5);
    padding-left: 4px;
}

/* ---- Contact Info ---- */
.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: #adb5bd;
    font-size: 14px;
    line-height: 1.6;
}

.contact-info-list li i {
    color: var(--theme-color, #00bfa5);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ---- Newsletter ---- */
.subscribe-form {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.subscribe-form input[type="email"] {
    width: 100%;
    padding: 13px 55px 13px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.subscribe-form input[type="email"]::placeholder {
    color: #888;
}

.subscribe-form input[type="email"]:focus {
    border-color: var(--theme-color, #00bfa5);
}

.subscribe-form button {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--theme-color, #00bfa5);
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.subscribe-form button:hover {
    background: #007a6e;
}

/* ---- Copyright Bar ---- */
.footer-bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
    background: rgba(0, 0, 0, 0.4);
}

.footer-bottom p {
    color: #adb5bd;
    font-size: 13px;
    margin: 0;
}

.footer-bottom p strong {
    color: var(--theme-color, #00bfa5);
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-bottom-links li a {
    color: #adb5bd;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom-links li a:hover {
    color: var(--theme-color, #00bfa5);
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .footer-brand .logo-name { font-size: 1.2rem; }
    .footer-bottom-links { justify-content: center; }
    .footer-bottom p  { text-align: center; }
}

@media (max-width: 576px) {
    .footer-bottom-links { flex-direction: column; align-items: center; gap: 8px; }
}


/*--------------------------------------------------------------
# GitHub-Style Header Components
--------------------------------------------------------------*/

/* Header Actions Container */
.header-actions {
  gap: 8px;
}

/* Sign In Button - GitHub style text link */
.btn-sign-in {
  color: var(--menu-color);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 5px 12px;
  border-radius: 6px;
  transition: 0.2s;
  white-space: nowrap;
}

.stikcy-menu .btn-sign-in {
  color: var(--text-color);
}

.btn-sign-in:hover {
  color: var(--text-theme-color);
}

/* Sign Up Button - GitHub style CTA */
.btn-sign-up {
  background: var(--text-theme-color);
  color: #fff !important;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 6px;
  text-decoration: none;
  border: 1px solid var(--text-theme-color);
  transition: 0.2s;
  white-space: nowrap;
}

.btn-sign-up:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/*--------------------------------------------------------------
# Nav User Avatar Dropdown (shown when logged in)
--------------------------------------------------------------*/
.nav-user-menu {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-user-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--text-theme-color, #029b9b);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  overflow: hidden;
}

.nav-user-btn:hover,
.nav-user-btn.open {
  border-color: #017a7a;
  box-shadow: 0 0 0 3px rgba(2,155,155,0.20);
}

.nav-user-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.nav-user-initials {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--text-theme-color, #029b9b);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  align-items: center;
  justify-content: center;
}

/* Dropdown panel */
.nav-user-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.14);
  padding: 8px 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
}

.nav-user-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0s;
}

/* Arrow pointer */
.nav-user-dropdown::before {
  content: '';
  position: absolute;
  top: -7px;
  right: 12px;
  width: 13px;
  height: 13px;
  background: #fff;
  border-top: 1px solid #e0e0e0;
  border-left: 1px solid #e0e0e0;
  transform: rotate(45deg);
  border-radius: 2px;
}

/* User info section */
.nav-user-info {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 12px;
}

.nav-user-avatar-lg {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--text-theme-color, #029b9b);
  flex-shrink: 0;
}

.nav-user-name {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a2e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 140px;
}

.nav-user-email {
  font-size: 11px;
  color: #888;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 140px;
}

.nav-user-divider {
  height: 1px;
  background: #f0f0f0;
  margin: 4px 0;
}

/* Menu items */
.nav-user-item {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s, color 0.15s;
}

.nav-user-item:hover {
  background: #f5f5f5;
  color: var(--text-theme-color, #029b9b);
}

.nav-user-item i {
  font-size: 14px;
  width: 16px;
  text-align: center;
  color: #666;
}

.nav-user-item:hover i {
  color: var(--text-theme-color, #029b9b);
}

.nav-user-signout {
  color: #d9534f;
}

.nav-user-signout:hover {
  background: #fff5f5;
  color: #c9302c;
}

.nav-user-signout i {
  color: #d9534f;
}

/* Dark header (before scroll) — keep border visible */
.header:not(.stikcy-menu) .nav-user-btn {
  border-color: rgba(255,255,255,0.7);
}

.header:not(.stikcy-menu) .nav-user-btn:hover {
  border-color: #fff;
}

/* Mobile — hide dropdown, show as part of mobile nav */
@media (max-width: 1199px) {
  .nav-user-dropdown {
    right: -10px;
  }
}

/*--------------------------------------------------------------
# Live Search Bar - GitHub Command Palette Style
--------------------------------------------------------------*/
.header-search-wrapper {
  flex: 0 1 320px;
  margin: 0 16px;
}

.header-search {
  position: relative;
  width: 100%;
}

.header-search .search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--menu-color);
  font-size: 14px;
  opacity: 0.7;
  pointer-events: none;
  z-index: 2;
}

.stikcy-menu .header-search .search-icon {
  color: var(--text-color);
}

.header-search-input {
  width: 100%;
  padding: 6px 40px 6px 34px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--menu-color);
  font-size: 14px;
  outline: none;
  transition: 0.2s;
}

.stikcy-menu .header-search-input {
  border-color: var(--border-color);
  background: rgba(0, 0, 0, 0.04);
  color: var(--text-color);
}

.header-search-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.stikcy-menu .header-search-input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.header-search-input:focus {
  border-color: var(--text-theme-color);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(2, 155, 155, 0.15);
}

.stikcy-menu .header-search-input:focus {
  background: #fff;
}

.search-kbd {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  padding: 1px 6px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.5);
  font-family: monospace;
  pointer-events: none;
  background: transparent;
}

.stikcy-menu .search-kbd {
  border-color: var(--border-color);
  color: rgba(0, 0, 0, 0.3);
}

/* Search Results Dropdown */
.search-results-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--light-color);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
  z-index: 1000;
  display: none;
  max-height: 400px;
  overflow-y: auto;
}

.search-results-dropdown.active {
  display: block;
}

.search-results-inner {
  padding: 8px;
}

.search-result-item {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-color);
  transition: 0.15s;
  gap: 10px;
}

.search-result-item:hover,
.search-result-item.active {
  background: rgba(2, 155, 155, 0.08);
  color: var(--text-theme-color);
}

.search-result-item i {
  font-size: 16px;
  opacity: 0.6;
  flex-shrink: 0;
}

.search-result-item span {
  font-size: 14px;
}

.search-result-item small {
  display: block;
  font-size: 12px;
  opacity: 0.6;
  margin-top: 2px;
}

.search-no-results {
  padding: 20px;
  text-align: center;
  color: var(--text-color);
  opacity: 0.6;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Mega Menu - GitHub Style
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .mega-menu-dropdown {
    position: static !important;
  }

  .mega-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 30px);
    background: var(--light-color);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 99;
    overflow: hidden;
  }

  .mega-menu-dropdown:hover .mega-menu {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .mega-menu-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 24px 0;
  }

  .mega-menu-col {
    padding: 0 28px;
    border-right: 1px solid var(--border-color);
  }

  .mega-menu-col:last-child {
    border-right: none;
  }

  .mega-menu-heading {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-color);
    opacity: 0.6;
    margin-bottom: 12px;
    padding: 0 8px;
  }

  .mega-menu-heading i {
    margin-right: 6px;
    font-size: 14px;
  }

  .mega-menu-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
  }

  .mega-menu-col ul li {
    min-width: auto;
  }

  .mega-menu-col ul li a {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px;
    padding: 10px 8px !important;
    border-radius: 8px;
    transition: 0.15s;
    text-decoration: none;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: var(--text-color) !important;
  }

  .mega-menu-col ul li a:hover {
    background: rgba(2, 155, 155, 0.06);
    color: var(--text-theme-color) !important;
  }

  .mega-menu-col ul li a > i {
    font-size: 18px !important;
    color: var(--text-theme-color);
    margin-top: 2px;
    flex-shrink: 0;
    line-height: 1 !important;
    margin-left: 0 !important;
  }

  .mega-menu-col ul li a strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 2px;
  }

  .mega-menu-col ul li a small {
    display: block;
    font-size: 12px;
    color: var(--text-color);
    opacity: 0.65;
    line-height: 1.3;
  }

  .mega-menu-col ul li a:hover strong {
    color: var(--text-theme-color);
  }

  .mega-menu-footer {
    display: flex;
    gap: 24px;
    padding: 14px 28px;
    background: var(--theme-color-dark);
    border-top: 1px solid var(--border-color);
  }

  .mega-menu-footer a {
    font-size: 13px !important;
    font-weight: 500 !important;
    color: var(--text-theme-color) !important;
    text-decoration: none;
    padding: 0 !important;
  }

  .mega-menu-footer a:hover {
    text-decoration: underline;
  }

  .mega-menu-footer a i {
    margin-left: 4px !important;
    font-size: 12px !important;
  }
}

/* Mega Menu - Mobile */
@media (max-width: 1279px) {
  .mega-menu-dropdown .mega-menu {
    display: none;
    padding: 0;
  }

  .mega-menu-dropdown.active .mega-menu {
    display: block;
  }

  .mega-menu-inner {
    display: block;
    padding: 10px 0;
  }

  .mega-menu-col {
    padding: 5px 15px;
  }

  .mega-menu-heading {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.5);
    margin: 10px 0 5px;
    padding: 0 10px;
  }

  .mega-menu-heading i {
    margin-right: 4px;
  }

  .mega-menu-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mega-menu-col ul li a {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 14px;
  }

  .mega-menu-col ul li a > i {
    font-size: 16px;
    color: var(--text-theme-color);
  }

  .mega-menu-col ul li a div {
    display: flex;
    flex-direction: column;
  }

  .mega-menu-col ul li a strong {
    font-size: 13px;
    color: #fff;
  }

  .mega-menu-col ul li a small {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
  }

  .mega-menu-footer {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mega-menu-footer a {
    color: var(--text-theme-color) !important;
    font-size: 13px;
  }

  /* Mobile Sign-in/up buttons */
  .header-actions .btn-sign-in,
  .header-actions .btn-sign-up {
    display: none;
  }
}

/* Header search responsive hide/show handled by d-none d-lg-flex */

/* ── Notice Board ── */

.notice-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.notice-item {
    display: flex;
    align-items: stretch;
    background: var(--theme-color-dark);
    border: 1px solid #e8f5f5;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.notice-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(2, 155, 155, 0.12);
}

/* Accent bar colours by priority */
.accent-bar {
    width: 5px;
    flex-shrink: 0;
    background: #029b9b;
}
.priority-high  .accent-bar { background: #e74c3c; }
.priority-medium .accent-bar { background: #029b9b; }
.priority-low   .accent-bar { background: #27ae60; }

.notice-body {
    flex: 1;
    padding: 1rem 1.25rem;
    min-width: 0;
}
.details-description {
    font-size: 1rem;
    font-weight: 300;
}
.details-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.4rem;
    flex-wrap: wrap;
}

.notice-priority-badge {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 4px;
}
.priority-high   .notice-priority-badge { background: #fdecea; color: #c0392b; }
.priority-medium .notice-priority-badge { background: #e6f7f7; color: #017a7a; }
.priority-low    .notice-priority-badge { background: #eafaf1; color: #1e8449; }
.custom-badge {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 4px;
    background: #e6f7f7;
    color: #017a7a;
}
.notice-date {
    font-size: 0.78rem;
    color: #7a9a9a;
    display: flex;
    align-items: center;
    gap: 4px;
}
.notice-date .bi { font-size: 0.75rem; }

.notice-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark);
    margin: 0 0 0.3rem;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notice-desc {
    font-size: 13px;
    color: #6c8585;
    margin: 0;
    line-height: 1.55;
}

.notice-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.25rem 1rem 0.5rem;
    flex-shrink: 0;
}

.notice-file-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #c8e6e6;
    background: #f0fafa;
    color: #029b9b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: background 0.18s;
    text-decoration: none;
}
.notice-file-btn:hover { background: #d4f0f0; color: #017575; }

.notice-read-btn {
    font-size: 0.78rem;
    font-weight: 600;
    color: #029b9b;
    text-decoration: none;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    transition: background 0.18s;
}
.notice-read-btn:hover { background: #e6f7f7; color: #017575; }

@media (max-width: 576px) {
    .notice-title { white-space: normal; }
    .notice-desc  { display: none; }
    .notice-actions { flex-direction: column; gap: 0.35rem; padding-right: 0.75rem; }
}

.notice-search-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 28px;
}
.nsb-group {
    position: relative;
    flex: 1;
    min-width: 180px;
}
.nsb-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
}
.nsb-input {
    width: 100%;
    padding: 9px 12px 9px 34px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border-color .2s;
    box-sizing: border-box;
}
.nsb-input:focus { border-color: #6366f1; }
.nsb-date { padding-left: 34px; }
.nsb-btn {
    padding: 9px 20px;
    background: #1e293b;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}
.nsb-btn:hover { background: #334155; }
.nsb-clear {
    font-size: 13px;
    color: #64748b;
    text-decoration: none;
    padding: 4px 2px;
}
.nsb-clear:hover { color: #ef4444; }

/* App name beside logo */
.logo-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--menu-color);
    white-space: nowrap;
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

/* Right-align the nav */
#navbar {
    margin-left: auto;
    margin-right: 16px;
}

/* Sign in always visible — override any hide-on-mobile */
.btn-get-started {
    display: inline-block !important;
}

/* Prevent logo-name from crowding on very small screens */
@media (max-width: 360px) {
    .logo-name {
        font-size: 1rem;
    }
}


.np-select-page-number .pagination {
    margin: 0;
    flex-wrap: wrap;
}

.np-select-page-number .page-item + .page-item {
    margin-left: 4px;
}

.np-select-page-number .page-item .page-link {
    border: 1.5px solid #e2e8f0;
    border-radius: 8px !important;
    color: #1e293b;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 13px;
    line-height: 1.5;
    transition: all .18s ease;
    background: #fff;
    box-shadow: none;
}

.np-select-page-number .page-item .page-link:hover {
    background: #f1f5f9;
    border-color: #94a3b8;
    color: #1e293b;
}

.np-select-page-number .page-item.active .page-link {
    background: #1e293b;
    border-color: #1e293b;
    color: #fff;
    font-weight: 700;
}

.np-select-page-number .page-item.disabled .page-link {
    background: #f8fafc;
    border-color: #e2e8f0;
    color: #cbd5e1;
    pointer-events: none;
}

.np-select-page-number .page-item:first-child .page-link,
.np-select-page-number .page-item:last-child .page-link {
    padding: 6px 14px;
}

/* Notice Detail */
.notice-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--theme-color);
    text-decoration: none;
    margin-bottom: 20px;
}
.notice-back-link:hover { color: var(--theme-dark, #035e5e); }

.detail-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 24px;
    align-items: start;
}

.detail-card {
    display: flex;
    align-items: stretch;
    background: var(--theme-color-dark);
    border: 1px solid #e8f5f5;
    border-radius: 12px;
    overflow: hidden;
}

.detail-body {
    flex: 1;
    padding: 28px 32px;
}

.detail-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-heading);
    line-height: 1.4;
    margin: 14px 0 0;
}

.detail-divider {
    border: none;
    border-top: 1px solid #e8f5f5;
    margin: 18px 0;
}

.detail-content {
    font-size: 0.92rem;
    color: var(--text-color);
    line-height: 1.75;
}

/* File block */
.file-block {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f0fafa;
    border: 1px solid #c8e6e6;
    border-radius: 8px;
    padding: 14px 18px;
    flex-wrap: wrap;
}
.file-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #d4f0f0;
    color: var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.file-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}
.file-label {
    font-size: 0.75rem;
    color: #7a9a9a;
}
.file-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.file-download-btn {
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
    background: var(--theme-color);
    border-radius: 6px;
    padding: 7px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
    transition: background .18s;
}
.file-download-btn:hover { background: #035e5e; color: #fff; }

/* Prev / Next */
.pag-row {
    display: flex;
    justify-content: space-between;
    margin-top: 16px;
}
.pag-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--theme-color);
    background: #e6f7f7;
    border: 1px solid #c8e6e6;
    border-radius: 8px;
    padding: 7px 14px;
    text-decoration: none;
    transition: background .15s;
}
.pag-btn:hover { background: #d0f0f0; color: var(--theme-color); }
.pag-btn.disabled {
    color: #94a3b8;
    background: #f8fafc;
    border-color: #e2e8f0;
    pointer-events: none;
}

/* Sidebar cards */
.detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.side-card {
    background: var(--theme-color-dark);
    border: 1px solid #e8f5f5;
    border-radius: 12px;
    overflow: hidden;
}
.side-header {
    padding: 13px 18px;
    border-bottom: 1px solid #e8f5f5;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--theme-color);
}

/* Info rows */
.info-rows {
    padding: 12px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
}
.info-label { color: #7a9a9a; }
.info-val { font-weight: 600; color: var(--text-color); }
.info-published { color: #27ae60; }

/* Related list */
.related-list { padding: 6px 0; }
.related-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    text-decoration: none;
    transition: background .15s;
}
.related-item:hover { background: #f0fafa; }
.related-item + .related-item { border-top: 1px solid #e8f5f5; }
.related-bar {
    width: 4px;
    border-radius: 2px;
    align-self: stretch;
    min-height: 40px;
    flex-shrink: 0;
    background: #029b9b;
}
.related-bar.priority-high   { background: #e74c3c; }
.related-bar.priority-medium { background: #029b9b; }
.related-bar.priority-low    { background: #27ae60; }
.related-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
}
.related-heading {
    display: flex;
    align-items: center;
    gap: 8px;
}
.related-badge {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #7a9a9a;
}
.related-title {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
    line-height: 1.35;
}
.related-date {
    font-size: 0.72rem;
    color: #7a9a9a;
    margin-top: 2px;
}
.related-description {
    font-size: 0.7rem;
    color: #7a9a9a;
    margin-top: 2px;
}
.related-arrow {
    font-size: 0.75rem;
    color: var(--theme-color);
    flex-shrink: 0;
}
.detail-image-wrap {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.detail-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}
@media (max-width: 768px) {
    .detail-layout { grid-template-columns: 1fr; }
    .detail-body { padding: 20px 18px; }
}


/* Contact us page*/

.contact-card {
    background: #f5f5f5;
    border-radius: 6px;
    padding: 32px;
    margin-bottom: 24px;
}

.card-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e0e0e0;
}

/* Form */
.contact-form .form-group {
    margin-bottom: 18px;
}
.contact-form label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6c757d;
    margin-bottom: 8px;
}
.contact-form .form-control {
    width: 100%;
    border: 1px solid #e0e0e0;
    background: #ffffff;
    border-radius: 4px;
    padding: 12px 16px;
    font-size: 14px;
    transition: border-color 0.2s ease;
}
.contact-form .form-control:focus {
    outline: none;
    border-color: #d62839;
    box-shadow: 0 0 0 3px rgba(214, 40, 57, 0.1);
}
.contact-form textarea.form-control {
    resize: vertical;
}
.send-message-btn {
    display: inline-block;
    border: none;
    background: #d62839;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 12px;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease;
}
.send-message-btn:hover {
    background: #b71f2e;
}

/* Contact Information */
.info-grid {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.info-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
}
.info-icon.phone-icon,
.info-icon.email-icon {
    color: #029b9b;
}
.info-icon.address-icon,
.info-icon.others-icon {
    color: #1a1a1a;
}
.info-text h6 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 4px;
}
.info-text p {
    margin: 0;
    font-size: 14px;
    color: #6c757d;
    line-height: 1.5;
}
.info-text a {
    color: #6c757d;
    text-decoration: none;
}
.info-text a:hover {
    color: var(--theme-color);
}
.open-days-text {
    font-size: 14px;
    color: #6c757d;
    margin: 0 0 18px;
    line-height: 1.6;
}
.contact-contact-social-links {
    display: flex;
    gap: 12px;
}
.contact-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    color: #1a1a1a;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.contact-social-link:hover {
    background: #029b9b;
    border-color: #029b9b;
    color: #ffffff;
}
/* Map */
.contact-map {
    margin-top: 24px;
    border-radius: 6px;
    overflow: hidden;
    line-height: 0;
}

/* Responsive */
@media (max-width: 575px) {
    .contact-card {
        padding: 22px;
    }
}

/*--------------------------------------------------------------
# About Mission Vision Section
--------------------------------------------------------------*/
.eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--theme-color);
    margin-bottom: 10px;
}

.about-section-title {
    font-size: 2rem;
    position: relative;
    font-weight: bold;
    color: var(--color-heading);
    line-height: 1.25;
    margin-bottom: 10px;
}

.about-section-title span {
    color: var(--theme-color);
}

.section-sub {
    font-size: 15px;
    color: #555;
    line-height: 1.75;
}

.about-accent-bar {
    width: 40px;
    height: 4px;
    background: var(--theme-color);
    border-radius: 2px;
    margin-bottom: 20px;
}

/* ── About Section ── */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-body {
    font-size: 14px;
    /* color: #444; */
    line-height: 1.8;
    margin-bottom: 14px;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    background: var(--theme-color);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 26px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}

.about-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px #029b9b70;
    color: #ffffff;
}

/* Image box */
.about-img-wrap {
    position: relative;
}

.about-img-box {
    background: linear-gradient(135deg, #E1F5EE 0%, #9FE1CB 100%);
    border-radius: 18px;
    height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid #5DCAA5;
    overflow: hidden;
}

.about-img-box i {
    font-size: 56px;
    color: #0F6E56;
}

.about-img-box span {
    font-size: 13px;
    color: #0F6E56;
    font-weight: 500;
}

/* Replace .about-img-box with a real <img> like:
    <img src="your-photo.jpg" alt="Prodex team" style="width:100%;height:320px;object-fit:cover;border-radius:18px;" />
*/

.badge {
    position: absolute;
    bottom: -18px;
    right: 24px;
    background: var(--theme-color);
    color: #fff;
    border-radius: 12px;
    padding: 12px 18px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 20px rgba(29, 158, 117, 0.3);
}

/* ── Stat Cards ── */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 56px;
}

.stat-card {
    background: #E1F5EE;
    border-radius: 14px;
    padding: 28px 16px;
    text-align: center;
    transition: transform 0.2s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: linear-gradient(45deg, rgba(255, 0, 150, 0.3), rgba(0, 204, 255, 0.3));
    transition: transform 0.3s ease;
}

.stat-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.stat-icon i {
    font-size: 22px;
    color: var(--theme-color);
}

.stat-num {
    font-size: 32px;
    font-weight: 700;
    color: #0F6E56;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-lbl {
    font-size: 13px;
    color: var(--theme-color);
    font-weight: 500;
}

/* ── Divider ── */
.section-divider {
    width: 100%;
    height: 1px;
    background: #e8f5f1;
}

/* ── Mission Vision Goal ── */

.mvg-header {
    text-align: center;
}

.mvg-header .section-sub {
    max-width: 520px;
    margin: 0 auto;
}

.mvg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.mvg-card {
    background-color: var(--light-color);
    border: 1px solid #e0f4ed;
    border-radius: 16px;
    padding: 32px 28px;
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s;
}

.mvg-card:hover {
    box-shadow: 0 8px 32px rgba(29, 158, 117, 0.12);
    transform: translateY(-4px);
}

.mvg-card.featured {
    border-top: 4px solid var(--theme-color);
}

.mvg-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.mvg-icon-wrap.light {
    background: #E1F5EE;
}

.mvg-icon-wrap.dark {
    background: var(--theme-color);
}

.mvg-icon-wrap i {
    font-size: 26px;
}

.mvg-icon-wrap.light i {
    color: #0F6E56;
}

.mvg-icon-wrap.dark i {
    color: #fff;
}

.mvg-card-title {
    font-size: 18px;
    font-weight: 700;
    /* color: #111; */
    margin-bottom: 10px;
}

.mini-bar {
    width: 32px;
    height: 3px;
    background: var(--theme-color);
    border-radius: 2px;
    margin-bottom: 14px;
}

.mvg-card-text {
    font-size: 13px;
    /* color: #555; */
    line-height: 1.8;
}

.badge-pill {
    display: inline-block;
    margin-top: 16px;
    background: #E1F5EE;
    color: #0F6E56;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
}

/* ── Values strip ── */
.values-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 48px;
}

.value-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    /* background: #fff; */
    background: var(--light-color);
    border: 1px solid #c8ede1;
    border-radius: 30px;
    padding: 8px 18px;
    font-size: 13px;
    /* color: #444; */
    font-weight: 500;
}

.value-chip i {
    font-size: 16px;
    color: var(--theme-color);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mvg-grid {
        grid-template-columns: 1fr;
    }

    .about-section-title {
        font-size: 26px;
    }
}

@media (max-width: 520px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section {
        padding: 48px 16px;
    }
}

/* Animate count numbers on scroll */
.stat-num[data-target] {
    transition: none;
}


/*--------------------------------------------------------------
# Training Section
--------------------------------------------------------------*/
.training-item .training-card {
  background: var(--light-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.training-item .training-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.training-status-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  color: var(--light-color);
}

.training-status-badge.status-upcoming { background: var(--color-primary, #00bfa5); }
.training-status-badge.status-ongoing  { background: #ff9f43; }
.training-status-badge.status-completed { background: #9aa0a6; }

.training-image-wrap {
  width: 100%;
  height: 160px;
  background: #f1f1f1;
  overflow: hidden;
}

.training-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.training-image-wrap.training-image-placeholder,
.training-image-wrap.no-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary, #00bfa5), #00897b);
}

.training-image-wrap.training-image-placeholder i,
.training-image-wrap.no-image i {
  font-size: 42px;
  color: var(--light-color);
  opacity: 0.85;
}
.training-image-wrap.no-image img { display: none; }

.training-info {
  padding: 20px 22px 22px;
  text-align: center;
}

.training-info h4 {
  min-height: 42px;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--color-heading);
  line-height: 1.3;
}

.training-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
}

.training-meta li {
  font-size: 13px;
  color: #6c757d;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.training-meta li i {
  color: var(--color-primary, #00bfa5);
}

.training-info .divider {
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  margin: 8px auto;
}

.training-info p {
  font-size: 13px;
  color: #888;
  line-height: 1.5;
  margin-bottom: 0;
}
.btn-enroll,
.btn-enroll:focus,
.btn-enroll:active,
.btn-enroll:focus-visible,
.btn-enroll:not(:disabled):not(.disabled):active {
  display: inline-block;
  background: var(--color-primary, #00bfa5);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 10px 26px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-enroll:hover {
  background: var(--theme-color, #00897b);
  color: #fff;
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Status Filter Pills (list page)
--------------------------------------------------------------*/
.filters-button-group {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  background: #f4f9f8;
  padding: 6px;
  border-radius: 30px;
}

.filter-btn {
  border: none;
  background: transparent;
  color: var(--color-heading, #1a1a1a);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 9px 20px;
  border-radius: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  color: var(--color-primary, #00bfa5);
}

.filter-btn.active {
  background: var(--color-primary, #00bfa5);
  color: #fff;
}

.training-item.is-hidden {
  display: none !important;
}

/*--------------------------------------------------------------
# Outline Button (secondary CTA, pairs with .btn-enroll)
--------------------------------------------------------------*/
.btn-outline-enroll {
  display: inline-block;
  background: transparent;
  color: var(--color-primary, #00bfa5);
  border: 1.5px solid var(--color-primary, #00bfa5);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline-enroll:hover {
  background: var(--color-primary, #00bfa5);
  color: #fff;
}

/*--------------------------------------------------------------
# Empty State (list page, no trainings)
--------------------------------------------------------------*/
#trainings-list .bi-mortarboard {
  font-size: 42px;
  color: #ccc;
  display: block;
  margin-bottom: 14px;
}

#trainings-list .text-center.py-5 p {
  color: #888;
  margin-bottom: 6px;
}

/*--------------------------------------------------------------
# Pagination (list page)
--------------------------------------------------------------*/
.pagination {
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.pagination .page-link {
  border: none;
  border-radius: 8px !important;
  color: var(--color-heading, #1a1a1a);
  font-size: 14px;
  padding: 8px 14px;
}

.pagination .page-item.active .page-link {
  background: var(--color-primary, #00bfa5);
  color: #fff;
}

.pagination .page-item.disabled .page-link {
  color: #ccc;
}

/*--------------------------------------------------------------
# Training Detail Banner + Body
--------------------------------------------------------------*/
.training-detail-banner {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 30px;
  padding: 46px 34px;
  background: linear-gradient(135deg, var(--color-primary, #00bfa5), #00897b);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.training-detail-banner .training-status-badge.static {
  position: static;
  display: inline-block;
  margin-bottom: 14px;
  background: rgba(255, 255, 255, 0.2) !important;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.training-detail-banner h1 {
  color: #fff;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.training-detail-banner p {
    color: var(--bs-gray-500);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

.training-detail-body h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-heading, #1a1a1a);
  margin-bottom: 10px;
}

.training-detail-body .divider {
  width: 50px;
  height: 3px;
  background: var(--color-primary, #00bfa5);
  margin-bottom: 22px;
}

.training-description {
  font-size: 15px;
  line-height: 1.9;
  color: #555;
}

.training-attachment-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
}

/*--------------------------------------------------------------
# Training Key Facts (duration/dates/venue + Enroll button, col-8)
--------------------------------------------------------------*/
.training-key-facts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: #fff;
  border-radius: 12px;
  padding: 22px 26px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  margin-bottom: 30px;
}

.training-key-facts-list {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.training-key-facts-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.training-key-facts-list li i {
  font-size: 18px;
  color: var(--color-primary, #00bfa5);
  margin-top: 2px;
}

.training-key-facts-list li span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #999;
  margin-bottom: 2px;
}

.training-key-facts-list li strong {
  font-size: 14px;
  color: var(--color-heading, #1a1a1a);
  font-weight: 600;
}

.training-key-facts .btn-enroll {
  flex-shrink: 0;
  padding: 12px 30px;
  border: none;
  cursor: pointer;
}

@media (max-width: 576px) {
  .training-key-facts {
    flex-direction: column;
    align-items: stretch;
  }
  .training-key-facts .btn-enroll {
    width: 100%;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Share Row (below description, col-8)
--------------------------------------------------------------*/
.training-detail-share {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

.training-detail-share span {
  font-size: 13px;
  color: #888;
}

.training-detail-share a {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f4f9f8;
  color: var(--color-primary, #00bfa5);
  transition: 0.3s;
}

.training-detail-share a:hover {
  background: var(--color-primary, #00bfa5);
  color: #fff;
}

/*--------------------------------------------------------------
# Other Trainings (sticky list, col-4)
--------------------------------------------------------------*/
.upcoming-trainings-widget {
  position: sticky;
  background: #fff;
  border-radius: 12px;
  padding: 26px 26px 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

@media (max-width: 991px) {
  .upcoming-trainings-widget {
    position: static;
    margin-top: 30px;
  }
}

.upcoming-trainings-widget h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-heading, #1a1a1a);
  margin-bottom: 8px;
}

.upcoming-trainings-widget > .divider {
  width: 40px;
  height: 3px;
  background: var(--color-primary, #00bfa5);
  margin-bottom: 18px;
}

.upcoming-training-item {
  display: block;
  position: relative;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.upcoming-training-item:last-child {
  border-bottom: none;
}

.upcoming-training-item:hover {
  opacity: 0.75;
}

.upcoming-training-item .training-status-badge.static {
  position: static;
  display: inline-block;
  margin-bottom: 8px;
}

.upcoming-training-item h6 {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-heading, #1a1a1a);
  line-height: 1.4;
  margin-bottom: 8px;
}

.upcoming-training-meta {
  list-style: none;
  padding: 0;
  margin: 0;
}

.upcoming-training-meta li {
  font-size: 12px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}

.upcoming-training-meta li i {
  color: var(--color-primary, #00bfa5);
  font-size: 12px;
}

/*--------------------------------------------------------------
# Alternate Section Background (Related Trainings)
--------------------------------------------------------------*/
.section-alt {
  background: #f4f9f8;
}

/*--------------------------------------------------------------
# Enroll Modal
--------------------------------------------------------------*/
#enrollModal .modal-content {
  border-radius: 14px;
  border: none;
}

#enrollModal .modal-header {
  border-bottom: 1px solid #f0f0f0;
  padding: 20px 24px;
}

#enrollModal .modal-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-heading, #1a1a1a);
}

#enrollModal .form-group { margin-bottom: 12px; }

#enrollModal .input-icon-wrap { position: relative; }

#enrollModal .input-icon-wrap .icon {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: #3a5470;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    pointer-events: none;
    padding: 0;
}

#enrollModal .input-icon-wrap .icon svg { width: 16px; height: 16px; }

#enrollModal .form-control::placeholder { color: #3a5470; }

#enrollModal .form-control:focus {
    border-color: rgba(0,210,200,0.6);
    box-shadow: 0 0 0 3px rgba(0,210,200,0.12);
    background: rgba(255,255,255,0.07);
}
#enrollModal .form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-heading, #1a1a1a);
}

#enrollModal .form-control {
  border-radius: 8px;
  border: 1px solid #e2e2e2;
  padding: 10px 10px 10px 36px;
  font-size: 14px;
}

#enrollModal .form-control:focus {
  border-color: var(--color-primary, #00bfa5);
  box-shadow: 0 0 0 3px rgba(0, 191, 165, 0.12);
}

#enrollModal .modal-footer {
  border-top: 1px solid #f0f0f0;
  padding: 16px 24px;
}

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

.gallery .gallery-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 22px;
  border: none;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  margin: 0 10px;
  color: var(--text-white-color);
  line-height: 1;
  transition: all 0.3s ease-in-out;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #029b9b, #029b9b, #035e5e);
}

.gallery .gallery-flters li:hover,
.gallery .gallery-flters li.filter-active {
  color: #fff;
  transform: translateY(0);
  box-shadow: 0 4px 10px rgb(57 57 57 / 30%);
}

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

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

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

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

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

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

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

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

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

.gallery .gallery-wrap .gallery-info h4 a:hover {
  color: var(--color-primary);
}
.gallery .gallery-wrap .project-btn a {
  color: var(--light-color);
}
.gallery .gallery-wrap .gallery-info p {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

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

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

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

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

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