/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Nunito Sans", sans-serif;
  --nav-font: "Raleway", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #031119;
  /* Background color for the entire website, including individual sections */
  --default-color: rgba(255, 255, 255, 0.8);
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #e0e9f2;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #e3a127;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #000;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgba(255, 255, 255, 0.8);
  /* The default color of the main navmenu links */
  --nav-hover-color: #e3a127;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #29343a;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #29343a;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: rgba(255, 255, 255, 0.8);
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #e3a127;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #000;
  --surface-color: #000;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

html {
  scroll-behavior: smooth;   /* smooth scrolling */
  scroll-padding-top: 80px;  /* adjust to your header height */
}

a {
  color: #000;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: #000;
  text-decoration: none;
}

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

li {
  list-style: none;
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

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

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    /* --background-color: rgba(255, 255, 255, 0); */
    color: var(--default-color);
    /* background-color: var(--background-color); */
    padding: 10px 0;
    transition: all 0.5s;
    z-index: 997;
    background-color: rgb(255 255 255 / 2%);
    backdrop-filter: blur(5px);
}

.navmenu {
  background: var(--surface-color);
  border-radius: 50px;
  padding: 0px 35px 0px 20px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #5e5c5c;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 66px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 20px;
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--heading-color);
}

.header .btn-getstarted {
  color: #000;
  background: #fff;
  font-size: 16px;
  padding: 11px 12px;
  transition: 0.3s;
  border-radius: 5px;
  font-weight: 400;
  letter-spacing: 1px;
}

.btn-getstarted:hover .vertical .hover-text,
.btn-getstarted:hover .vertical .text {
  transform: translateY(-100%);
}

.btn-getstarted:hover .horizontal .hover-text,
.btn-getstarted:hover .horizontal .text {
  transform: translateX(100%);
}

/* .header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
} */

@media (max-width: 1200px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 10px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
    border: none;
}
}

@media (max-width: 480px) {
  .header .navmenu {
    border: none;
    background: transparent;
  }

}
@media (max-width: 575px) {
		.mobile-nav-active .navmenu {
    height: 200px;
}
}
@media screen and (max-width: 1100px) {
	.mobile-nav-active .navmenu {
    height: 200px;
}
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  /* .navmenu {
    padding: 0;
  } */

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 7px 12px;
    font-weight: 600;
    font-size: 14px;
    font-family: var(--nav-font);
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

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

  .navmenu li:last-child a {
    padding-right: 0;
  }

  /* .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  } */

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

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

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

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

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }

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

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    /* padding: 10px 0;
    margin: 0; */
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  @media (max-width: 480px) {
    .navmenu ul {
    display: block;
  }
}

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: #fff;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

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

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}

@media (max-width: 575px) {
  i.mobile-nav-toggle.d-xl-none.bi.bi-list {
    border: none;
  }
}
@media only screen and (max-width: 768px) {
  i.mobile-nav-toggle.d-xl-none.bi.bi-list {
    border: none;
  }
}



/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: #000;
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

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

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 22px;
  font-weight: 300;
  position: relative;
  padding-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

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

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  text-align: center;
  border-top: 1px solid #6464643b;
}

.footer .copyright p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

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

.scroll-top:hover {
  color: var(--contrast-color);
}

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.02) 0px,
    rgba(255, 255, 255, 0.05) 1px,
    transparent 1px,
    transparent 10px
  );
  z-index: 1;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li + li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: #000;
  padding: 105px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title div {
  color: #fff;
  margin: 0;
  margin: 0;
  font-size: 50px;
  font-weight: 700;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 160px 0;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.02) 0px,
    rgba(255, 255, 255, 0.05) 1px,
    transparent 1px,
    transparent 10px
  );
  z-index: 1;
}

.hero .container,
.hero .container-fluid {
  position: relative;
  z-index: 2;
}

.hero .content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 3rem;
}

@media (max-width: 991px) {
  .hero .content-col {
    padding-right: 15px;
    margin-bottom: 3rem;
  }	
.hero {
    padding-bottom: 0px;
    padding-top: 110px;
}
}

.hero .agency-name {
  margin-bottom: 1.5rem;
}

.hero .agency-name h5 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--contrast-color);
  margin: 0;
}

.hero .main-heading {
  margin-bottom: 2rem;
}

.hero .main-heading h1 {
  font-size: 85px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 0;
  color: #fff;
}

@media (max-width: 1200px) {
  .hero .main-heading h1 {
    font-size: 4rem;
  }
}

@media (max-width: 767px) {
  .hero .main-heading h1 {
    font-size: 3rem;
  }
}

@media (max-width: 480px) {
 .hero .main-heading h1 {
    font-size: 3.1rem;
}
}

.hero .divider {
  width: 60%;
  height: 1px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  margin-bottom: 2rem;
}

@media (max-width: 767px) {
  .hero .divider {
    width: 100%;
  }
}

.hero .description {
  margin-bottom: 2.5rem;
}

.hero .description p {
  font-size: 22px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  letter-spacing: 1px;
}

.hero .cta-button .btn {
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  border: 1px solid color-mix(in srgb, rgb(44 138 161), transparent 40%);
  color: #fff;
  border-radius: 10px;
  font-weight: 400;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  margin-right: 15px;
  padding: 12px 12px;
}

.hero .cta-button .btn-dwnld {
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  border: 1px solid color-mix(in srgb, rgb(255, 255, 255), transparent 40%);
  color: var(--default-color);
  border-radius: 10px;
  font-weight: 400;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  margin-right: 15px;
  padding: 12px 12px;
}

/*  */

