@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Oxanium:wght@200..800&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
  font-family: 'CiscoSans-Regular';
  src: url('../fonts/CiscoSans.ttf');
}

@font-face {
  font-family: 'CiscoSans-Bold';
  src: url('../fonts/CiscoSans-Bold.ttf');
}

@font-face {
  font-family: 'CiscoSans-ExtraLight';
  src: url('../fonts/CiscoSans-ExtraLight.ttf');
}
@font-face {
  font-family: 'LufgaMedium';
  src: url('../fonts/LufgaMedium.ttf');
}

@font-face {
  font-family: 'LufgaBold';
  src: url('../fonts/LufgaBold.ttf');
}
@font-face {
  font-family: 'LufgaLight';
  src: url('../fonts/LufgaLight.ttf');
}



/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "DM Sans", sans-serif;
  color: #444444;
}


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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "LufgaMedium", serif;
  color: #000000;
}
h2{
  font-size: 48px;
}
h1{
  font-size: 48px;
}

.color{
  color: #2F2483;
}

form h2 span{
  -webkit-text-fill-color: transparent;
}

form span{
  -webkit-text-fill-color: unset;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

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

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

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 75px;
  z-index: 996;
  background: #329866;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #329866;
  color: #fff;
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 90px;
}

#header.fixed-top {
  height: 90px;
}

#header .logo a {
  color: #222222;
}


.scrolled-offset {
  margin-top: 100px;
}

i.fa-solid.mobile-nav-toggle.fa-xmark {
    color: #fff;
}

li#menu-item-1845,li#menu-item-1846 {
    display: none;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

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

.navbar li {
  position: relative;
}

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

.menu-item a:hover {
  color: #329866;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 16px;
  color: #282828;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}

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

.navbar>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  right: 0;
  background-color: #fff;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
  display: flex;
  margin: 0 auto;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  visibility: visible;
  width: 20%;
}

.navbar .menu-item-has-children ul {
  display: block;
  position: absolute;
  left: 28px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #ffff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .menu-item-has-children ul li {
  min-width: 200px;
}

.navbar .menu-item-has-children ul a {
  padding: 10px 20px;
  font-weight: 400;
}

.navbar .menu-item-has-children ul a i {
  font-size: 12px;
}

.navbar .menu-item-has-children:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

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

.navbar .menu-item-has-children .menu-item-has-children:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .menu-item-has-children .menu-item-has-children ul {
    left: -90%;
  }

  .navbar .menu-item-has-children .menu-item-has-children:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #000;
  font-size: 28px;
  cursor: pointer;
  display: none !important;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block !important;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #000;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #fff;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

/* .navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #106eea;
} */

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

/* .navbar-mobile .menu-item-has-children ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #000;
  box-shadow: unset;
} */

/* .navbar-mobile .menu-item-has-children ul li {
  min-width: 200px;
} */

.navbar-mobile .menu-item-has-children ul a {
  padding: 10px 20px;
}

.navbar-mobile .menu-item-has-children ul a i {
  font-size: 18px;
}

/* .navbar-mobile .menu-item-has-children ul a:hover,
.navbar-mobile .menu-item-has-children ul .active:hover,
.navbar-mobile .menu-item-has-children ul li:hover>a {
  color: #106eea;
} */

/* .navbar-mobile .menu-item-has-children>.drop-ul {
  display: block;
} */

#navbar #menu-main-menu li:last-child a {
    background-color: #329866;
    padding: 10px 30px;
    border-radius: 10px;
    color: #fff;
    font-size: 18px;
}

.drop-ul.depth_0 li a {
  background-color: unset !important;
  padding: 10px 20px !important;
  border-radius: unset !important;
  color: #000000 !important;
  font-size: 16px !important;
}

.navbar-mobile .menu-item-has-children ul{
  position: unset;
  background: unset;
  display: none;
}

.navbar-mobile .menu-item-has-children.active-new .depth_0{
  display: block;
  visibility: visible;
  opacity: 1;
  padding-left: 20px;
  box-shadow: unset;
}

.navbar-mobile .menu-item-has-children.active-new-second .depth_1{
  display: block;
  visibility: visible;
  opacity: 1;
  padding-left: 20px;
  box-shadow: unset;
}

.navbar-mobile .depth_0 li:last-child a{
  width: 100% !important;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#main_hero {
  padding: 0;
}

.hero-slider-image img {
  width: 100%;
}

.hero-slider-single {
  position: relative;
}

.hero-slider-content-main {
  position: absolute;
  top: 0;
  left: 9%;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
}

.hero-slider-title {
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 15px;
}

.hero-slider-content {
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
}

.hero-slider-button {
  color: #000;
  background-color: #329866;
  width: fit-content;
  padding: 10px 50px;
  border-radius: 30px;
}

.hero-slider-button:hover {
  color: #000;
}

.hero-slider-button i {
  margin-left: 10px;
  transform: rotate(-45deg);
}

section#main_hero .slick-dots {
  bottom: 25px;
}

