

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --main-font: "Montserrat", sans-serif;
  --header-font: "Poppins", sans-serif;
  --primary-color: #5447f0;
  --primary-color-hover: #6468dd;
  --secondary-color: #444444;
  --border-radius: 4px;
  --transition-duration: 250ms;
}

body {
  font-family: var(--main-font);
  color: var(--secondary-color);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  -webkit-transition: color var(--transition-duration);
  -o-transition: color var(--transition-duration);
  transition: color var(--transition-duration);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--header-font);
  font-weight: 600;
  margin-top: 0;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
/* #preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
}

#preloader:before {
  content: "";
  position: absolute;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--primary-color);
  border-left-color: var(--primary-color);
  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: 15px;
  z-index: 996;
  background: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all var(--transition-duration);
  -o-transition: all var(--transition-duration);
  transition: all var(--transition-duration);
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
}

.back-to-top:hover {
  background: var(--primary-color-hover);
  color: #fff;
}

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


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  -webkit-transition: all var(--transition-duration);
  -o-transition: all var(--transition-duration);
  transition: all var(--transition-duration);
  z-index: 997;
  padding: 15px 0;
  background-color: var(--primary-color);
}

#header.header-scrolled,
#header.header-inner-pages {
  background-color: #6468dd;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

#header .logo img {
  max-height: 40px;
}


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

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

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  -webkit-transition: var(--transition-duration);
  -o-transition: var(--transition-duration);
  transition: var(--transition-duration);
}

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

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

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  border: 2px solid var(--primary-color);
  font-weight: 600;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: var(--primary-color-hover);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  -webkit-box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
          box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  -webkit-transition: var(--transition-duration);
  -o-transition: var(--transition-duration);
  transition: var(--transition-duration);
  border-radius: 4px;
}

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #0c3c53;
}

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

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

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

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

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

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}


/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
.mobile-nav-toggle {
  color: #fff;  
  font-size: 32px;  
  cursor: pointer;
  display: none;
  line-height: 1;  
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;  
  transition: 0.5s;     
  padding: 5px;  
}

.navbar-mobile .mobile-nav-toggle {
  top: 5px;  
  right: 5px;   
}

#hero .btn-get-started {   
  font-size: 12px;    
  padding: 5px 15px;  
}

@media (max-width: 576px) {   
  .btn-get-started {    
    margin: 0px;    
  }
}

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

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

  .navbar ul {
    display: none;  
  }
}

.navbar-mobile {
  position: fixed;
  overflow: auto; /* Changed from hidden to auto */
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #5447f0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 10px; /* Decreased value */
  right: 10px; /* Decreased value */
}

.navbar-mobile ul {
  display: block;
  position: relative; /* Changed from absolute to relative */
  margin: 10px; /* Added margin */
  padding: 10px;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px;
  font-size: 15px;
  color: #37517e;
  font-weight: 500;
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #6468dd;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 10px; /* Decreased value */
  color: #37517e;
  font-weight: 600;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px; /* Added margin */
  padding: 10px;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  -webkit-box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
          box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  border-radius: 5px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px;
  font-weight: 500;
}

@media (max-width: 576px) {
  .hero-img img {
    max-width: 100%;
    height: auto;
  }
  
  .btn-get-started {
    margin: 5px; /* Decreased value */
  }
  
  .d-flex.justify-content-center.justify-content-lg-start {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  
  .d-flex.justify-content-center.justify-content-lg-start .mr-3 {
    margin-right: 0;
    margin-bottom: 5px;
  }
  
  .btn-watch-video {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
}





/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/* General Hero Styles */
#hero {
  height: 500px;
  width: 100%;
  height: 80vh;
  background: -o-linear-gradient(290deg, #5447f0 60%, #5447f0 60%);
  background: linear-gradient(160deg, #5447f0 60%, #5447f0 60%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}


#hero .container {
  padding-top: 72px;
}

/* Typography */
#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

#hero h2 {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 400;
}

#hero p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 300;
}

/* Buttons */
#hero .btn-get-started {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 14px; /* reduce font size */
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 20px 9px 20px; /* reduce padding */
  border-radius: 50px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #6468dd;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


#hero .btn-get-started:hover {
  background: #6468dd;
  -webkit-box-shadow: 0 6px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 6px 8px rgba(0, 0, 0, 0.1);
}