.btn-about {
  display: flex;
  align-items: center;
  justify-content: left;
}

.content {
  position: relative;
  overflow: hidden;
  font-size: 14px;
}

.cta-button.dwnload .content {
  color: #000;
}

.cta-button.dwnload {
  background: #fff;
  border-radius: 10px;
}

.text,
.hover-text {
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.vertical .text,
.vertical .hover-text {
  transform: translateY(0%);
}

.horizontal .text,
.horizontal .hover-text {
  transform: translateX(0%);
}

.hover-text {
  position: absolute;
}

.vertical .hover-text {
  bottom: -100%;
}

.cta-button:hover .vertical .hover-text,
.cta-button:hover .vertical .text {
  transform: translateY(-100%);
}

.cta-button:hover .horizontal .hover-text,
.cta-button:hover .horizontal .text {
  transform: translateX(100%);
}

.cta-button .dwnload:hover .vertical .hover-text,
.cta-button:hover .vertical .text {
  transform: translateY(-100%);
}

.cta-button .dwnload:hover .horizontal .hover-text,
.cta-button:hover .horizontal .text {
  transform: translateX(100%);
}

/*  */

.hero .cta-button .btn span {
  margin-right: 0.5rem;
}

.hero .cta-button .btn i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

@media (max-width: 575px) {
  .bg-dot {
    display: none;
  }

  .content {
    font-size: 12px;
  }
	.hero .cta-button .btn {
    letter-spacing: 0px;
}


}

.hero .visual-content {
  position: relative;
  right: 140px;
  top: 160px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991px) {
 .hero .visual-content {
    flex-direction: column;
    display: none;
}
}

.hero .fluid-shape {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.fluid-shape img {
  width: 700px;
  --dot-bg: black;
  --dot-color: #363636;
  --dot-size: 2px;
  --dot-space: 22px;
  background: linear-gradient(
        90deg,
        var(--dot-bg) calc(var(--dot-space) - var(--dot-size)),
        transparent 1%
      )
      center / var(--dot-space) var(--dot-space),
    linear-gradient(
        var(--dot-bg) calc(var(--dot-space) - var(--dot-size)),
        transparent 1%
      )
      center / var(--dot-space) var(--dot-space),
    var(--dot-color);
}

.hero .fluid-shape .fluid-img {
  width: 100%;
  height: auto;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

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

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

.hero .stats-card {
  position: absolute;
  bottom: 10%;
  right: 0;
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
  backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 10px;
  padding: 1.5rem;
  width: 200px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .hero .stats-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 2rem;
    width: 90%;
  }
}

.hero .stats-card .stats-number h2 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0;
  line-height: 1;
}

.hero .stats-card .stats-label {
  margin-top: 0.5rem;
}

.hero .stats-card .stats-label p {
  font-size: 0.9rem;
  margin: 0;
}

.hero .stats-card .stats-arrow {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}

.hero .stats-card .stats-arrow a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--accent-color);
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.hero .stats-card .stats-arrow a:hover {
  transform: translateY(-3px);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

section.hero-bottom {
  text-align: center;
}

h3.hero-bottom-heading {
  text-align: center;
  font-size: 55px;
  color: #fff;
}

img.marquee-img {
  width: 120px !important;
  height: 48px !important;
  opacity: 0.8;
  filter: grayscale(100%);
  margin-left: 60px;
}

img.marquee-img:hover {
  filter: none;
}

@media (max-width: 768px) {
	section.hero-bottom {
    padding-top: 0px;
}
}
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: linear-gradient(#100f0f, #000);
}

.about .about-image {
  border-radius: 8px;
  overflow: hidden;
}

p.about-para strong {
  color: #fff;
}

p.about-para {
  font-size: 1.15rem;
  margin-top: 20px;
}

.line-1 {
  position: relative;
  top: 50%;
  width: 24em;
  margin: 0 auto;
  border-right: 2px solid rgba(255, 255, 255, 0.75);
  font-size: 180%;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  transform: translateY(-50%);
}

/* Animation */
.anim-typewriter {
  animation: typewriter 4s steps(44) 1s 1 normal both,
    blinkTextCursor 500ms steps(44) infinite normal;
}

@keyframes typewriter {
  from {
    width: 0;
  }

  to {
    width: 28em;
  }
}

@keyframes blinkTextCursor {
  from {
    border-right-color: rgba(255, 255, 255, 0.75);
  }

  to {
    border-right-color: transparent;
  }
}

@media (max-width: 768px) {
  .about .about-content h2 {
    font-size: 1.8rem;
  }
}

.about .about-content p {
  margin-bottom: 1rem;
}

.dark-bg {
  background-color: #121212;
  border-radius: 0.5rem;
  padding: 1rem 1.5rem;
  font-family: "Segoe UI Mono", Consolas, Monaco, monospace;
  font-weight: 500;
  font-size: 0.9rem;
  user-select: none;
}

.dark-bg > small {
  opacity: 0.6;
}

.dark-bg .text-danger {
  font-weight: 900;
  font-size: 1.25rem;
}

.dark-bg .text-success {
  font-weight: 900;
  font-size: 1.25rem;
}

.mb-4 {
  margin-bottom: 0px !important;
}

.col-md-6.mb-4.layout-content {
  border-right: 1px solid #323232;
  padding: 30px;
}

.col-md-6.mb-4.layout {
  padding: 30px;
}

.col-md-6.mb-4.layout h5 {
  font-size: 28px;
  color: #fff;
}

.col-md-6.mb-4.layout-content h5 {
  font-size: 28px;
  color: #fff;
}

.col-md-6.mb-4.layout p {
  font-size: 17px;
}

.col-md-6.mb-4.layout-content p {
  font-size: 17px;
}

.section-split {
  border-bottom: 1px solid #222;
  margin-bottom: 2rem;
}

.text-muted {
  --bs-text-opacity: 1;
  color: rgb(110 110 110) !important;
}

.btn-speech {
  font-family: "Segoe UI Mono", Consolas, Monaco, monospace;
  background-color: #1f1f1f;
  color: #ccc;
  border: none;
  text-align: center;
  font-size: 15px;
  padding: 0.55rem 1.25rem;
  border-radius: 0.45rem;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-left: 55px;
}

@media (max-width: 575px) {
  button.btn-speech.mt-2.line-1.anim-typewriter {
    display: none;
  }
}

.btn-speech:hover {
  background-color: #333;
  color: #fff;
}

.list-group-item {
  background: transparent !important;
  border: 0px;
  border-radius: 0.5rem;
  color: #ddd;
  font-size: 0.95rem;
  user-select: none;
  transition: background-color 0.3s ease;
}

.list-group-item:disabled,
.list-group-item.disabled {
  opacity: 0.35;
  user-select: none;
  pointer-events: none;
  background: transparent !important;
  border-color: #111 !important;
  color: #5a5a5a !important;
}

.list-group-item-icon {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.1rem;
}

.list-group-item-icon svg {
  flex-shrink: 0;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-left: auto;
}

.status-danger {
  background-color: #d9534f;
}

.status-success {
  background-color: #5cb85c;
}

.task-overview {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
  background: #1a1a1a;
  padding: 1rem 1.2rem;
}

.internal-task-list .list-group-item {
  font-family: "Segoe UI Mono", Consolas, Monaco, monospace;
  font-weight: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brain-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  color: #bbb;
  user-select: none;
  flex-wrap: wrap;
}

@media (max-width: 575px) {
  .brain-label {
    display: none;
}

img.brain-img {
    transform: translate(12%, 10%) !important;
}
}

img.brain-img {
  width: 215px;
  height: auto;
  filter: invert(1);
  transform: translate(50%, 10%);
}

.brain-half {
  width: 100%;
  height: 227px;
  background-repeat: no-repeat;
  position: relative;
}

.brain-label {
  position: absolute;
  background-color: #2a2a2a;
  border-radius: 9999px;
  padding: 0.2rem 0.7rem;
  font-size: 0.73rem;
  font-weight: 600;
  color: #ddd;
  box-shadow: 0 0 8px rgb(255 255 255 / 0.05);
  user-select: none;
  white-space: nowrap;
}

/* Position labels for left half */
.brain-label.docs {
  top: -5%;
  left: 43%;
  transform: translateX(-50%);
}

.brain-label.support-tickets {
  top: 25%;
  left: 0%;
  transform: translateY(-50%);
}

.brain-label.emails {
  bottom: 12%;
  left: 15%;
  transform: translateX(-50%);
}

/* Position labels for right half */
.brain-label.voice-agent {
  top: 40%;
  right: 25%;
  transform: translateX(50%);
}

.brain-label.crm {
  top: 10%;
  right: 35%;
  transform: translateX(50%);
}

.brain-label.notion {
  bottom: 0%;
  right: 32%;
  transform: translateX(50%);
}

/* Agents list styling */
.agents-wrapper {
  background: #121212;
  border-radius: 0.7rem;
  padding: 1.5rem;
  font-family: "Segoe UI Mono", Consolas, Monaco, monospace;
  color: #eee;
  user-select: none;
  min-width: 280px;
  max-width: 480px;
  margin-bottom: 25px;
}

.agents-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.system-status {
  font-weight: 400;
  font-size: 0.8rem;
  color: #4caf50;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  user-select: none;
}

.system-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: #4caf50;
  display: inline-block;
}