section#main_hero.slick-dots li.slick-active button:before {
    opacity: .75;
    color: #329866 !important;
}
section#main_hero .slick-dots li button:before {
    font-size: 15px;
    color: #329866 !important;
}
section#main_hero .slick-dots li {
    width: 30px;
}
.dynamic-text {
    display: inline;
    border-right: 2px solid #000;
    white-space: nowrap;
    overflow: hidden;
  }
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title h2 {
    font-size: 48px;
    color: #000;
}

p{
  font-size: 18px;
  color: #000000;
}
/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/
section#hero {
    padding: 0 0 60px;
}

.hero-content {
    padding: 20px 0;
}

.hero-content p {
    font-size: 18px;
}
.hero-img video {
    border-radius: 20px;
}


/*--------------------------------------------------------------
# Brands
--------------------------------------------------------------*/
section#brands {
    padding-bottom: 0;
}
.brands-title h2 {
    font-weight: 400;
    font-size: 32px;
    margin-bottom: 30px;
}

.slick-list{
  padding: 30px 0;
}

.brand-slider .slick-track .slick-slide{
  margin: 10px;
}

.brand-slide img {
    margin: 0 auto;
    width: 200px;
}

/* .brand-slide {
    box-shadow: 7px 8px 20px 5px #DBDBDB40;
    margin: 10px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
} */

.brand-slider {
  position: relative;
  overflow: hidden;
}

.brand-slider::before,
.brand-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.brand-slider::before {
  left: 0;
  background: linear-gradient(to right, white 0%, transparent 100%);
}

.brand-slider::after {
  right: 0;
  background: linear-gradient(to left, white 0%, transparent 100%);
}

/*--------------------------------------------------------------
# Zygal Organization
--------------------------------------------------------------*/
section#zygal-organization {
  position: relative;
}

.accordion-body a {
    width: fit-content;
    padding: 8px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
}

.accordion-images {
  min-height: 400px;
}

.accordion-image {
  display: none;
  text-align: end;
  border-radius: 10px;
  border-right: none;
  overflow: hidden;
}

.accordion-image.active {
  display: block;
}

div#zygalAccordion {
    padding: 0 40px 0 90px;
    height: 100%;
}

.accordion-item {
    color: var(--bs-accordion-color);
    background-color: var(--bs-accordion-bg);
    border: none;
    /* border-bottom: 2px solid #E0E0E0; */
    padding: 15px 0;
    border-radius: 0 !important;
}

.accordion-button:not(.collapsed) {
    color: #252525;
    background-color: #fff;
    box-shadow: unset;
}

.accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 10px 20px 10px;
    font-size: 30px;
    
    text-align: left;
    background-color: #fff;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: var(--bs-accordion-transition);
}

.accordion-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 18px;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0.5);
}

.accordion-button:focus {
    z-index: 3;
    border-color: unset;
    outline: 0;
    box-shadow: unset;
}

.zygal-organization-title h2 {
    color: #000;
    font-size: 48px;
    font-weight: 100;
}

.zygal-organization-title h4 {
    color: #000;
    font-size: 32px;
    font-weight: 400;
}

/*--------------------------------------------------------------
# Surveillance Solutions
--------------------------------------------------------------*/

.surveillance-solutions-box {
    background-color: #F1F6F8;
    text-align: center;
    padding: 30px 0;
    border-radius: 20px;
    height: 100%;
}

.surveillance-solutions-content {
    text-align: left;
    padding: 40px 30px 0;
}
.surveillance-solutions-text p{
  margin: 0;
}
.surveillance-solutions-text {
    min-height: 130px;
    padding-left: 20px;
    border-left: 5px solid #329866;
    margin-bottom: 30px;
}


.surveillance-solutions-content a {
    background-color: #329866;
    color: #fff;
    padding: 5px 20px;
    border-radius: 5px;
    font-size: 18px;
}


.surveillance-solutions-box img {
    height: 150px;
}

.surveillance-solutions-content a img {
    height: auto;
}
/*--------------------------------------------------------------
# Ultimate Control
--------------------------------------------------------------*/
.ultimate-control-subbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.ultimate-control-box {
    border: 1px solid #BABABA;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.ultimate-control-subbox h4 {
    font-weight: 100;
}
/*--------------------------------------------------------------
# Real World
--------------------------------------------------------------*/
section#real-world {
  background-color: #F1F6F8;
  padding: 60px 0;
}
.real-world-points-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px; /* Controls spacing between badges */
}


.real-world-point {
  background: #fff;
  border-radius: 20px;
  padding: 8px 18px;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  color: #000;
  font-weight: 500;
  white-space: nowrap;
}
button.slick-arrow {
    background-color: #2D9662;
    border: none;
    padding: 10px;
    border-radius: 50px;
}
button.slick-arrow img {
    background-color: #2D9662;
    padding: 10px;
    border-radius: 50px;
    width: 50px;
    height: 50px;
}
button.slick-arrow {
    background-color: transparent;
    border: none;
    position: absolute;
}
button.custom-prev.slick-arrow {
    top: 50%;
    left: -7%;
}
button.custom-next.slick-arrow{
	top: 50%;
    right: -7%;
}
.custom-prev.slick-disabled,
.custom-next.slick-disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: default;
}

.your-surveillance-content h2 {
    font-weight: 100;
}
/*--------------------------------------------------------------
# Journey
--------------------------------------------------------------*/

