/**
* Template Name: OnePage
* Template URL: https://bootstrapmade.com/onepage-multipurpose-bootstrap-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* 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: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

.color-1 {
  color: #364f5e;
}
.color-2 {
  color: #4b789b;
}
.color-3 {
  color: #6cbed0;
}
.color-4 {
  color: #a1d7e8;
}
.color-5 {
  color: #eff8fb;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --color-1: #364f5e;
  --color-2: #4b789b;
  --color-3: #6cbed0;
  --color-4: #a1d7e8;
  --color-5: #eff8fb;

  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: var(--color-1); /* Color for headings, subheadings and title throughout the website */
  --accent-color: #364F5D; /* 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: #ffffff; /* 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: #364F5D;  /* The default color of the main navmenu links */
  --nav-hover-color: #364F5D; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-hover-color: #364F5D;
  --nav-background-color:var(--color-1);
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #124265; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #364F5D; /* 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: #f6fafd;
  --surface-color: #ffffff;
}

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

.accent-background {
  --background-color: #2487ce;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #ffffff;
  --surface-color: #469fdf;
  --contrast-color: #ffffff;
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  background-color: var(--background-color);
  font-family: var(--default-font);
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

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

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

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 300;
  color: var(--heading-color);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  border-color: var(--contrast-color);
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# 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: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: all 0.3s ease;
  }

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


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

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

  .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(--nav-mobile-hover-color));
  }

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

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

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


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  --background-color: #f8f9fa; /* Light gray background */
  --default-color: #4a4a4a;
  border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.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: 4px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 16px;
  color: var(--accent-color);
  margin-right: 10px;
  transition: 0.3s;
}

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

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.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-links ul a:hover {
  color: var(--accent-color);
}

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



.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

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

.footer .credits {
  margin-top: 4px;
  font-size: 13px;
}

.footer .credits a {
  color: color-mix(in srgb, var(--contrast-color), transparent 30%);
}

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

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

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

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

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

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

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

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

[data-aos] {
  will-change: transform, opacity;
}

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

.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 a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

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

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

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 76px;
  }
}

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
}

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



/* Updated Button Styles */
.btn-common {
  border: 2px solid var(--accent-color);
  border-radius: 25px;
  padding: 8px 20px;
  margin-top: 20px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--surface-color), transparent 20%);
}

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

.btn-common--spaced {
  margin-top: 30px;
}


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

.hero.services.section {
  min-height: 40vh;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 3%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  image-rendering: crisp-edges;
}

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

.hero h1 {
  margin: 0;
  font-size: 2.5rem;
  line-height: 1.3;
  font-weight: 700;
}

.hero p {
  margin: 10px 0 0 0;
  font-size: 22px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.hero p1 {
  margin: 10px 0 0 0;
  font-size: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/* Video Section */
.video-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem; /* Default gap for all screens */
}

.hero-video {
  width: 100%;
  height: 100%;
  margin: 30px auto 0;
  max-width: 900px;
}

/* Video Controls */
.video-controls {
  width: 100%;
  text-align: center;
}


/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero .row {
    flex-direction: column;
  }
  
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
  }

}

@media (max-width: 768px) {
  .hero {
    padding: 80px 0 30px 0;
  }
  
  .hero .subtitle {
    font-size: 1.2rem;
    padding-left: 30px;
  }
}


/* Quick Pitch Section Colors */
#quick-pitch .color-1 {
  color: var(--color-1);
}
#quick-pitch .color-2 {
  color: var(--color-2) transparent 20%;
}
#quick-pitch h4 {
  color: var(--color-1);
}
#quick-pitch p {
  color: color-mix(in srgb, var(--color-1), transparent 20%) !important;
}



/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .section-title {
  text-align: left;
  padding-right: 40px;
}

.features .section-title h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--color-1);
}

.features .section-title p {
  font-size: 15px;
}

.features .section-title .section-subtitle {
  margin-bottom: 1em; /* Adjust this value as needed */
}

.features .icon-box {
  background-color: var(--surface-color);
  padding: 50px 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 300px; 
}

.features .icon-box .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
  color: var(--color-1);
}

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

.features .icon-box .description {
  font-size: 15px;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--color-1), transparent 20%);
}

.features .icon-box .caption {
  display: block;
}


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

@media (min-width: 640px) {
  .features .icon-box:hover {
    transform: scale(1.08);
  }

  .features .icon-box:hover .title a {
    color: var(--accent-color);
  }
}

/* Alternate section background */
.features.bg-surface {
  background: var(--surface-color);
  padding: 4rem 0;
}

/* Right-aligned title adjustments */
.flex-row-reverse .section-title {
  padding-left: 40px;
  padding-right: 0;
}

@media (max-width: 992px) {
  .flex-row-reverse .section-title {
    padding-left: 0;
    text-align: center;
  }
  .features .section-title {
    text-align: center;
    padding-right: 0;
    margin-bottom: 40px;
  }
}

.features .section-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.features .section-title h2 {
  margin-top: -0.5rem; /* Adjust based on your needs */
}