.agent-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.agent-btn {
  border: 1.8px solid #444;
  background: #1a1a1a;
  border-radius: 0.5rem;
  color: #ccc;
  font-weight: 600;
  padding: 0.6rem 0.9rem;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  cursor: default;
  transition: background-color 0.3s ease, border-color 0.3s ease,
    color 0.3s ease;
}

.agent-btn .icon {
  font-size: 1.1rem;
}

.agent-btn.active {
  background: #222;
  border-color: #4caf50;
  color: #fff;
}

.agent-btn.disabled {
  opacity: 0.38;
  pointer-events: none;
  cursor: not-allowed;
  color: #555 !important;
  border-color: #333 !important;
  background: #111 !important;
}

@media (max-width: 575px) {
  .agent-btn {
    padding: 0.6rem 0.7rem;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
section#services {
  background-image: linear-gradient(#100f0f, #000);
}

.services .service-header {
  margin-bottom: 60px;
}

section#services h4 {
  font-size: 55px;
  color: #fff;
  margin-bottom: 24px;
}

section#services p {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 1px;
}

@media (max-width: 575px) {
  section#services p {
  font-size: 15px;
  }

}

.services .service-header .service-intro .service-heading {
  font-size: 48px;
  margin-bottom: 0;
  font-weight: 700;
  line-height: 1.2;
  color: var(--heading-color);
}

.services .service-header .service-intro .service-heading div {
  display: block;
  position: relative;
}

.services .service-header .service-intro .service-heading span {
  display: block;
  color: var(--accent-color);
}