/* The scrolling trigger area */
.scroll-wrapper {
  height: 100vh; /* Enough space for effect */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* The fixed section */
.fixed-section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  padding: 20px;
  border-radius: 10px;
  overflow: hidden;
}

.left, .right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
/* Images stay in place */
.left img {
    position: absolute;
    width: 80%;
    height: auto;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    background-color: #EFF7FF;
    padding: 40px 20px;
    border-radius: 30px;
}

.left img.active {
  opacity: 1;
}


/* Step animations */
.right {
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.steps-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}


.step span {
    color: #32986680;
    font-size: 25px;
    font-weight: 600;
}

.step h2 {
    margin-top: 12px;
    font-size: 30px;
}

.step p {
    color: #434444;
    font-size: 16px;
}

.step.active {
  opacity: 1;
  transform: translateY(0);
}

section#step-section .right-content {
    width: 50%;
    padding-top: 10vh;
    margin: 0 auto;
}
.right-content .section {
    opacity: 0.3;
    transition: opacity 0.4s ease-in-out;
}

.right-content .section.active {
    opacity: 1;
}

.left-slider .slide {
    opacity: 0.3;
    transition: opacity 0.4s ease-in-out;
}

.left-slider .slide.active {
    opacity: 1;
}

.step-block.active {
    opacity: 1;
    transition: all 0.5s ease-in-out;
}

.step-block {
    opacity: 0.4;
    margin-bottom: 70px;
    transition: all 0.5s ease-in-out;
}

section#step-section .section {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
section#step-section .slide.active {
    opacity: 1;
    transform: scale(1);
    position: relative;
    display: flex;
}
.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #329866;
    width: 50px;
    padding: 10px;
    height: 50px;
    border-radius: 50%;
}
.step-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.connect-step-text{
  padding-left: 15px;
  border-left: 1px solid #329866;
}

/* .connect-step-section .left-slider{
  height: 100%;
  padding-top: 10vh;
  width: 60%;
}*/
.connect-step-section .right-content {
    width: 40% !important;
} 

.connect-step-section .step .step-icon{
padding: 5px;
}

.connect-title{
  gap:10px;
  margin-bottom: 10px;
}

.connect-step-section .step-block{
  background-color: #F2F2F2;
  padding: 10px;
  margin-bottom: 15px;
}

section#step-section {
    overflow: unset;
}
section#step-section .slide {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.7s ease-in-out, transform 0.7s ease-in-out;
    position: absolute;
    width: 100%;
    /* height: 100%; */
}
#step-section{
  padding-bottom: 0;
}

.left-slider {
  position: sticky;
  top: 10%;
  width: 45%;
  height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 24px;
  border-radius: 20px;
}
body.scroll-locked {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

#connect-testimonials{
  position: relative;
  background-color: #fff;
}

/*--------------------------------------------------------------
# Transforming Surveillance
--------------------------------------------------------------*/

.nav-tabs {
    display: flex;
    gap: 40px;
    justify-content: space-around;
    border: none;
    margin-bottom: 30px;
}

.tab-btn {
  position: relative;
  padding: 10px 20px;
  border: 2px solid #ccc;
  border-radius: 50px;
  background: transparent;
  overflow: hidden;
  cursor: pointer;
}

.tab-btn .progress-fill {
  color: #333; /* default text color */
  position: relative;
  z-index: 2;
  transition: color 3s linear;
  font-size: 15px;
}

/* .tab-btn.active {
  background: #329866;
} */

.tab-btn.active p{
  color: #fff;
}


.tab-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: #329866;
  z-index: 1;
}

.tab-btn.animate::before {
  width: 100%;
  transition: width 5s linear;
}

.tab-pane {
  display: none;
  padding: 20px 0;
}

.tab-pane.active {
  display: block;
}

.tab-index-number {
    color: #329866;
    font-size: 24px;
    margin-bottom: 20px;
}

.transforming-surveillance-content h2 {
    color: #000;
    font-size: 22px;
}
.transforming-surveillance-content p{
  font-size: 18px;
}
.tab-point-sub {
  font-size: 18px;
}

.tab-point-sub {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding-bottom: 6px;
    color: #000;
}

/*--------------------------------------------------------------
# Counter
--------------------------------------------------------------*/
h2.counter-num {
    font-size: 48px;
    margin-bottom: 15px;
    padding-bottom: 5px;
}
#counter{
  background-color: #F1F6F8;
}

/* @media (min-width: 992px) {
  .counter-column {
    flex: 0 0 20%;
    max-width: 20%;
  }
} */
/*--------------------------------------------------------------
# Testimonial
--------------------------------------------------------------*/
.testimonial-slide {
    border: 1px solid #1C1C1C;
    padding: 20px;
    margin: 0 10px;
    border-radius: 10px;
}