#hero .btn-watch-video {
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  margin: 10px 0 0 25px;
  color: #fff;
  line-height: 1;
}

#hero .btn-watch-video i {
  line-height: 0;
  color: #fff;
  font-size: 32px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  margin-right: 8px;
}

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

/* Responsive Styles */
@media (max-width: 991px) {
  #hero {
    height: 100vh;
    text-align: center;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 991px) {
  #hero .btn-get-started {
    width: 100%;
  }
}



/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
/* General Sections */
section {
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}

.section-bg {
  background-color: #f8f9fd;
}

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

.section-title h2 {
  font-size: 36px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 25px;
  padding-bottom: 25px;
  position: relative;
  color: #5447f0;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #6468dd;
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  font-size: 18px;
  color: #777;
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 28px;
  color: #2c3e50;
}

.about .content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about .content ul li {
  padding-left: 32px;
  position: relative;
  font-size: 16px;
  line-height: 1.5;
  color: #5a5a5a;
}

.about .content ul li+li {
  margin-top: 16px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 24px;
  color: #6468dd;
  line-height: 1;
}

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

.about .content .btn-learn-more {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  line-height: 1;
  color: #6468dd;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
  margin-top: 16px;
  border: 2px solid #6468dd;
  text-transform: uppercase;
}

.about .content .btn-learn-more:hover {
  background: #6468dd;
  color: #fff;
  text-decoration: none;
}

/* Updated CSS for a more modern look */

.about .content h3 {
  font-weight: 700;
  font-size: 32px;
  color: #5447f0;
}

.about .content ul li {
  padding-left: 40px;
  font-size: 18px;
  color: #4b4b4b;
}

.about .content ul i {
  font-size: 28px;
  color: #6468dd;
}

.about .content .btn-learn-more {
  font-weight: 600;
  font-size: 18px;
  padding: 12px 36px;
  border-radius: 6px;
  color: #6468dd;
  border: 2px solid #6468dd;
}

.about .content .btn-learn-more:hover {
  background: #6468dd;
}



/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .content {
  padding: 60px 100px 0 100px;
}

.why-us .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #37517e;
}

.why-us .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.why-us .content p {
  font-size: 15px;
  color: #848484;
}

.why-us .img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.why-us .accordion-list {
  padding: 0 100px 60px 100px;
}

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

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

.why-us .accordion-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
}

.why-us .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  cursor: pointer;
}

.why-us .accordion-list span {
  color: #6468dd;
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.why-us .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.why-us .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

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

.why-us .accordion-list a.collapsed {
  color: #343a40;
}

.why-us .accordion-list a.collapsed:hover {
  color: #6468dd;
}

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

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

@media (max-width: 1024px) {

  .why-us .content,
  .why-us .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .why-us .img {
    min-height: 400px;
  }

  .why-us .content {
    padding-top: 30px;
  }

  .why-us .accordion-list {
    padding-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .why-us .img {
    min-height: 200px;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  -webkit-box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  -webkit-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
  background: #fff;
}

.services .icon-box .icon {
  margin-bottom: 10px;
}

.services .icon-box .icon i {
  color: #6468dd;
  font-size: 36px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.services .icon-box h4 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #5447f0;
  -webkit-transition: ease-in-out 0.3s;
  -o-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
          transform: translateY(-10px);
}

.services .icon-box:hover h4 a {
  color: #6468dd;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: -webkit-gradient(linear, left top, left bottom, from(#5447f0), to(#5447f0)), url("../img/cta-bg.jpg") fixed center center;
  background: -o-linear-gradient(#5447f0, #5447f0), url("../img/cta-bg.jpg") fixed center center;
  background: linear-gradient(#5447f0, #5447f0), url("../img/cta-bg.jpg") fixed center center;
  background-size: cover;
  padding: 120px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #6468dd;
  border: 2px solid #6468dd;
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  border-top: 3px solid #6468dd;
  border-bottom: 3px solid #6468dd;
  padding: 30px;
  background: #fff;
  width: 100%;
  -webkit-box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

.contact .info i {
  font-size: 20px;
  color: #6468dd;
  float: left;
  width: 44px;
  height: 44px;
  background: #e7f5fb;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #5447f0;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #6182ba;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: #6468dd;
  color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #6468dd;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  border-top: 3px solid #6468dd;
  border-bottom: 3px solid #6468dd;
  padding: 30px;
  background: #fff;
  -webkit-box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
          box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
          animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form label {
  padding-bottom: 8px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #6468dd;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: #6468dd;
  border: 0;
  padding: 12px 34px;
  color: #fff;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #209dd8;
} 

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

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

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

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

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f3f5fa;
  min-height: 40px;
  margin-top: 72px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: #37517e;
}

.breadcrumbs ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

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

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #4668a2;
  content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: #5447f0;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #f3f5fa;
  text-align: center;
  font-size: 15px;
  color: #444444;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #5447f0;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  -webkit-box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
          box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #6468dd;
  color: #fff;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  border-radius: 50px;
  -webkit-box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #6468dd;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  color: #5447f0;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Jost", sans-serif;
  color: #5e5e5e;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #5447f0;
  position: relative;
  padding-bottom: 12px;
}

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

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

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #6468dd;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

#footer .footer-top .footer-links ul a {
  color: #777777;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #6468dd;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #6468dd;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #6468dd;
  color: #fff;
  text-decoration: none;
}

#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
}

#footer .copyright {
  float: left;
}

#footer .credits {
  float: right;
  font-size: 13px;
}

#footer .credits a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  #footer .copyright,
  #footer .credits {
    text-align: center;
    float: none;
  }

  #footer .credits {
    padding-top: 4px;
  }
}