@media (max-width: 992px) {
  .services .service-header .service-intro .service-heading {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .services .service-header .service-intro .service-heading {
    font-size: 30px;
    margin-bottom: 20px;
  }
}

.services .service-header .service-summary p {
  margin-bottom: 25px;
  color: var(--default-color);
}

.services .service-header .service-summary .service-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 30px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.services .service-header .service-summary .service-btn i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.services .service-header .service-summary .service-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  color: var(--contrast-color);
}

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

@media (max-width: 992px) {
  .services .service-header .service-summary {
    margin-top: 30px;
  }
}

.services .service-card {
  padding: 40px 40px 40px 40px;
  margin-bottom: 30px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
  border-radius: 20px;
  --dot-bg: black;
  --dot-color: #363636;
  --dot-size: 2px;
  --dot-space: 22px;
  background: linear-gradient(
        90deg,
        var(--dot-bg) calc(var(--dot-space) - var(--dot-size)),
        transparent 1%
      )
      center / var(--dot-space) var(--dot-space),
    linear-gradient(
        var(--dot-bg) calc(var(--dot-space) - var(--dot-size)),
        transparent 1%
      )
      center / var(--dot-space) var(--dot-space),
    var(--dot-color);
  height: 390px;
}

.service-card.purple.position-relative.z-1 {
  border: 1px solid #80008085;
}

.service-card.blue.position-relative.z-1 {
  border: 1px solid #0000ff47;
}

.service-card.green.position-relative.z-1 {
  border: 1px solid #00990075;
}

.services .service-card .service-icon {
  margin-bottom: 25px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  width: 64px;
  height: 64px;
}

.services .service-card .service-icon i {
  font-size: 32px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.services .service-card h3 {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 700;
}

.services .service-card h3 a {
  color: #fff;
  transition: color 0.3s ease;
}

.services .service-card h3 a span {
  display: block;
}

.services .service-card p {
  color: var(--default-color);
  transition: color 0.3s ease;
  margin-bottom: 0;
}

.services .service-card .card-action {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.services .service-card .card-action i {
  font-size: 24px;
  color: var(--contrast-color);
  transition: transform 0.3s ease;
}

.services .service-card .card-action:hover i {
  transform: rotate(45deg);
}

.services .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--surface-color);
  clip-path: polygon(70% 0, 100% 30%, 100% 100%, 0 100%, 0 0);
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.services .service-card:hover p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.services .service-card:hover .card-action {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

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

@media (max-width: 768px) {
  .services .service-card {
    padding: 150px 25px 25px;
  }

  .services .service-card h3 {
    font-size: 24px;
  }

  .services .service-card .service-icon {
    position: absolute;
    top: 40px;
    left: 25px;
  }
}

@media (max-width: 768px) {
  .services {
    padding: 70px 0 50px;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
section#testimonials h4 {
  color: #fff;
  font-size: 50px;
  letter-spacing: 1px;
  font-weight: 600;
}

.testimonials .testimonials-slider {
  width: 100%;
  position: relative;
  padding-bottom: 60px;
}

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

.testimonials .testimonial-item {
  background-color: var(--surface-color);
  padding: 40px;
  border-radius: 20px;
}

@media (max-width: 575px) {
  .testimonials .testimonial-item {
    padding: 20px;
  }
}

.testimonials .testimonial-item h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.testimonials .testimonial-item p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  font-style: italic;
}

.testimonials .testimonial-item .profile {
    gap: 15px;
    margin-bottom: 15px;
}

.testimonials .testimonial-item .profile .profile-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonials .testimonial-item .profile .profile-info h3 {
  font-size: 18px;
  margin: 0;
  font-weight: 600;
}

.testimonials .testimonial-item .profile .profile-info span {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color) 70%, transparent);
}

.testimonials .testimonial-item .featured-img-wrapper {
  min-height: 400px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.testimonials .testimonial-item .featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.testimonials .swiper-navigation {
  position: absolute;
  bottom: 0;
  gap: 10px;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  margin: 0;
  width: 44px;
  height: 44px;
  background-color: var(--surface-color);
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
  transition: 0.3s;
}

.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
  font-size: 20px;
  color: var(--default-color);
}

.testimonials .swiper-button-prev:hover::after,
.testimonials .swiper-button-next:hover::after {
  color: var(--contrast-color);
}


@media (max-width: 575px) {
.col-lg-8.testimonial-content p, h2 {
    display: none;
}
.profile.d-flex.align-items-center {
    margin-bottom: 18px;
}
}

@media only screen and (max-width: 768px) {
 .col-lg-8.testimonial-content p, h2 {
    display: none;
}
.profile.d-flex.align-items-center {
    margin-bottom: 18px;
}
}
@media (max-width: 991px) {
	 .col-lg-8.testimonial-content p, h2 {
    display: none;
}
}
/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0;
  margin: 0 0 40px;
  list-style: none;
}