.testimonial-author {
    display: flex
;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.testimonial-author-sub {
    display: flex
;
    align-items: center;
    gap: 10px;
}

.testimonial-author-name h3 {
    color: #000;
    font-size: 18px;
    margin-bottom: 0;
}

.testimonial-author-name p {
    margin-bottom: 0;
}
/*--------------------------------------------------------------
# Surveillance Solution
--------------------------------------------------------------*/
.task {
    overflow: visible;
}
.task .container, .task .row {
    overflow: visible !important;
}
.task .left-side {
    position: sticky;
    top: 25%;
    align-self: flex-start;
    height: fit-content;
}
.task .right-side {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* CARD STYLES */
.task .card {
    position: relative;
    padding: 20px;
    border: none;
    border-radius: 10px;
    margin: 0 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: row;
    gap: 10px;
}

.task .card img {
    width: 40px;
}

.task .card .active h3 {
    font-weight: 700;
}

.task .card h3 {
    font-weight: 400;
    font-size: 24px;
    margin-bottom: 0;
}
/* COLLAPSIBLE CONTENT */
.task .card p {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin: 0;
}
.task .card.active p {
    max-height: 200px; /* Adjust as needed */
    margin-top: 10px;
}
.scrollable-cards {
  max-height: 80vh;
  overflow-y: auto;
  padding-right: 10px;
}

/*--------------------------------------------------------------
# Event Gallery
--------------------------------------------------------------*/
.event-gallery {
  padding: 50px 20px;
  text-align: center;
  background: #fff;
  overflow: hidden;
}

.event-cards h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.event-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  transition: all 0.3s ease;
  max-width: 1320px;
  margin: 0 auto;
  overflow: hidden;
}

.event-card {
  background: #f2f9f9;
  border-radius: 20px;
  padding: 20px;
  min-height: 350px;
  height: 450px;
  flex: 1;
  position: relative;
  text-align: left;
  transition: all 0.3s ease;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Make first card larger by default */
.event-card.active {
  flex: 2;
  transform: scale(1.02);
  z-index: 2;
}

/* On hover: shrink all cards */
.event-cards:hover .event-card {
  flex: 1;
  opacity: 0.6;
  transform: scale(0.98);
  z-index: 1;
}

/* On hover: enlarge only the hovered card */
.event-cards .event-card:hover {
  flex: 2;
  opacity: 1;
  transform: scale(1.02);
  z-index: 3;
}

/* ✅ Fix: First card should stay big until another is hovered */
.event-cards:not(:hover) .event-card.active {
  flex: 2;
  transform: scale(1.02);
  z-index: 2;
  opacity: 1;
}

.event-card img {
    width: 100%;
    height: 100%;
    margin: 25px 0 15px;
    border-radius: 10px;
    object-fit: cover;
}

.event-card h3 {
  color: #008c4e;
  font-weight: bold;
  margin-bottom: 0;
}

.event-card p {
    margin-top: 5px;
    margin-bottom: 0;
}

.event-label {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #008c4e;
  color: white;
  padding: 5px 10px;
  border-radius: 10px;
  font-size: 16px;
  text-transform: uppercase;
}

.event-icon {
    position: absolute;
    top: 13px;
    right: 15px;
    background: #008c4e;
    color: white;
    padding: 9px 13px;
    border-radius: 50%;
    font-size: 20px;
    line-height: 1;
}
/*--------------------------------------------------------------
# CTA
--------------------------------------------------------------*/
section#cta{
  background-image: url("../imgs/BG.jpg");
  background-size: cover;
  padding: 30px 0;
}

.cta-content p {
    color: #fff;
    font-size: 26px;
    margin-bottom: 0;
}

.cta-content h2 {
  color: #fff;
    margin-bottom: 10px;
}

.cta-btn a {
    background-color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer-logo {
    margin-bottom: 10px;
}

h2.footer-heading {
    font-size: 16px;
    color: #000000;
    line-height: 24px;
    margin-bottom: 15px;
}

.certification {
    display: flex;
    align-items: center;
    gap: 20px;
}

.certification img {
    width: 60px;
    border-right: 1px solid #e2e2e2;
    padding-right: 10px;
    filter: grayscale(1);
}

.certification img:last-child {
    border: none;
}


.tnp.tnp-subscription form {
    display: flex;
}

.tnp-field label {
    display: none !important;
}

footer#site-footer {
    background-image: url('../imgs/Footer Ele.png');
    background-repeat: no-repeat;
    background-size: inherit;
    background-position: right bottom;
    padding: 60px 0 0;
}

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

.tnp.tnp-subscription {
    margin: 0;
}

input#tnp-1 {
    width: 330px;
    background-color: transparent;
    border: 1px solid #D9D9D9;
    border-radius: 8px;
    padding: 10px 0;
}

input.tnp-submit {
    background-color: #329866 !important;
    border-radius: 6px;
    padding: 11px 40px !important;
}

.tnp-subscription div.tnp-field, .tnp-profile div.tnp-field {
    width: 100%;
    margin-right: 10px;
}

p.footer-about {
    margin-bottom: 40px;
}

.footer-menu ul {
    padding: 0;
    list-style-type: none;
}

.footer-menu ul li {
    padding-bottom: 5px;
}

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

#banking-hero{
  height: 60vh;
  position: relative;
  background-color: #F1F6F8;
}