/*--------------------------------------------------------------
# Added forms
--------------------------------------------------------------*/

section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

#myForm {
  background-color: #fff;
  border-radius: 5px;
  padding: 30px;
  max-width: 600px;
  width: 100%;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

#myForm h2 {
  font-size: 32px;
  font-weight: 700;
  color: #444;
  margin-bottom: 30px;
  text-align: center;
}

#myForm label {
  font-size: 16px;
  font-weight: 600;
  color: #444;
  margin-bottom: 10px;
  display: block;
}

#myForm input[type="text"],
#myForm input[type="email"],
#myForm input[type="tel"] {
  border: 2px solid #ddd;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 20px;
  width: 100%;
}

#myForm button[type="submit"] {
  background-color: #5447f0;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: 5px;
  padding: 15px 30px;
  margin-top: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.contact-form {
  margin: 0 auto;
  width: 80%;
  max-width: 500px;
}
.form-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100vh;
}

/* Pricing Section */
#pricing-cost {
  background-color: #f7f7f7;
  padding: 80px 0;
}

#pricing-cost .section-title {
  margin-bottom: 40px;
  text-align: center;
}

#pricing-cost .section-title h2 {
  color: #333;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

#pricing-cost .section-title p {
  color: #777;
  font-size: 18px;
  font-weight: 400;
}

#pricing-cost .box {
  background-color: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  -o-transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}

#pricing-cost .box:hover {
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}

#pricing-cost .box h3 {
  color: #333;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

#pricing-cost .box h4 {
  color: #666;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 30px;
}

#pricing-cost .box h4 sup {
  font-size: 20px;
  vertical-align: super;
}

#pricing-cost .box h4 span {
  font-size: 18px;
  font-weight: 400;
  vertical-align: middle;
  margin-left: 5px;
}

#pricing-cost .box ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  text-align: left;
}

#pricing-cost .box ul li {
  color: #777;
  font-size: 16px;
  font-weight: 400;
  padding: 10px 0;
}

#pricing-cost .box ul li.na {
  color: #999;
}

#pricing-cost .box .buy-btn {
  background-color: #6468dd;
  border: 0;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  margin-top: 20px;
  padding: 12px 30px;
  text-decoration: none;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

#pricing-cost .box .buy-btn:hover {
  background-color: #6468dd;
}

#pricing-cost .note {
  color: #777;
  font-size: 14px;
  font-style: italic;
  margin-top: 20px;
}


/* Namely AI VS Human Section */
#comparison {
  background-color: #fff;
  padding: 80px 0;
}

#comparison .section-title {
  margin-bottom: 40px;
  text-align: center;
}

#comparison .section-title h2 {
  color: #333;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

#comparison .section-title p {
  color: #777;
  font-size: 18px;
  font-weight: 400;
}