/* Image Container Styles */
.features .icon-box .image-container {
  margin: -50px -30px 0 -30px; /* Counteract parent padding */
  width: calc(100% + 60px); /* Expand beyond parent's width */
  height: 150px; /* Adjust based on your needs */
  overflow: hidden;
  border-radius: 8px 8px 0 0; /* Match parent's border radius */
}

.features .icon-box .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}


/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn,
.pulsating-pause-btn {
  position: absolute;
  width: 94px;
  height: 94px;
  bottom: -40px; 
  left: -40px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  overflow: hidden;
}

.pulsating-play-btn:before,
.pulsating-pause-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

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

.pulsating-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;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(25);
}

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

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

.pulsating-play-btn.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
}

.video-container {
  position: relative;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.video-container.ratio-1x1 {
  max-width: 600px;
  width: 100%;
  height: auto;
}

.video-container.demo {
  max-width: 700px;
}

.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
}


/* Pulsating Pause Button
------------------------------*/



/* Centered Pause Icon */
.pulsating-pause-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%); 
  width: 4px;
  height: 15px;
  background: #fff;
  box-shadow: 10px 0 0 #fff;
  margin-left: -5px;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-pause-btn:hover:before {
  content: "";
  animation: none;
  border: none;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 15px;
  background: #fff;
  box-shadow: 10px 0 0 #fff;
  margin-left: -5px;
  z-index: 200;  
  animation: none;
  border-radius: 0;
}

.pulsating-pause-btn:hover:after {
  /* Scaled-up accent color bars */
  background: var(--accent-color);
  box-shadow: 10px 0 0 var(--accent-color);
  transform: scale(25);
}

/* Smoother Animation */
@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.pulsating-pause-btn.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s ease;
}


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 30px 20px;
  text-align: center;
  transition: 0.3s;
  border-radius: 5px;
}

.services .service-item .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  position: relative;
}

.services .service-item .icon i {
  font-size: 36px;
  transition: 0.5s;
  position: relative;
}

.services .service-item .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}

.services .service-item .icon svg path {
  transition: 0.5s;
  fill: color-mix(in srgb, var(--default-color), transparent 95%);
}

.services .service-item h3 {
  font-weight: 700;
  margin: 15px 0 10px 0;
  font-size: 22px;
}

.services .service-item h6 {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 15px;
  color: var(--text-color-light);
}

.services .service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 100px 0px rgba(0, 0, 0, 0.1);
}

.services .service-item.item-cyan i {
  color: #0dcaf0;
}

.services .service-item.item-cyan:hover .icon i {
  color: #fff;
}

.services .service-item.item-cyan:hover .icon path {
  fill: #0dcaf0;
}

.services .service-item.item-orange i {
  color: #fd7e14;
}

.services .service-item.item-orange:hover .icon i {
  color: #fff;
}

.services .service-item.item-orange:hover .icon path {
  fill: #fd7e14;
}

.services .service-item.item-teal i {
  color: #20c997;
}

.services .service-item.item-teal:hover .icon i {
  color: #fff;
}

.services .service-item.item-teal:hover .icon path {
  fill: #20c997;
}

.services .service-item.item-red i {
  color: #df1529;
}

.services .service-item.item-red:hover .icon i {
  color: #fff;
}

.services .service-item.item-red:hover .icon path {
  fill: #df1529;
}

.services .service-item.item-indigo i {
  color: #6610f2;
}

.services .service-item.item-indigo:hover .icon i {
  color: #fff;
}

.services .service-item.item-indigo:hover .icon path {
  fill: #6610f2;
}

.services .service-item.item-pink i {
  color: #f3268c;
}

.services .service-item.item-pink:hover .icon i {
  color: #fff;
}

.services .service-item.item-pink:hover .icon path {
  fill: #f3268c;
}

.read-more {
  color: var(--color-1);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
  color: var(--color-1) !important;
}

.read-more:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
}

.read-more:hover i {
  color: var(--contrast-color) !important;
  transform: translate(5px, 0);
}



/*--------------------------------------------------------------
# Enterprises Section
--------------------------------------------------------------*/

#enterprise-services .icon {
  color: var(--color-3);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}



/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 80px 0;
  position: relative;
  background: var(--color-5);
  color: var(--color-1);
}

.call-to-action h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-1);
  margin-bottom: 20px;
}

.call-to-action p {
  color: var(--color-1);
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 30px;
  opacity: 0.9;
}



/* solutions Section */
.solutions.section {
  padding: 60px 0;
}

.solutions-image {
  position: relative;
  align-self: start;
}

.solutions-italic-text {
  font-style: italic;
  margin-bottom: 20px;
}