.banking-title{
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.atm-title h2{
  font-size: 36px;
  letter-spacing: 1px;
}

.development-services .left-side {
  display: inline-block;
  float: left;
  position: sticky;
  top: 230px;
}

.development-services {
  overflow: visible;
}

.development-services:before,
.development-services:after {
  content: "";
  display: table;
  clear: both;
}

.development-services .right-side {
  display: inline-block;
  vertical-align: top;
  float: right;
}

.development-services .left-side p {
  color: #333333;
  font-weight: 400;
}

.development-services .single-service-box {
  padding: 20px;
  margin-bottom: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 10px 0px #99999942;
}

.development-services .service-box {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed #D9D9D9;
  margin-bottom: 15px;
}

.development-services .service-box h3 {
  color: #000;
  font-size: 22px;
    font-weight: 400;
}

.development-services .service-box h4 {
  color: #329866;
  font-size: 22px;
    font-weight: 400;
}

.development-services .single-service-box p {
  color: #787878;
  font-weight: 400;
  margin-top: 20px;
}
.author{
  border-left: 3px solid #333333;
}
.case-info{
  gap: 12px;
}
.case-study-main img{
  border-radius: 10px;
}
.case-study-main{
    padding: 10px;
    border: 1px solid #BABABA;
    border-radius: 10px;
    height: 100%;
}

.flip-card {
  perspective: 1000px; /* Remove this if you don't want the 3D effect */
  min-height: 290px;
}

/* This container is needed to position the front and back side */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 290px;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 10px;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
  background-color: #FFFFFF;
  color: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Style the back side */
.flip-card-back {
  background-color: #FFFFFF;
  color: #FFFFFF;
  transform: rotateY(180deg);
}
.flip-innr-img{
    width: 84px;
    height: 84px;
    border: 1px solid #329866;
    padding: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
}
.flip-innr-title{
  width: 70%;
  margin: 0 auto;
}
#capabilities,
#intelligence{
  background-color: #F1F6F8;
}
.flip-back-title,
.flip-innr-content{
  text-align: left;
}

#vsaas-hero{
  background-color: #F1F6F8;
  height: 60vh;
}
#vsaas-hero .hero-img img{
  float: right;
}
.vsaas-hero-title h2{
  padding-left: 100px;
  font-weight: 300;
}
.familiar-content h2{
  font-weight: 300;
}


#key-features {
  background-color: #F1F6F8;
}

.features-list-title {
  width: 90%;
}

.features-list-title #myTab {
  border: none;
  display: block;
}

.features-list-title #myTab .nav-link.active {
  border: none;
  background-color: transparent;
  color: #329866;
  font-style: italic;
  font-weight: 700;
}

.features-list-title #myTab li {
  margin-bottom: 10px;
  border-bottom: 1px solid #C1C1C1;
  padding-bottom: 5px;
}

.features-list-title #myTab li button {
  color: #020727;
  font-size: 22px;
  padding-left: 0;
  border: none !important;
  text-align: left;
  display: flex;
  align-items: center;
  gap:10px;
}


.features-list-title #myTab li button:hover {
  border: none;
}

.features-list-title #myTab li button:focus-visible,
.features-list-title #myTab li button:focus {
  outline: none;
  border: none;
}
.single-key-feature {
  background-color: #fff;
  padding: 25px;
  box-shadow: #E8E8E8 15px 15px 0px;
} 

.single-key-feature h4 {
  font-weight: 700;
  color: #329866;
  font-size: 26px;
}