.portfolio .portfolio-filters li {
  font-size: 15px;
  font-weight: 500;
  padding: 12px 25px;
  cursor: pointer;
  background: var(--surface-color);
  color: var(--default-color);
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.portfolio .portfolio-filters li i {
  font-size: 1.1em;
  transition: transform 0.3s ease;
}

.portfolio .portfolio-filters li:hover {
  transform: translateY(-2px);
}

.portfolio .portfolio-filters li:hover i {
  transform: scale(1.1);
}

.portfolio .portfolio-filters li.filter-active {
  /* background: var(--accent-color); */
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .portfolio .portfolio-filters {
    gap: 10px;
  }

  .portfolio .portfolio-filters li {
    padding: 8px 20px;
    font-size: 14px;
  }
}

.portfolio .portfolio-entry {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface-color);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.portfolio .portfolio-entry .entry-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.portfolio .portfolio-entry .entry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio .portfolio-entry .entry-image .entry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 30px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio .portfolio-entry .entry-image .entry-overlay .overlay-content {
  width: 100%;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio .portfolio-entry .entry-image .entry-overlay .entry-meta {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.portfolio .portfolio-entry .entry-image .entry-overlay .entry-title {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 20px;
}

.portfolio .portfolio-entry .entry-image .entry-overlay .entry-links {
  display: flex;
  gap: 15px;
}

.portfolio .portfolio-entry .entry-image .entry-overlay .entry-links a {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #fff;
  border-radius: 12px;
  font-size: 20px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.portfolio .portfolio-entry .entry-image .entry-overlay .entry-links a:hover {
  background: #000;
  color: #fff;
  transform: translateY(-2px);
}

.portfolio
  .portfolio-entry
  .entry-image
  .entry-overlay
  .entry-links
  a:nth-child(1) {
  transition-delay: 0.1s;
}

.portfolio
  .portfolio-entry
  .entry-image
  .entry-overlay
  .entry-links
  a:nth-child(2) {
  transition-delay: 0.2s;
}

.portfolio .portfolio-entry:hover .entry-image img {
  transform: scale(1.05);
}

.portfolio .portfolio-entry:hover .entry-image .entry-overlay {
  opacity: 1;
  transform: translateY(0);
}

.portfolio .portfolio-entry:hover .entry-image .entry-overlay .overlay-content {
  transform: translateY(0);
}

.portfolio .portfolio-entry:hover .entry-image .entry-overlay .entry-links a {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .portfolio .portfolio-entry .entry-image .entry-overlay {
    padding: 20px;
  }

  .portfolio .portfolio-entry .entry-image .entry-overlay .entry-title {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .portfolio .portfolio-entry .entry-image .entry-overlay .entry-links a {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

.portfolio .portfolio-item .entry-image {
  aspect-ratio: 4/3;
}

@media (min-width: 1200px) {
  .portfolio .portfolio-item .entry-title {
    font-size: 20px;
  }
}

@media (min-width: 768px) {
  .portfolio .row {
    margin-left: -10px;
    margin-right: -10px;
  }

  .portfolio .row .portfolio-item {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (min-width: 992px) {
  .portfolio .row {
    margin-left: -12px;
    margin-right: -12px;
  }

  .portfolio .row .portfolio-item {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media (min-width: 1200px) {
  .portfolio .row {
    margin-left: -15px;
    margin-right: -15px;
  }

  .portfolio .row .portfolio-item {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (min-width: 1200px) {
  .portfolio .entry-overlay {
    padding: 25px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .portfolio .entry-overlay {
    padding: 20px;
  }
}

@media (max-width: 991px) {
  .portfolio .entry-overlay {
    padding: 20px;
  }
}

.portfolio-seemore-btn {
    text-align: center;
    margin-top: 120px;
}

.portfolio-seemore-btn a {
    background: transparent;
    padding: 15px 50px;
    letter-spacing: 2px;
    border: 1px solid color-mix(in srgb, rgb(44 138 161), transparent 40%);
    color: #fff;
    border-radius: 5px;
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

section.footer-cta {
  padding: 200px 0px;
  background-image: linear-gradient(180deg, #000, #ef00ff36);
}

.cta.content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cta.content h3 {
  font-size: 55px;
  color: #fff;
}

.cta.content .cta-button {
  background: #fff;
  border-radius: 8px;
  padding: 8px 12px;
}

.cta.content .cta-button:hover {
  color: #000;
}


@media (max-width: 575px) {
  section.footer-cta {
    padding: 35px 0px;
}
	.footer-cta .cta-button {
    display: none;
}
}

/*--------------------------------------------------------------
# Fall Behind
--------------------------------------------------------------*/
.icon-box.iconbox-blue-right {
  width: 375px;
  height: 575px;
  overflow: scroll;
  color: #000;
  background: #fff;
  text-align: center;
  padding: 20px 20px;
}

section#fall-behind p {
  color: #fff;
  text-align: left;
  font-size: 25px;
}

section#fall-behind a {
  color: #fff;
}

#bg-change {
  padding: 65px 55px;
  border-radius: 15px;
  background-image: linear-gradient(#100f0f, #000);
  box-shadow: 0px 5px #121212;
}

@media (max-width: 575px) {
  #bg-change {
    padding: 15px 15px;
  }
}

.bottom-content {
  margin-bottom: 40px;
}

.bottom-content h6 {
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.fall-behind .icon h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}

.fall-behind .icon-box.iconbox-blue h4 {
  font-size: 35px;
  font-weight: 800;
  margin-bottom: 30px;
}

.fall-behind .icon-box.iconbox-blue p {
  padding: 0 135px 0 0px;
  color: #a1a1a1;
  line-height: 32px;
  margin-bottom: 70px;
}

p.para-heading {
  font-size: 20px;
  color: #fff !important;
  letter-spacing: 1px;
  margin-bottom: 40px !important;
}

.icon-box.iconbox-blue-right h5 {
  letter-spacing: 2px;
  font-weight: 800;
  font-size: 32px;
  color: #000;
}

.icon-box.iconbox-blue-right p {
  text-align: left;
  font-size: 16px;
}

span.-important-message {
  font-size: 14px;
  font-weight: 700;
}

.icon-box.iconbox-blue-right h6 {
  margin-top: 20px;
  font-weight: 700;
  margin-bottom: 25px;
  font-size: 20px;
  color: #000;
}

.timezone select {
  width: -webkit-fill-available;
}

.month {
  width: 100%;
  background: #000;
  text-align: center;
}

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

.month ul li {
  color: white;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
  list-style: none;
}

.month .prev {
  float: left;
  padding-top: 10px;
}

.month .next {
  float: right;
  padding-top: 10px;
}

.weekdays {
  margin: 0;
  padding: 10px 0;
  background-color: #ddd;
}

.weekdays li {
  display: inline-block;
  width: 12.6%;
  color: #666;
  text-align: center;
}

.days {
  padding: 10px 0;
  background: #eee;
  margin: 0;
}

.days li {
  list-style-type: none;
  display: inline-block;
  width: 13.6%;
  text-align: center;
  margin-bottom: 5px;
  font-size: 12px;
  color: #777;
}

.days li .active {
  padding: 5px;
  background: #000;
  color: white !important;
  border-radius: 50px;
}

.timezone {
  width: -webkit-fill-available;
  margin-top: 40px;
  margin-bottom: 50px;
}

@media screen and (max-width: 720px) {
  .weekdays li,
  .days li {
    width: 13.1%;
  }
}

@media screen and (max-width: 420px) {
  .weekdays li,
  .days li {
    width: 12.5%;
  }

  .days li .active {
    padding: 2px;
  }

  .icon-box.iconbox-blue-right {
    width: 235px;
  }

  .fall-behind .icon-box.iconbox-blue p {
    padding: 0px;
  }
}

@media screen and (max-width: 290px) {
  .weekdays li,
  .days li {
    width: 12.2%;
  }
}

/*---------------------------
 Digital Cx ---------------------- */

.course-rating {
  display: inline-flex;
  align-items: center;
  border-radius: 30px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  margin-bottom: 15px;
}

.insta-rating {
  border-radius: 30px;
  padding: 10px 10px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  font-size: 15px;
  margin-bottom: 25px;
  background: #fff;
  color: #000;
  width: fit-content;
}

h1.right-heading {
  font-size: 52px;
  color: #fff;
  margin-bottom: 30px;
}

p.right-para {
  font-size: 20px;
  letter-spacing: 1px;
  color: #fff;
}

.price-tag {
  background-color: #f9b233;
  padding: 18px 30px;
  border-radius: 30px;
  font-weight: 400;
  display: inline-block;
  margin-top: 20px;
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.shake {
  animation: shake-animation 4.72s ease infinite;
  transform-origin: 50% 50%;
}

@keyframes shake-animation {
  0% {
    transform: translate(0, 0);
  }
  1.78571% {
    transform: translate(5px, 0);
  }
  3.57143% {
    transform: translate(0, 0);
  }
  5.35714% {
    transform: translate(5px, 0);
  }
  7.14286% {
    transform: translate(0, 0);
  }
  8.92857% {
    transform: translate(5px, 0);
  }
  10.71429% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}

.price-tag del {
  color: #555;
  margin-right: 5px;
}

.highlight-pink {
  background: linear-gradient(
    93deg,
    #515bd4 0%,
    #8134af 30%,
    #dd2a7b 60%,
    #f58529 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlight-yellow {
  color: #f9b233;
}

.course-image {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0px 0px 8px 3px rgb(255 255 255 / 8%);
  margin-top: 15px;
}

.stats-box {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 15px 0px;
}

.stats-box h4 {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
}

.stats-box p {
  margin: 0;
  font-size: 14px;
  color: #666;
}

.course-image img {
  max-width: 100%;
  border-radius: 15px;
}

section.featured-img img {
  width: 160px;
  height: 90px;
  object-fit: fill;
  border-radius: 5px;
}

section.featured-img {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 75px 220px;
  background-image: linear-gradient(#100f0f, #000);
}

@media (max-width: 575px) {
  iframe {
    width: 100%;
  }
  section.featured-img {
    padding: 20px 20px;
    display: inline-block;
  }
  .growth-plan-card {
    height: 260px;
  }
  .price-tag {
    padding: 18px 22px;
  }
h1.right-heading {
    font-size: 35px;
}
}

/*  */
section.works {
  text-align: center;
}

.works-card {
  box-shadow: 0px 0px 6px 1px #979191;
  padding: 20px 12px;
  margin-bottom: 30px;
  border-radius: 12px;
}

.works-card h5 {
  color: #fff;
  font-size: 26px;
  letter-spacing: 1px;
}

section.works h4 {
  font-size: 50px;
  color: #fff;
  margin-bottom: 40px;
  font-weight: 600;
}

span.percentage {
  color: #29b376;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
}

section.master-inside {
  text-align: center;
  background-image: linear-gradient(#100f0f, #000);
}

section.master-inside h4 {
  font-size: 50px;
  color: #fff;
  margin-bottom: 25px;
}

.card i {
  color: white;
  background: linear-gradient(
    93deg,
    rgb(81, 91, 212) 0%,
    rgb(129, 52, 175) 30%,
    rgb(221, 42, 123) 60%,
    rgb(245, 133, 41) 100%
  );
  border-radius: 50%;
  padding: 10px;
  transition: 0.3s;
  margin: 0 auto;
  margin-bottom: 12px;
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.card {
  padding: 10px 10px;
  margin-bottom: 30px;
  height: 155px;
}

.card p {
  font-size: 20px;
}

section.insta-growth {
  text-align: center;
}

section.insta-growth h4 {
  text-align: center;
  font-size: 50px;
  margin-bottom: 30px;
  color: #fff;
}

.growth-plan-card {
  box-shadow: 0px -3px 8px 0px #ebabcf;
  margin-bottom: 35px;
  border-radius: 10px;
  padding: 10px 20px;
  height: 210px;
  text-align: left;
}

.growth-plan-card svg {
  color: white;
  background: linear-gradient(
    93deg,
    rgb(81, 91, 212) 0%,
    rgb(129, 52, 175) 30%,
    rgb(221, 42, 123) 60%,
    rgb(245, 133, 41) 100%
  );
  border-radius: 50%;
  padding: 10px;
  transition: 0.3s;
  margin: 0 auto;
  margin-bottom: 12px;
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.growth-plan-card h5 {
  color: #fff;
  font-size: 25px;
}

p.insta-para {
  font-family: cursive;
  font-size: 28px;
  color: #fff;
  letter-spacing: 1px;
  line-height: 40px;
  padding: 35px 200px;
}

span.refund {
  color: red;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 15px;
}

section.difference-urself {
  background-image: linear-gradient(#100f0f, #000);
}

section.difference-urself h4 {
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
  font-size: 50px;
}

.check-list {
  background-color: transparent;
  background-image: linear-gradient(
    90deg,
    rgba(7, 150, 105, 0.27) 0%,
    rgb(46 46 46 / 27%) 100%
  );
  padding: 15px 10px;
  border-radius: 10px;
}

.check-list ul li {
  padding: 10px 0px;
  color: #fff;
  font-size: 20px;
  font-weight: 200;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.cross-list {
  background-color: transparent;
  background-image: linear-gradient(
    90deg,
    rgba(220, 38, 37, 0.22) 0%,
    rgb(34 33 33) 100%
  );
  padding: 15px 10px;
  border-radius: 10px;
}

.cross-list ul li {
  padding: 10px 0px;
  color: #fff;
  font-size: 20px;
  font-weight: 200;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.check-list ul li i {
  color: #079669;
  margin-right: 10px;
  font-size: 25px;
}
.cross-list ul li i {
  color: red;
  margin-right: 10px;
  font-size: 25px;
}

section.wp-testimonial h4 {
  text-align: center;
  font-size: 50px;
  margin-bottom: 40px;
  letter-spacing: 1px;
  font-weight: 800;
}



.before-after-growth {
  text-align: center;
  color: #fff;
}

.before-after-growth h4 {
  font-size: 50px;
  color: #fff;
  letter-spacing: 1px;
}
.before-after-growth h3 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 40px;
}

.grew-img img {
  width: 100%;
  height: 100%;
  margin-bottom: 20px;
}

.reach-insta-follower h4 {
  text-align: center;
  font-size: 50px;
  letter-spacing: 1px;
  margin-bottom: 30px;
  color: #fff;
  font-weight: 600;
}

.reach-insta-follower img {
  width: 100%;
  margin-bottom: 20px;
  height: 125px;
}

img.reach-person-img {
  height: fit-content;
}
@media (max-width: 575px) {
  p.insta-para {
    padding: 20px 20px;
    text-align: left;
    font-size: 25px;
  }
  .growth-plan-card {
    height: 275px;
  }
  .check-list {
    margin-bottom: 20px;
  }
  section.works h4 {
    font-weight: 500;
  }
  .reach-insta-follower h4 {
    font-size: 40px;
    padding: 10px;
  }
  section.wp-testimonial h4 {
    font-size: 45px;
}
.before-after-growth h4 {
    font-size: 40px;
    letter-spacing: 0px;
}
}
/*--------------------------------------------------------------
# Whatsapp Testimonial
--------------------------------------------------------------*/
img.wp-img {
  width: 100%;
  height: 100%;
}

.wp-testimonial h2 {
  color: #000;
  text-align: center;
  margin-bottom: 85px;
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 40px;
}

@media (max-width: 575px) {
}

/*--------------------------------------------------------------
# Mentor
--------------------------------------------------------------*/

.mentor-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 15px 13px 0px 0px rgb(200, 55, 171);
  border-right: 3px solid #fff;
}

.mentor-para p {
  font-size: 20px;
  color: #fff;
  letter-spacing: 1px;
  margin-left: 20px;
  line-height: 48px;
}

.mentor-para span.highlight-pink {
  font-size: 30px;
}

span.weight-para {
  font-weight: 200;
  letter-spacing: 1px;
}

.meet-mentor {
  background-image: linear-gradient(#100f0f, #000);
}

.meet-mentor h2 {
  text-align: center;
  margin-bottom: 55px;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 50px;
  color: #fff;
}

@media (max-width: 575px) {
  .meet-mentor {
    padding: 10px;
}
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
section#faq h4 {
  background: #fff;
  color: #000;
  width: fit-content;
  padding: 2px 10px;
  border-radius: 5px;
  rotate: 354deg;
  margin-bottom: 20px;
}

.section-title h3 {
  font-size: 50px;
}

.faq .accordion-list {
  padding: 0 100px;
}

.faq .accordion-list ul {
  padding: 0;
  list-style: none;
}

.faq .accordion-list li + li {
  margin-top: 15px;
}

.faq .accordion-list li {
  padding: 30px;
  background: #8f898917;
  border-radius: 4px;
  position: relative;
}

.faq .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  line-height: 18px;
  font-weight: 300;
  outline: none;
  cursor: pointer;
  color: #fff;
}

.faq .accordion-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #b1c0df;
}

.faq .accordion-list .icon-show,
.faq .accordion-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .accordion-list p {
  margin-bottom: 0;
  padding: 50px 0 0 0;
  font-size: 20px;
  color: #fff;
  letter-spacing: 1px;
  font-weight: 200;
}

.faq .accordion-list .icon-show {
  display: none;
}

.faq .accordion-list a.collapsed {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
}

.faq .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .accordion-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 575px) {
}

@media (max-width: 1200px) {
  .faq .accordion-list {
    padding: 0;
  }
}


/* .Do-for-u{
  position: relative;
} */

.list-group-item-action:not(.active):focus, .list-group-item-action:not(.active):hover {

    color: #fff !important;
}

#list-item-1, #list-item-2, #list-item-3, #list-item-4 {
    display: flex;
    justify-content: center;
    align-items: baseline;
    scroll-margin-top: 80px;
    margin-bottom: 115px;
    margin-top: 40px;
}

.list-item h6{
  font-size: 35px;
}

.list-item {
    height: 450px;
    scroll-behavior: smooth;
    overflow: auto;
    scrollbar-width: none;
    border: 1px solid #ffffff26;
    transition: all 0.3s ease;
    --dot-bg: black;
    --dot-color: #363636;
    --dot-size: 2px;
    --dot-space: 22px;
    background: linear-gradient(90deg, var(--dot-bg) calc(var(--dot-space) - var(--dot-size)), transparent 1%) center / var(--dot-space) var(--dot-space), linear-gradient(var(--dot-bg) calc(var(--dot-space) - var(--dot-size)), transparent 1%) center / var(--dot-space) var(--dot-space), var(--dot-color);
    padding: 45px 30px;
}

.list-item h6 {
    font-size: 27px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
}

.list-group-item.active {
    background: #ffffff36 !important;
    border-radius: 0px;
}

.Do-for-u h4 {
    font-size: 50px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 70px;
    color: #fff;
}

.list-right-card {
    border: 1px solid #ffffff36;
    padding: 10px 10px;
    border-radius: 10px;
    text-align: center;
}

.list-right-card svg {
    background: #615fff;
    border-radius: 50%;
    color: #fff;
    width: 35px;
    padding: 5px 5px;
}

img.audio-gif {
    margin-bottom: 20px;
}

.bottom-bottom {
    text-align: left;
}

.bottom-bottom ul li {
    margin-bottom: 15px;
}

.bottom-bottom ul li button {
    padding: 8px 25px;
    width: 100%;
    background: transparent;
    color: #fff;
    border: 1px solid #ffffff3d;
    border-radius: 8px;
    text-align: left;
}

.bottom-bottom ul li button svg {
    margin-right: 10px;
}

.chat-box {
    width: 310px;
    background: #1c1c1c;
    border-radius: 12px;
    padding: 15px;
    color: #fff;
    font-family: Arial, sans-serif;
}

    .chat-header {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 15px;
    }

    .chat-header .status {
      width: 10px;
      height: 10px;
      background: #2ecc71;
      border-radius: 50%;
    }

    .chat-message {
      padding: 10px 14px;
      border-radius: 10px;
      margin-bottom: 12px;
      max-width: 80%;
    }

    .user-message {
      background: #1976d2;
      color: #fff;
      margin-left: auto;
    }

    .ai-message {
      background: #ecf0f1;
      color: #000;
      margin-right: auto;
    }

    .chat-input {
      display: flex;
      align-items: center;
      margin-top: 10px;
    }

    .chat-input input {
      border-radius: 20px;
      border: none;
      padding: 8px 15px;
      flex: 1;
    }

    .chat-input button {
      border: none;
      background: #1976d2;
      color: #fff;
      border-radius: 50%;
      width: 38px;
      height: 38px;
      margin-left: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .chat-input button:hover {
      background: #125a9c;
    }


.gslide-media.gslide-image img {
    width: 481px;
}

.gslide-media.gslide-image {
    padding-top: 40px;
}

@media (max-width: 575px) {
  #list-item-1, #list-item-2, #list-item-3, #list-item-4 {
    overflow: hidden;
}
.list-item {
    padding: 10px;
}
#list-item-1, #list-item-2, #list-item-3, #list-item-4 {
    display: inline-block;
}
.list-item h6 {
    font-size: 20px;
    padding: 10px;
}
.chat-box {
    width: 278px;
}
div#list-example {
    padding: 10px;
}
}

.featured-video-wrapper iframe {
  width: 100%;
  height: 350px;  /* Match your old image height */
  border-radius: 10px; /* optional */
  object-fit: cover;
}



/* Popup overlay */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    color: #fff !important;
}
.popup-box {
    width: 400px;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    position: relative;
    --dot-bg: black;
    --dot-color: #363636;
    --dot-size: 2px;
    --dot-space: 22px;
    background: linear-gradient(90deg, var(--dot-bg) calc(var(--dot-space) - var(--dot-size)), transparent 1%) center / var(--dot-space) var(--dot-space), linear-gradient(var(--dot-bg) calc(var(--dot-space) - var(--dot-size)), transparent 1%) center / var(--dot-space) var(--dot-space), var(--dot-color);
    border: 1px solid #ffffff1f;
}
.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: #fff;
}
.popup-box h2 {
	margin-top: 0;
}
.popup-box input { 
	width: 100%; 
	padding: 8px; 
	margin: 8px 0; 
}
.popup-box h2 {
    margin-top: 0;
    color: #fff;
}
button.pop-btn {
    background: transparent;
    padding: 10px 15px;
    letter-spacing: 2px;
    border: 1px solid color-mix(in srgb, rgb(44 138 161), transparent 40%);
    color: #fff;
    border-radius: 5px;
    font-weight: 300;
    margin-top: 20px;
}

@media (max-width: 575px) {
	.popup-box {
    width: 325px;
	margin: 40% auto;
}
}