/* Comparison Card */
.comparison-card {
  margin-bottom: 30px;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.comparison-bad {
  color: #dc3545;
  padding-left: 40px;
}

.comparison-good {
  color: #28a745;
  padding-left: 40px;
}

.tick-green {
  color: #28a745;
  padding-right: 5px;
  padding-left: 5px;
  font-weight: bolder;
}

.comparison-list {
  margin-bottom: 0;
  list-style: none;
  padding-left: 0;
}

.comparison-list li {
  display: flex;
  padding-left: 10px;
  align-items: center;
  min-height: 42px;
}

.comparison-arrow {
  text-align: center;
  align-self: center;
  padding-left: 5px;
  padding-right: 5px;
}

.comparison-arrow i {
  font-size: 1.75rem;
  color: var(--color-1); /* Assuming this is a CSS variable defined elsewhere */
}


/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

/* Features Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.feature-card {
  background: var(--surface-color);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border-left: 4px solid var(--secondary);
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card h4 {
  font-size: 1.1rem;
  color: var(--heading-color);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.feature-card h4 i {
  color: var(--secondary);
  margin-right: 10px;
  font-size: 1.3rem;
}


/*--------------------------------------------------------------
# Contact Page Styles
--------------------------------------------------------------*/
.contact-form-card,
.contact-info-card {
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(54, 79, 93, 0.08);
  height: 100%;
}

.contact-info-content {
  padding-left: 25px;
}

.contact-info-card .icon {
  margin-right: 30px;
}

.contact-form-card .section-title h2,
.contact-info-card .section-title h2 {
  font-size: 28px;
  color: var(--color-1);
}

.contact-form-card .section-title p,
.contact-info-card .section-title p {
  color: var(--color-2);
}

.form-label {
  font-weight: 500;
  color: var(--color-1);
  margin-bottom: 8px;
  display: block;
}

.form-control {
  border: 1px solid color-mix(in srgb, var(--color-2), transparent 30%);
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 15px;
  transition: all 0.3s;
}

.form-control:focus {
  border-color: var(--color-3);
  box-shadow: 0 10px 30px rgba(54, 79, 93, 0.08);
}

.info-item {
  padding-left: 10%;
}


.info-item .icon {
  color: var(--color-3);
}

.info-item h4 {
  font-size: 18px;
  color: var(--color-1);
}

.info-item p {
  color: var(--color-2);
  margin-bottom: 0;
}


/* Form status messages */
.loading,
.error-message,
.sent-message {
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
}

.loading {
  background-color: var(--color-5);
  color: var(--color-2);
}

.error-message {
  background-color: #f8d7da;
  color: #721c24;
}

.sent-message {
  background-color: #d4edda;
  color: #155724;
}



/* Products Page Specific Styles */
.products-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #eff8fb 0%, #d1e8f0 100%);
}

.products-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.products.section {
  padding: 80px 0;
}

.light-background .products.section {
  background-color: #f8f9fa;
}

.products-content {
  padding: 20px;
}

.products-features {
  margin-top: 20px;
  text-align: left;
  padding-left: 0;
}

.products-features li {
  padding: 8px 0;
  line-height: 1.4;
}

.products-features .bi-check-circle {
  color: var(--primary-color);
  margin-right: 10px;
  margin-top: 3px;
  flex-shrink: 0;
}


.product-badge {
  display: inline-block;
  background-color: #6cbed0;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.cta-box {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta-box span {
  font-size: 0.9rem;
  color: #4b789b;
  font-style: italic;
}

.products-comparison {
  width: 100%;
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.products-comparison th {
  background-color: #364f5e;
  color: white;
  padding: 15px;
  text-align: left;
}

.products-comparison td {
  padding: 12px 15px;
  border-bottom: 1px solid #e0e6ed;
}

.products-comparison tr:nth-child(even) {
  background-color: #f8fafc;
}

.products-comparison tr:last-child td {
  border-bottom: none;
}

.products-comparison .bi-check-lg {
  color: #28a745;
  font-size: 1.2rem;
}

.products-comparison .bi-x-lg {
  color: #dc3545;
  font-size: 1.2rem;
}


.enterprise-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin: 30px 0;
}

.enterprise-features .feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 150px;
}

.enterprise-features .feature i {
  font-size: 2.5rem;
  color: var(--color-3);
  margin-bottom: 10px;
}

.enterprise-features .feature span {
  text-align: center;
  font-weight: 500;
}

/* Added custom styles */
.scaled-image {
  width: 50%;
  margin: 0 auto;
  display: block;
  margin-bottom: 20px;
}

.scaled-75-image {
  margin: 0 auto;
  display: block;
  margin-bottom: 20px;
  margin-top: 70px;
}

.content-max-width {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
}

@media (max-width: 768px) {
  .scaled-image {
    width: 90%;
  }
  .content-max-width {
    max-width: 100%;
  }
}

.use-cases {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 20px;
  margin: 30px 0;
}

.use-cases h4 {
  color: #2c3e50;
  margin-bottom: 15px;
  border-bottom: 2px solid #e9ecef;
  padding-bottom: 8px;
}

/* Card container - ensures equal width */
.use-cases-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.use-case-card {
  background: white;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.use-case-card h5 {
  color: var(--color-2);
  margin-bottom: 10px;
}

.use-case-card p {
  color: #7f8c8d;
  font-size: 0.9rem;
  flex-grow: 1;
}

.use-case-card i {
  font-size: 1.5rem;
  margin-right: 10px;
  color: var(--color-3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .use-cases-container {
    flex-direction: column;
  }

  .use-case-card {
    min-width: 100%;
    width: 100%;  
  }

  .row > .col-md-4 {
    padding: 0;
    margin-bottom: 15px;
  }
}