.single-key-feature p {
  font-size: 18px;
  color: #434444;
  padding-top: 5px;
}
span {
  font-family: "LufgaMedium", serif;
  background: #4A62C6;
  background: linear-gradient(180deg, #009800 40%, #4A62C6 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 48px;
}


/*--------------------------------------------------------------
# new-Testimonials
--------------------------------------------------------------*/
.new-testimonials {
  background: #F4F5F6;
  position: relative;
}
.new-testimonials .section-title p {
  font-size: 22px;
  color: #1E68B2;
  letter-spacing: 2px;
}

.new-testimonial-content p {
  font-size: 20px;
  color: #333333;
}
.new-testimonial-perosn-details {
  display: flex;
  align-items: center;
  gap:15px;
}

.new-person-details h4 {
  font-size: 18px;
  margin-bottom: 0;
  color: #282C4B;
}
.connect-person-details h4{
  font-size: 18px;
  margin-bottom: 0;
  color: #282C4B;
}
.new-person-details p {
  font-size: 14px;
  color: #4F4F4F;
  margin-bottom: 5px;
}
.new-quote-img {
  margin-bottom: 15px;
}
.new-quote-img img {
  width: 10%;
}



.new-testimonials img.left.slick-arrow {
  position: absolute;
  bottom: -20px;
  left: 46%;
  z-index: 1;
  cursor: pointer;
}

.new-testimonials img.right.slick-arrow {
  position: absolute;
  bottom: -20px;
  right: 46%;
  z-index: 1;
  cursor: pointer;
}

.new-testimonials.slick-arrow {
  position: absolute;
  bottom: 0;
  top: unset;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.new-testimonials .slick-prev:before,
.new-testimonials .slick-next:before {
  content: "";
  position: absolute;
  width: 20px;
  left: 50%;
  top: unset;
  bottom: -20px;
  transform: translate(-50%, -50%);
}

.new-testimonials .slick-arrow.slick-prev {
  position: absolute;
  cursor: pointer;
  top: unset;
  bottom: 20px;
  right: unset;
  z-index: 0;
  left: -78%;
  background: url(../../assets/imgs/Left.png) 100% no-repeat;
  width: 15%;
  height: 25%;
}

.new-testimonials .slick-arrow.slick-next {
  position: absolute;
  top: unset;
  right: 150%;
  bottom: 20px;
  cursor: pointer;
  z-index: 0;
  background: url(../../assets/imgs/Right.png) 100% no-repeat;
  width: 15%;
  height: 25%;
}
/* .page-template-agent .new-testimonials .slick-arrow.slick-prev {
  position: absolute;
  cursor: pointer;
  top: 100%;
  bottom: 20px;
  right: unset;
  z-index: 0;
  left: -80%;
  background: url(../../assets/imgs/Left.png) 100% no-repeat;
  width: 15%;
  height: 25%;
  background-size: contain;
}

.page-template-agent .new-testimonials .slick-arrow.slick-next {
  position: absolute;
  top: 100%;
  right: 150%;
  bottom: 20px;
  cursor: pointer;
  z-index: 0;
  background: url(../../assets/imgs/Right.png) 100% no-repeat;
  width: 15%;
  height: 25%;
  background-size: contain;
} */

.page-template-connect .new-testimonials .slick-arrow.slick-prev {
  position: absolute;
  cursor: pointer;
  top: 80%;
  bottom: 20px;
  right: unset;
  z-index: 0;
  left: -80%;
  background: url(../../assets/imgs/Left.png) 100% no-repeat;
  width: 15%;
  height: 25%;
  background-size: contain;
}

.page-template-connect .new-testimonials .slick-arrow.slick-next {
  position: absolute;
  top: 80%;
  right: 150%;
  bottom: 20px;
  cursor: pointer;
  z-index: 0;
  background: url(../../assets/imgs/Right.png) 100% no-repeat;
  width: 15%;
  height: 25%;
  background-size: contain;
}
.fa-arrow-right {
  transform: rotate(-45deg);
}
.event-icon i{
  transform: none;
}
.footer-social a i{
    font-size: 16px;
    color: #fff;
    background-color: #329866;
    padding: 7px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
}
.hero-g-title p b{
  font-size: 20px;
}

#book-hero {
    padding: 30px 0;
    background-image: url('../imgs/Book-a-demo-banner-img.jpg');
    background-position: cover;
    background-repeat: no-repeat;
    background-size: cover;
    
}

.book-hero-content h1{
  color: #fff;
}
.book-hero-content p{
  color: #fff;
}

.book-hero-content h1 {
    font-size: 48px;
}

.book-hero-form form {
    background-color: #fff;
    padding: 30px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 30px;
}

.book-hero-form form h2{
    font-size: 38px;
    margin-bottom: 20px !important;
}

.book-hero-form form h2 span{
    font-size: 38px;
}


.Consultation-content ul {
    list-style: none;
}

.Consultation-content ul li {
    margin-bottom: 15px;
    position: relative;
}

.Consultation-content ul li:before {
    content: "";
    background-image: url('../imgs/tick.png');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: -35px;
    width: 100%;
    height: 100%;
}

.Certifications-img {
    text-align: center;
}

.Certifications-img img {
    width: 250px;
}

/* About value  */
#about-value .section-title{
  width: 50%;
  margin: 0 auto;
}

.about-value-main img {
  background-color: #329866;
  border-radius: 50%;
  max-width: 64px;
}

.about-value-main {
  border: 1px solid #E0E0E0;
  padding: 15px;
  border-radius: 20px;
  height: 100%
}

.about-build-bg{
  background-color: #F7F7F7;
  padding: 40px 10px;
  border-radius: 20px;
}

.about-mail{
  font-size: 32px;
  font-weight: 600;
  background: #4A62C6;
  background: linear-gradient(180deg, #009800 40%, #4A62C6 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-email-main a{
  text-decoration: underline;
}

.about-list-details p{
  font-style: italic;
  margin-bottom: 0;
}


#timeline-milestone{
  height: 80vh;
  background-color: #F7F7F7;
}
.cards-container{
  width: 65%;
  margin-top: 0;
}