#comparison .box {
  background-color: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  -o-transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}

#comparison .box:hover {
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}

#comparison .box h3 {
  color: #333;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

#comparison .box ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  text-align: left;
}

#comparison .box ul li {
  color: #777;
  font-size: 16px;
  font-weight: 400;
  padding: 10px 0;
}

#comparison .box ul li.na {
  color: #999;
}

#comparison .box .pricing {
  margin-top: 20px;
}

#comparison .box .pricing h4 {
  color: #666;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

#comparison .box .pricing p {
  color: #333;
  font-size: 18px;
  font-weight: 400;
}

#comparison .box .bad {
  color: #ff5353;
}

/* Hero List */


.list-item {
  color: #fff;
}


/* Call To action button */

.btn-cta {
  display: inline-block;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  border: 1px solid transparent;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 50px; /* Updated border-radius to make buttons rounded */
  color: #fff;
  background-color: #6468dd;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.btn-cta:hover {
  background-color: #6468dd;
  text-decoration: none;
}

.centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* Comparison Section */
.comparison {
  background-color: #f8f9fa;
  padding: 60px 0;
}

.comparison .section-title {
  margin-bottom: 40px;
}

.comparison .section-title h2 {
  font-size: 32px;
  font-weight: 700;
  color: #2c3e50;
}

.comparison .section-title p {
  font-size: 18px;
  color: #2c3e50;
  opacity: 0.8;
}

.comparison .box {
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.comparison .box:hover {
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
}

.comparison .box h3 {
  font-size: 24px;
  font-weight: 700;
  color: #5447f0;
  margin-bottom: 20px;
}

.comparison .box ul {
  list-style-type: none;
  padding: 0;
}

.comparison .box ul li {
  font-size: 16px;
  color: #5447f0;
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 10px;
}

.comparison .box ul li i {
  font-size: 20px;
  color: #2ecc71;
  margin-right: 10px;
}

.comparison .box ul li i.bx-x {
  color: #e74c3c;
}

.comparison .row > div {
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .comparison .row > div {
    margin-bottom: 0;
  }
}


.btn-get-started {
  margin: 5px;  /* Adjust this value as needed */
}
.mr-3 {
  margin-right: 5px !important;  /* Adjust this value as needed */
}

.ml-3 {
  margin-left: 5px !important;  /* Adjust this value as needed */
}

@media (max-width: 767px) {
  .hide-on-mobile {
    display: none;
  }
}

.banner {
  background-color: #ff0000; /* Replace with your desired background color */
  color: #fff; /* Replace with your desired text color */
  text-align: center;
  padding: 10px;
}

.banner h1 {
  font-size: 24px; /* Adjust font size as needed */
}



/* Blog Section Styles */
#blog {
  padding: 60px 0;
}

#blog .card {
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

#blog .card img {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

#blog .card-body {
  padding: 20px;
}

#blog .card-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}

#blog .card-text {
  font-size: 16px;
  color: #555;
}

#blog .btn-primary {
  background-color: var(--primary-color);
  color: #fff;
  border-radius: 4px;
  font-weight: bold;
  transition: all 0.3s ease;
}

#blog .btn-primary:hover {
  background-color: #0056b3;
}

/* Blog Post Section Styles */
#blog-post {
  padding: 60px 0;
}

#blog-post .post-img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
}

#blog-post .post-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

#blog-post .post-meta {
  font-size: 16px;
  color: #777;
  margin-bottom: 15px;
}

#blog-post .post-text {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}



/* Add this CSS to your existing styles */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.popup-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 500px;
  margin: 0 20px;
}

.popup-title {
  margin-bottom: 20px;
  color: #333;
  font-size: 24px;
}

.voice-button {
  display: inline-block;
  margin: 0 10px;
  padding: 10px 20px;
  background-color: #5447f0;
  color: #fff;
  border: none;
  border-radius: 50px; /* This will make the buttons round */
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.voice-button:hover {
  background-color: #0056b3;
}


.popup-link {
  display: inline-block;
  margin-top: 20px;
  background-color: #5447f0;
  color: #fff;
  text-decoration: none;
}


#video-header {
  position: relative;
  text-align: center;
}

#curved-arrow {
  height: 50px;
  width: auto;
}

#video-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 20px;
  font-weight: bold;
}