.milestone-section {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 10px;  
  overflow: hidden;
  padding-bottom: 40px;
}
.timeline-container {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.timeline-svg {
  width: 100%;
  height: 100%;
}
.timeline-svg .arc-dashed {
  stroke: #d0d0d0;
  stroke-width: 2;
  stroke-dasharray: 5 5;
  fill: none;
}
.timeline-label {
  pointer-events: auto;
  cursor: pointer;
  font-size: 0.9rem;
  fill: #9a9a9a;
  transition: fill 0.3s, font-weight 0.3s, opacity 0.3s;
}
.timeline-label.active {
  fill: #1b896f;
  font-weight: bold;
}
.timeline-label.fade-out {
  opacity: 0;
}
.timeline-label.fade-in {
  opacity: 1;
}
.milestone-content {
  width: 100%;
  overflow: hidden;
  padding: 20px 30px;
  text-align: center;
}
.milestone-content h3 {
  color: #1b896f;
  margin-bottom: 15px;
  font-size: 2rem;
}
.milestone-content ul {
  list-style: none;
  line-height: 1.6;
  display: inline-block;
  text-align: left;
}
.milestone-content ul li::before {
  content: '\2022';
  color: #0071bc;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
.milestone-divider {
  position: absolute;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 42%;
}
.milestone-indicatore {
  border-right: 3px solid #000;
  height: 100px;
  position: relative;
}
.milestone-indicatore:after {
  content: "";
  width: 15px;
  height: 15px;
  background-color: #000;
  position: absolute;
  left: 50%;
  transform: translate(-40%, -50%);
  border-radius: 50%;
}
textPath{
  font-size: 28px;
}

  /* Connect Page */
.connect-organization{
    border: 1px solid #E0E0E0;
    border-radius: 40px;
    padding: 40px;
}
.support-image{
  background-color: #F7F7F7;
  padding: 50px 0px;
  border-radius: 20px;
}
.support-main li::marker {
  color: #4A62C6;
}
.support-main li{
  font-size: 20px;
  color: #000;
}

/* #adapts-tabs */
#adapts-tabs button{
  padding-left: 0;
  border: none;
  background: #fff;
  color: #000;
}

#adapts-tabs .business-btn{
    text-align: left;
    border-left: 2px solid #329866;
    padding: 10px;
    padding-bottom: 0;
    padding-top: 0;
    height: 100%;
}

#adapts-tabs .business-btn p{
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 0;

}

#adapts-tabs .nav-tabs .nav-link.active .business-btn p {
  color: #329866;
  font-weight: 700;
}

#adapts-tabs .nav-pills .nav-link.active .business-btn p {
  color: #329866;
}

.adapts-tab-title h3{
  color: #329866;
}

/* professional page */

.zygal-professional .accordion-item {
  border: none;
  margin-bottom: 15px;
  padding: 0;
}

.zygal-professional .accordion{
  padding: 30px !important;
  height: 100%;
}

/* Accordion header button */
.zygal-professional .accordion-button {
  background: transparent;
  font-size: 24px;
  color: #000000;
  box-shadow: none;
  padding-left: 10px;
  position: relative;
}

/* Left blue line */
.zygal-professional .accordion-button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 44px;
  background: #4A62C6; /* Blue accent */
  border-radius: 2px;
}

/* Active state (open accordion) */
.zygal-professional .accordion-button:not(.collapsed) {
  color: #4A62C6; /* Blue text when active */
  background: transparent;
}

/* Accordion body */
.zygal-professional .accordion-body {
  font-size: 18px;
  color: #000;
  margin-left: 0px;
  margin-top: 5px;
  padding-left: 10px;
  padding-top: 0;
  /* font-family: "LufgaMedium", serif; */
}

/* Remove Bootstrap arrow icon */
.zygal-professional .accordion-button::after {
  display: none;
}

/* Image side */
.zygal-professional .accordion-images {
  text-align: center;
}

.zygal-professional .accordion-image {
  display: none;
}

.zygal-professional .accordion-image.active {
  display: block;
}

.zygal-professional .accordion-button:not(.collapsed)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  transform: translateY(-50%);
  width: 3px;
  height: 90px;
  background: #2d68ff;
  border-radius: 2px;
}

#inhouse-pro{
  background-image: url("../imgs/profainal-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.inhouse-pro-title {
  border-left: 4px solid #EAB10C;
  padding-left: 10px;  
}

.inhouse-pro-title h2{
  font-size: 40px;
}

.inhouse-pro-title p {
  font-size: 17px;
  color: #353535;
  padding-top: 5px;
  padding-left: 5px;
}

#brands-pro{
  padding-bottom: 60px;
}

#certified-member .certified-bg{
  background-color: #F7F7F7;
  border-radius: 20px;
}

.certified-image-second{
  border-left: 1px solid #929292;
}


.form-container {
  border-radius: 12px;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
  padding: 30px;
}

.form-section-title {
  margin-top: 35px;
  margin-bottom: 20px;
  font-size: 20px;
  color: #000000;
}

.form-control{
  background-color: #F9F9F9;
}

.form-select{
  background-color: #F9F9F9;
  margin-top: 10px;
}

.form-select:focus{
  border-color: unset;
  outline: 0;
  box-shadow: none;
}

.form-label{
  color: #000;
  font-weight: 600;
}

.form-check{
  margin-top: 10px;
}

.support-channel-main {
    padding: 20px;
    background-color: #f7f7f7;
    border-radius: 10px;
    height: 100%;
}

.features-box li::marker {
    color: #4A62C6;
}

.features-box li {
    font-size: 20px;
    color: #000;
}

/* #support-channel {
  position: relative;
}

.features-box {
  width: 50%;
  margin: 0 auto;
  padding: 30px;
  background: #4A62C6;
  border-radius: 20px;
  margin-top: 52px;
  position: relative;
}

.features-box p {
  color: #fff;
  font-size: 20px;
} */

/* Connector lines */
/* #support-channel::before,
#support-channel::after {
  content: "";
  width: 300px;
  height: 2px;
  background: #4A62C6;
  z-index: 1;
  bottom: 35%;
  position: absolute;
} */

/* Left line */
/* #support-channel::before {
    left: 20%;
} */

/* Right line */
/* #support-channel::after {
  right: 20%;
} */



/* Left line */
/* .features-box::before {
  left: -133px; 
} */

/* Right line */
/* .features-box::after {
  right: -132px;
} */

/* .features-box::before,
.features-box::after {
  content: "";
  width: 2px;
  height: 168px;
  background: #4A62C6;
  z-index: 1;
  bottom: 49%;
  position: absolute;
} */

/* Arrowheads */
/* .features-box::before::after,
.features-box::after::after {
  content: "";
  position: absolute;
  bottom: 0;             
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #4A62C6; 
} */

/* Right arrow flips direction if needed */
/* .features-box::after::after {
  border-top: 8px solid #4A62C6;
} */

/* Hide lines on mobile */
/* @media (max-width: 767px) {
  #support-channel::before,
  #support-channel::after {
    display: none;
  }
} */

.agent-hero-text h2{
  font-size: 38px;
}

.agent-hero-text p{
  font-size: 25px;
}

/* .agent-sub-text{
  border-left: 6px solid #4A62C6;
  padding-left: 15px;
} */

.agent-sub-text div {
  font-size: 20px;
}

#maximize-agent {
  background-color: #F1F6F8;
}

/* .maximize-title {
  text-align: center;
} */

.maximize-video video{
  border-radius: 20px;
}

.implementation-main{
  padding-left: 130px;
}

#implementation .nav-link {
 border:1px solid;
 background-color: #4B4B4B;
 color: #fff;
 border-radius: 50px;
}

#implementation .nav-link.active{
  background-color: #4A62C6;
  color: #fff;
}

#new-testimonials-agent{
  background-color: #fff;
}

#detection{
  background-color: #4A62C6;
}

#detection .feature-btn{
  border:1px solid #BABABA00;
 background-color: #F7F9FB;
 color: #000000;
 border-radius: 50px;
 padding: 10px 15px;
 margin-top: 15px;
}

#detection .feature-btn.active{
  background-color: #EAB10C;
  color: #000000;
}

#detection .carousel-control-next,
.carousel-control-prev{
  bottom: 3%;
  top: unset;
}

#detection .carousel-item video{
  max-width: 500px;
  max-height: 500px;
  margin-bottom: 30px;
}

.carousel-item h4{
  color: #fff;
}

.carousel-item p{
  color: #fff;
}

#detection .carousel-control-prev {
    left: 15%;
}

#detection .carousel-control-next {
    right: 15%;
}

.adapts-images video {
    border-radius: 20px;
}

.feature-main{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-logo img{
  max-width: 180px;
}
.f-email p{
  font-size:16px;
}
.accordion-image img {
    border-radius: 20px;
}

.copyright-content p{
  font-size: 12px;
}

.term-policy a{
  font-size: 12px;
}

/* .agent-sub-text span {
    font-size: 28px !important;
} */

.wpcf7-not-valid-tip {
    color: #dc3232 ;
    font-size: 16px !important;
    font-weight: normal;
    display: block;
}

.wpcf7-form-control-wrap {
    font-size: 18px;
}
/* .certified-image img {
    width: 20%;
}
.certified-image-second img {
    width: 20%;
} */

#about-build-us p {
    font-size: 16px;
}

.hero-g-title h2 {
    font-size: 38px;
}

.about-title h2 {
    font-size: 38px;
}

.page-template-about-us .about-title h2 {
    font-size: 48px;
}

.footer-newsletter p {
    font-size: 12px;
}

.footer-email-location i, .footer-email-location a ,.f-email i,.f-email p{
    font-size: 14px;
}

::marker{
  color: #4A62C6;
}

.partner-from-main lable {
    font-weight: bold;
    color: #555;
}

.header-logo {
    width: 220px;
}

.logo {
    width: 170px;
}

.book-hero-form lable {
    font-weight: bold;
}

section#about-value {
    padding: 100px 0 60px 0;
}

.about-list-linkdin img {
    width: 60%;
}

section#about-leadership p {
    font-size: 13px;
}

.term-policy ul {
    list-style: none;
    display: flex;
}

.term-policy ul li {
    margin-right: 10px;
}

.hero-g-title p {
    font-size: 25px;
}

.connect-person-details h4,
.new-person-details h4{
  font-style: italic;
}

/* Desktop Tabs */
#transforming-surveillance .tab-container { display: block; }
#transforming-surveillance .accordion { display: none; }

@media (max-width: 767px) {
  #transforming-surveillance .tab-container { display: none; }
  #transforming-surveillance .accordion { display: block; }
}

.apple-google img{
  width: 80%;
  margin: 0 auto;
}

.submit-button p {
    display: inline-flex;
    flex-direction: column;
}

.blog-box-body{
    margin-top: -15px;
    padding: 35px 20px 20px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
}
.blog-list-box img{
  border-radius: 20px;
  max-height: 250px;
}
.date-autor b{
  color: #4A62C6;
}
.hero-blogs-img img{
  width: 100%;
}