
/* Fonts */
:root {
  --default-font:"Outfit", sans-serif;
  --heading-font: "Outfit", sans-serif;
  --nav-font: "Outfit", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  /* --background-color: #040000; Background color for the entire website, including individual sections */
  --default-color: #f8f8f8; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #191919; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #e59d02; /* 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: #191919; /* 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: #191919;  /* The default color of the main navmenu links */
  --nav-hover-color: #e59d02; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #1b1a1a; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #1b1a1a; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #191919; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #e59d02; /* 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: #1b1a1a;
  --surface-color: #282828; */
}

.dark-background {
  --background-color: #000000;
  --default-color: #191919;
  --heading-color: #191919;
  --surface-color: #1b1b1b;
  --contrast-color: #ffffff;
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

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,
h2,
h3,
h4,
h5,
h6 {
  color: #191919;
  font-family: var(--heading-font);
}
p{
  font-size: 24px;
  
}

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
      padding: 3px 0;
  transition: all 0.5s;
  z-index: 997;
}

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

.header .logo img {
 width: 100%;
}

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

.header .btn-getstarted,
.header .btn-getstarted:focus {
     color: #fff;
       background: #15803d;
    /* background: #7cd754; */
    font-size: 18px;
    padding: 11px 6px;
    margin: 0;
    border-radius: 5px;
    transition: 0.3s;
    font-weight: 600;
}

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

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

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

  .header .navmenu {
    order: 2;
  }
      .searchInput {
     
        right: 19% !important;
        width: 174px !important;
        top: 22%!important;
    }
}

.scrolled .header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:#fff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: -1;
  pointer-events: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  /* optional border */
}
/* .scrolled .header a {
 
  color: #fff;
}
.scrolled .header a :focus{
 
  color: #0086ee;
} */

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Navmenu - Desktop */



@media (min-width: 1024px) {
  .navmenu {
    padding: 0;
            margin-right: 18%;
  }

  .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 10px;
font-size: 22px;
    font-family: var(--nav-font);

            display: flex
;
        align-items: center;
        justify-content: flex-start;
        white-space: nowrap;
        transition: 0.3s;
  }
  .navmenu .dropdownmenu_list a,
  .navmenu .dropdownmenu_list a:focus {
    color: var(--nav-color);
   
    font-size: 18px;
    font-family: var(--nav-font);

            display: flex
;
        align-items: center;
        justify-content: flex-start;
        white-space: nowrap;
        transition: 0.3s;
        padding: 0;
  }


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

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

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
   color: #0191ef;
        font-size: 22px;

  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
   background: #fff;
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
           margin-top: 18px;
    opacity: 0;
    transition: 0.3s;
    border-radius: 6px;
    z-index: 99;
            left: -241px;
        width: 730px;
  }

  .navmenu .dropdown ul li {
               float: left;
        width: 45%;
        /* background: #fff; */
        /* border: 1px solid #1f4058; */
        margin: 14px 18px 7px;
        /* padding: 0; */
        /* box-shadow: 0px 0px 6px 0px #68aee2; */
        border-radius: 7px;
               padding: 0px 20px 0 0;
  }

  .navmenu .dropdown ul a {
  
    font-size: 22px;
    text-transform: none;
    color: #615f5f;
    font-weight: 600;
  }
   .navmenu .dropdown ul a:hover{
  
    font-size: 22px;
   }

  .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: 1023px) {
  .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: #fff;
    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(--accent-color), transparent 90%);
  }

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

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: 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 {
    color: var(--default-color);
    background-color: #000;
    font-size: 15px;
    /* position: relative; */
    float: left;
    width: 100%;
}

.footer .footer-top {
  background-color: color-mix(in srgb, var(--background-color), white 5%);
  padding-top: 50px;
}

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

.footer .footer-about .logo img {
    width: 25%;
}

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

.footer .footer-about p {
     font-size: 19px !important;
    font-family: var(--heading-font);
    line-height: 27px;
    color: #cfc8c8;
    
}

.footer h4 {
  font-size: 22px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
  color: #fff;
}

.footer h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent-color);
  bottom: 0;
  left: 0;
}

.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 30%);
  display: inline-block;
  line-height: 1;
      font-size: 19px;
}

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

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


.footer .copyright {
    padding: 10px 0;
}

.footer .copyright p {
  margin-bottom: 0;
      font-size: 16px !important;
      text-align: left;
      color: #cfc8c8;
}

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

.footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: color-mix(in srgb, var(--default-color), transparent 92%);
  color: var(--accent-color);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  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;
  bottom: 15px;
}

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 170px 0 80px 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 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: 42px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
}

/* .section-title h2:before,
.section-title h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
} */

.section-title h2:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after {
  margin: 0 0 10px 15px;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding-top: 120px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  /* background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 96%) 0%, var(--background-color) 40%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%); */
  padding-bottom: 60px;
  background: url(../img/frontbg.webp) center top no-repeat;
}



.hero .hero-wrapper {
  width: 100%;

  margin: 0 auto;
}

.hero .hero-title {
    font-size: 58px;
    font-weight: 900;
    color: #191919;
    line-height: 1.3;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
}




.hero .hero-title .typed {
background: linear-gradient(135deg, #024ce5 0%, color-mix(in srgb, #027be5, #11d1ff 50%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero .hero-title .typed::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, #024ce5 0%, color-mix(in srgb, #027be5, #11d1ff 50%) 100%);
  border-radius: 2px;
}

.hero .hero-description {
         font-size: 28px !important;
    color: #393939;
    line-height: 1.6;
    margin-bottom: 40px;
       max-width: 76%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 4%;
}

.hero .hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
}

.hero .hero-actions .action-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.hero .hero-actions .action-btn.primary {
  background: #e05519;
background: linear-gradient(82deg,rgba(224, 85, 25, 1) 0%, rgba(237, 9, 85, 1) 100%);
  color: var(--contrast-color);

}

.hero .hero-actions .action-btn.primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), #8b5cf6 30%) 0%, var(--accent-color) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero .hero-actions .action-btn.primary span,
.hero .hero-actions .action-btn.primary i {
  position: relative;
  z-index: 1;
}

.hero .hero-actions .action-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.hero .hero-actions .action-btn.primary:hover::before {
  opacity: 1;
}

.hero .hero-actions .action-btn.secondary {
  background: transparent;
  color: var(--default-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.hero .hero-actions .action-btn.secondary:hover {
  background: var(--surface-color);
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 90%);
}

.hero .hero-image-showcase {
  position: relative;
}

.hero .hero-image-showcase .image-wrapper {
  position: relative;
  background: var(--surface-color);
  border-radius: 20px;
  padding: 15px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 88%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.hero .hero-image-showcase .image-wrapper img {
  border-radius: 15px;
  width: 100%;
  height: auto;
}

.hero .hero-image-showcase .floating-card {
  position: absolute;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 85%);
  backdrop-filter: blur(10px);
}

.hero .hero-image-showcase .floating-card.card-1 {
  top: 20%;
  left: -60px;
  animation: float 3s ease-in-out infinite;
}

.hero .hero-image-showcase .floating-card.card-2 {
  bottom: 15%;
  right: -60px;
  animation: float 3s ease-in-out infinite reverse;
}

.hero .hero-image-showcase .floating-card .card-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hero .hero-image-showcase .floating-card .card-content .card-icon {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .hero-image-showcase .floating-card .card-content .card-icon i {
  color: var(--accent-color);
  font-size: 20px;
}

.hero .hero-image-showcase .floating-card .card-content .card-info h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
  line-height: 1;
}

.hero .hero-image-showcase .floating-card .card-content .card-info p {
  margin: 5px 0 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 0.85rem;
  white-space: nowrap;
}

@keyframes float {

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

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

@keyframes pulse {

  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 0.8;
  }
}


@media (max-width: 768px) {
  .hero .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .hero .hero-actions .action-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .hero .floating-card {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 100px 0 30px;
  }

  .hero .hero-badge {
    margin-bottom: 20px;
  }

  .hero .hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

  .hero .hero-actions {
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.about .image-wrapper:hover {
  transform: translateY(-5px);
}

.about .content h2 {
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.about .content h2:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
  left: 0;
  bottom: -10px;
}

.about .content h5 {
  font-weight: 500;
  color: color-mix(in srgb, var(--heading-color), transparent 20%);
}

.about .content p {

  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about .features-list {
  margin-top: 2rem;
}

.about .features-list .feature-item {
  padding: 20px;
  background-color: #4a4d50;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.about .features-list .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about .features-list .feature-item i {
  font-size: 2rem;
  color:#eaac26;
  margin-bottom: 15px;
  display: block;
}

.about .features-list .feature-item h5 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

.about .features-list .feature-item p {

    margin-bottom: 0;
    color: #fff !important;
        line-height: 30px;
}
.about .btn {
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;

}

.about .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.about .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 10%);
  border-color: color-mix(in srgb, var(--accent-color), #000 10%);
}

.about .btn.btn-outline-primary {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.about .btn.btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}



@media (max-width: 768px) {
  .about .features-list .feature-item {
    margin-bottom: 1.5rem;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .intro-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--heading-color);
  line-height: 1.3;
}

.features .intro-content p {

    color: 
 color-mix(in srgb, #191919, transparent 20%);
    margin-bottom: 10px;
    line-height: 1.6;
    text-align: left;
    padding-top: 15px;
    
}

.features .intro-content .feature-stats {
  display: flex;
    gap: 50px;
}

.features .intro-content .feature-stats .stat-item {
  text-align: center;
}

.features .intro-content .feature-stats .stat-item .stat-number {
     display: block;
    font-size: 43px;
    font-weight: 700;
    color: #ff7d00;
    line-height: 1;
}

.features .intro-content .feature-stats .stat-item .stat-label {
     font-size: 20px;
    color: #191919;
 
    font-weight: 500;
    margin-top: 5px;
    display: block;
    text-align: left;
}

.features .intro-image {
  position: relative;
}

.features .intro-image img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* .features .intro-image::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 40%));
  border-radius: 50%;
  z-index: -1;
  opacity: 0.7;
}

.features .intro-image::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--heading-color), color-mix(in srgb, var(--heading-color), transparent 40%));
  border-radius: 20px;
  z-index: -1;
  opacity: 0.5;
} */

.features .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.features .feature-item {
  position: relative;
  background:#fff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  overflow: hidden;
}

.features .feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background:linear-gradient(90deg, #093375,
 color-mix(in srgb, #050649, transparent 50%));

  transition: left 0.5s ease;
}

.features .feature-item .feature-number {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 48px;
  font-weight: 900;
  color: color-mix(in srgb, var(--accent-color), transparent 90%);
  line-height: 1;
  z-index: 1;
}

.features .feature-item .feature-content {
  position: relative;
  z-index: 2;
}

.features .feature-item .feature-content .feature-icon {
  margin-bottom: 25px;
}

.features .feature-item .feature-content .feature-icon i {
  font-size: 32px;
  color: var(--contrast-color);
  background: linear-gradient(135deg, #0663ad,
 color-mix(in srgb, #4397db, transparent 30%));
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.features .feature-item .feature-content h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--heading-color);
  line-height: 1.3;
}

.features .feature-item .feature-content p {

  color: #191919;
  margin-bottom: 25px;
  line-height: 1.6;
}

.features .feature-item .feature-content .feature-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.features .feature-item .feature-content .feature-tags .tag {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.features .feature-item:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.features .feature-item:hover::before {
  left: 0;
}

.features .feature-item:hover .feature-number {
  color: color-mix(in srgb, var(--accent-color), transparent 80%);
  transform: scale(1.1);
}

.features .feature-item:hover .feature-icon i {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.features .feature-item:hover .feature-tags .tag {
  background: var(--accent-color);
  color: var(--contrast-color);
}



@media (max-width: 767px) {
  .features .intro-content .feature-stats {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .features .intro-content .feature-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .features .intro-content .feature-stats .stat-item .stat-number {
    font-size: 24px;
  }

  .features .intro-content .feature-stats .stat-item .stat-label {
    margin-top: 0;
  }

  .features .feature-item {
    padding: 25px;
  }

  .features .feature-item .feature-number {
    font-size: 36px;
    top: 15px;
    right: 20px;
  }

  .features .feature-item .feature-content h4 {
    font-size: 20px;
  }

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

@media (max-width: 575px) {
  .features .intro-content h2 {
    font-size: 28px;
  }

  .features .intro-content p {

  }
}

/*--------------------------------------------------------------
# Features Tabs Section
--------------------------------------------------------------*/
.features-tabs .tabs-wrapper {
  /* background-color: var(--surface-color); */
  border-radius: 20px;
  padding: 40px;
  /* box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 90%); */
}

.features-tabs .nav-tabs {
  border: 0;
  gap: 20px;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
}


.features-tabs .nav-item {
  flex: 1;
  min-width: 0;
}


.features-tabs .nav-link {
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 15px;
  padding: 25px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: auto;
  min-height: 80px;
  cursor: pointer;
}

.features-tabs .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #ffaf02, color-mix(in srgb, #ffa000, #000000 20%));
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

@media (max-width: 768px) {
  .features-tabs .nav-link {
    padding: 20px 15px;
    min-height: 70px;
  }
}

.features-tabs .nav-link .tab-icon {
  position: relative;
  z-index: 2;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.features-tabs .nav-link .tab-icon i {
  font-size: 24px;
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .features-tabs .nav-link .tab-icon {
    width: 40px;
    height: 40px;
  }

  .features-tabs .nav-link .tab-icon i {
    font-size: 20px;
  }
}

.features-tabs .nav-link .tab-content {
  position: relative;
  z-index: 2;
  flex: 1;
}

.features-tabs .nav-link .tab-content h5 {
  margin: 0 0 4px 0;
  font-size: 20px;
  font-weight: 600;
  color: var(--heading-color);
  transition: color 0.4s ease;
}

@media (max-width: 768px) {
  .features-tabs .nav-link .tab-content h5 {
    font-size: 14px;
  }
}

.features-tabs .nav-link .tab-content span {
  font-size: 17px;
  color: #191919;
  transition: color 0.4s ease;
}

@media (max-width: 768px) {
  .features-tabs .nav-link .tab-content span {
    font-size: 12px;
  }
}

.features-tabs .nav-link:hover {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.features-tabs .nav-link:hover::before {
  opacity: 1;
}

.features-tabs .nav-link:hover .tab-icon {
  background: var(--contrast-color);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 80%);
}

.features-tabs .nav-link:hover .tab-icon i {
  color: var(--accent-color);
}

.features-tabs .nav-link:hover .tab-content h5,
.features-tabs .nav-link:hover .tab-content span {
  color: var(--contrast-color);
}

.features-tabs .nav-link.active {
  border-color: var(--accent-color);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.features-tabs .nav-link.active::before {
  opacity: 1;
}

.features-tabs .nav-link.active .tab-icon {
  background: var(--contrast-color);
}

.features-tabs .nav-link.active .tab-icon i {
  color: var(--accent-color);
}

.features-tabs .nav-link.active .tab-content h5,
.features-tabs .nav-link.active .tab-content span {
  color: var(--contrast-color);
}

.features-tabs .tab-content .tab-pane {
  padding: 40px 0 0;
}

@media (max-width: 768px) {
  .features-tabs .tab-content .tab-pane {
    padding: 20px 0;
  }
}

.features-tabs .content-wrapper {
  padding-right: 40px;
}

@media (max-width: 992px) {

}

.features-tabs .content-wrapper .icon-badge {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.features-tabs .content-wrapper .icon-badge i {
  font-size: 30px;
  color: var(--contrast-color);
}

.features-tabs .content-wrapper h3 {
      font-size: 35px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

@media (max-width: 768px) {
  .features-tabs .content-wrapper h3 {
    font-size: 24px;
  }
}

.features-tabs .content-wrapper p {
line-height: 30px;
  color: #fff;
  margin-bottom: 30px;
}

.features-tabs .content-wrapper .feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 35px;
}

@media (max-width: 576px) {
  .features-tabs .content-wrapper .feature-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.features-tabs .content-wrapper .feature-grid .feature-item {
      display: flex
;
    align-items: flex-start;
    gap: 12px;
}

.features-tabs .content-wrapper .feature-grid .feature-item i {
  font-size: 16px;
  color: var(--accent-color);
  flex-shrink: 0;
      margin-top: 6px;
}

.features-tabs .content-wrapper .feature-grid .feature-item span {
  font-size: 24px;
  color: var(--default-color);
  line-height: 1.4;
}

.features-tabs .content-wrapper .stats-row {
  display: flex;
  gap: 30px;
  margin-bottom: 35px;
}

@media (max-width: 576px) {
  .features-tabs .content-wrapper .stats-row {
    gap: 20px;
  }
}

.features-tabs .content-wrapper .stats-row .stat-item {
  text-align: center;
}

.features-tabs .content-wrapper .stats-row .stat-item .stat-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
}

@media (max-width: 576px) {
  .features-tabs .content-wrapper .stats-row .stat-item .stat-number {
    font-size: 20px;
  }
}

.features-tabs .content-wrapper .stats-row .stat-item .stat-label {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.features-tabs .content-wrapper .btn-primary {
  background: #f37b02;
  color: var(--contrast-color);
  padding: 15px 35px;
  border-radius: 10px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
  font-size: 18px;
}

.features-tabs .content-wrapper .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--contrast-color);
}

.features-tabs .content-wrapper .btn-primary:hover i {
  transform: translateX(5px);
}

.features-tabs .content-wrapper .btn-primary i {
  transition: transform 0.3s ease;
}

.features-tabs .visual-content {
  position: relative;
}

.features-tabs .visual-content .main-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.features-tabs .visual-content .main-image img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}

.features-tabs .visual-content .main-image:hover img {
  transform: scale(1.05);
}

.features-tabs .visual-content .floating-card {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: var(--surface-color);
  padding: 20px 25px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 80%);
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.6s forwards;
}

@media (max-width: 576px) {
  .features-tabs .visual-content .floating-card {
    bottom: 20px;
    left: 20px;
    padding: 15px 20px;
    gap: 10px;
  }
}

.features-tabs .visual-content .floating-card i {
  font-size: 28px;
  color: var(--accent-color);
}

@media (max-width: 576px) {
  .features-tabs .visual-content .floating-card i {
    font-size: 24px;
  }
}

.features-tabs .visual-content .floating-card .card-content span {
  display: block;
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.features-tabs .visual-content .floating-card .card-content strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--heading-color);
}

@media (max-width: 576px) {
  .features-tabs .visual-content .floating-card .card-content strong {
    font-size: 14px;
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  padding: 80px 0;
}

.services .intro-content .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.services .intro-content .section-badge i {
  font-size: 12px;
}

.services .intro-content .section-heading {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .services .intro-content .section-heading {
    font-size: 2.2rem;
  }
}

.services .intro-content .section-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2rem;
}

.services .intro-content .cta-button {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services .intro-content .cta-button:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.services .hero-visual {
  position: relative;
}

.services .hero-visual img {
  border-radius: 20px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}



.services .services-grid .service-card {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 15px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
  overflow: hidden;
}

.services .services-grid .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.services .services-grid .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px color-mix(in srgb, var(--default-color), transparent 80%);
}

.services .services-grid .service-card:hover::before {
  transform: scaleX(1);
}

.services .services-grid .service-card:hover .card-number span {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.services .services-grid .service-card .card-number {
  margin-bottom: 1.5rem;
}

.services .services-grid .service-card .card-number span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 15px;
  font-size: 1.5rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.services .services-grid .service-card .card-content .service-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.services .services-grid .service-card .card-content .service-title a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.services .services-grid .service-card .card-content .service-title a:hover {
  color: var(--accent-color);
}

.services .services-grid .service-card .card-content .service-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

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

  .services .intro-content {
    text-align: center;
    margin-bottom: 2rem;
  }

  .services .services-grid .service-card {
    padding: 1.5rem;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  position: relative;
  padding: 3rem;
  border-radius: 1rem;
  overflow: hidden;
}

.call-to-action .badge {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 2rem;
}

.call-to-action h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.call-to-action p {
  font-size: 1.125rem;
  line-height: 1.6;
  opacity: 0.9;
  color: #191919;
 
}

.call-to-action .features .feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: var(--surface-color);
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.call-to-action .features .feature-item:hover {
  transform: translateY(-2px);
}

.call-to-action .features .feature-item i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.call-to-action .features .feature-item span {
  font-weight: 500;
}

.call-to-action .cta-buttons .btn {
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  border-radius: 50px;
}

.call-to-action .cta-buttons .btn.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.call-to-action .cta-buttons .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

.call-to-action .cta-buttons .btn.btn-outline {
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  color: var(--accent-color);
}

.call-to-action .cta-buttons .btn.btn-outline:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.call-to-action .content-right {
  flex-shrink: 0;
  max-width: 100%;
  width: 450px;
}

.call-to-action .content-right img {
  width: 100%;
  height: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.call-to-action .content-right .floating-card {
  position: absolute;
  bottom: 2rem;
  right: -1rem;
  background: var(--surface-color);
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: float 3s ease-in-out infinite;
}

.call-to-action .content-right .floating-card .card-icon {
  width: 3rem;
  height: 3rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-to-action .content-right .floating-card .card-icon i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.call-to-action .content-right .floating-card .card-content {
  display: flex;
  flex-direction: column;
}

.call-to-action .content-right .floating-card .card-content .stats-number {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-color);
}

.call-to-action .content-right .floating-card .card-content .stats-text {
  font-size: 0.875rem;
  opacity: 0.8;
}

.call-to-action .decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.call-to-action .decoration .circle-1,
.call-to-action .decoration .circle-2 {
  position: absolute;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.call-to-action .decoration .circle-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
  opacity: 0.5;
}

.call-to-action .decoration .circle-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
  opacity: 0.3;
}

@media (max-width: 991.98px) {
  .call-to-action {
    padding: 2rem;
  }

  .call-to-action .content-right {
    width: 100%;
    margin-top: 2rem;
  }

  .call-to-action .content-right .floating-card {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: -3rem;
    margin-right: 1rem;
    z-index: 1;
  }
}

@keyframes float {

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

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

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  position: relative;
  overflow: hidden;
  /* Swiper Navigation */
  /* Swiper Pagination */
  /* Responsive Styles */
}

.testimonials .testimonial-slider {
  position: relative;
}

.testimonials .testimonial-slider .swiper-wrapper {
  height: auto !important;
}

.testimonials .testimonial-item {
  background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 2%) 100%);
  border-radius: 20px;
  padding: 0;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.4s ease;
  overflow: hidden;
  position: relative;
}

.testimonials .testimonial-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.testimonials .testimonial-item:hover {
  border-color: var(--accent-color);
}

.testimonials .testimonial-item:hover::before {
  transform: scaleX(1);
}

.testimonials .testimonial-item:hover .testimonial-header img {
  transform: scale(1.05);
}

.testimonials .testimonial-item:hover .quote-icon {
  color: var(--accent-color);
  transform: scale(1.1);
}

.testimonials .testimonial-header {
  position: relative;
  text-align: center;
  padding: 30px 30px 20px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--surface-color), var(--accent-color) 3%) 0%, var(--surface-color) 100%);
}

.testimonials .testimonial-header img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  margin-bottom: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-header .rating {
  display: flex;
  justify-content: center;
  gap: 3px;
}

.testimonials .testimonial-header .rating i {
  color: #ffc107;
  font-size: 0.9rem;
}

.testimonials .testimonial-body {
  padding: 0 30px 20px;
}

.testimonials .testimonial-body p {
  font-size: 1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  font-style: italic;
  text-align: center;
  position: relative;
}

.testimonials .testimonial-body p::before,
.testimonials .testimonial-body p::after {
  content: '"';
  font-size: 1.5rem;
  color: var(--accent-color);
  opacity: 0.6;
  font-family: serif;
  position: absolute;
}

.testimonials .testimonial-body p::before {
  top: -5px;
  left: -10px;
}

.testimonials .testimonial-body p::after {
  bottom: -20px;
  right: -5px;
}

.testimonials .testimonial-footer {
  padding: 20px 30px 30px;
  text-align: center;
  position: relative;
}

.testimonials .testimonial-footer h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0 0 5px;
}

.testimonials .testimonial-footer span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: block;
  margin-bottom: 15px;
}

.testimonials .testimonial-footer .quote-icon {
  position: absolute;
  bottom: 15px;
  right: 25px;
  color: color-mix(in srgb, var(--accent-color), transparent 60%);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.testimonials .swiper-navigation {
  position: relative;
  margin-top: 25px;
  display: flex;
  justify-content: flex-end;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
  position: static;
  width: 45px;
  height: 45px;
  margin: 0 10px;
  background: var(--accent-color);
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
  background: color-mix(in srgb, var(--accent-color), var(--heading-color) 20%);
  transform: scale(1.05);
}

.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
  font-size: 16px;
  font-weight: 600;
}

.testimonials .swiper-pagination {
  position: static;
  margin-top: 30px;
  text-align: center;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: color-mix(in srgb, var(--default-color), transparent 70%);
  opacity: 1;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.testimonials .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-color);
  transform: scale(1.2);
}

@media (max-width: 1199px) {
  .testimonials .testimonial-item .testimonial-header {
    padding: 25px 25px 15px;
  }

  .testimonials .testimonial-item .testimonial-header img {
    width: 70px;
    height: 70px;
  }

  .testimonials .testimonial-item .testimonial-body,
  .testimonials .testimonial-item .testimonial-footer {
    padding-left: 25px;
    padding-right: 25px;
  }
}



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

  .testimonials .testimonial-item .testimonial-header img {
    width: 60px;
    height: 60px;
  }

  .testimonials .testimonial-item .testimonial-header .rating i {
    font-size: 0.8rem;
  }

  .testimonials .testimonial-item .testimonial-body {
    padding: 0 20px 15px;
  }

  .testimonials .testimonial-item .testimonial-body p {
    font-size: 0.95rem;
  }

  .testimonials .testimonial-item .testimonial-footer {
    padding: 15px 20px 20px;
  }

  .testimonials .testimonial-item .testimonial-footer h5 {
    font-size: 1rem;
  }

  .testimonials .testimonial-item .testimonial-footer span {
    font-size: 0.8rem;
  }

  .testimonials .testimonial-item .testimonial-footer .quote-icon {
    font-size: 1.3rem;
    bottom: 10px;
    right: 15px;
  }

  .testimonials .swiper-button-prev,
  .testimonials .swiper-button-next {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .testimonials .swiper-button-prev::after,
  .testimonials .swiper-button-next::after {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .testimonials .testimonial-slider {
    padding-bottom: 30px;
  }

  .testimonials .testimonial-item .testimonial-header {
    padding: 15px 15px 10px;
  }

  .testimonials .testimonial-item .testimonial-header img {
    width: 55px;
    height: 55px;
  }

  .testimonials .testimonial-item .testimonial-body {
    padding: 0 15px 10px;
  }

  .testimonials .testimonial-item .testimonial-body p {
    font-size: 0.9rem;
  }

  .testimonials .testimonial-item .testimonial-footer {
    padding: 10px 15px 15px;
  }

  .testimonials .testimonial-item .testimonial-footer h5 {
    font-size: 0.95rem;
  }

  .testimonials .testimonial-item .testimonial-footer .quote-icon {
    font-size: 1.2rem;
  }

  .testimonials .swiper-navigation {
    margin-top: 10px;
  }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .avatars {
  position: relative;
}

.stats .avatars img {
  width: 60px;
  height: 60px;
  border: 3px solid var(--accent-color);
  margin-right: -15px;
  transition: transform 0.3s ease;
}

.stats .avatars img:hover {
  transform: translateY(-5px);
  z-index: 2;
}

.stats .counters h2 {
  color: var(--heading-color);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.stats .counters h2 span {
  display: inline-block;
}

.stats .counters p {
  color:#191919;
  font-size: 18px;
  margin: 0;
  opacity: 0.9;
}


@media (max-width: 576px) {
  .stats {
    padding: 60px 0;
  }

  .stats .avatars {
    flex-wrap: wrap;
    justify-content: center;
  }

  .stats .avatars img {
    margin: 0 -8px;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
  --card-border-radius: 20px;
}

.pricing .row {
  justify-content: center;
}

.pricing .pricing-card {
  height: 100%;
  background: var(--surface-color);
  border-radius: var(--card-border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
  transition: all 0.4s;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

.pricing .pricing-card.popular {
  border: 2px solid var(--accent-color);
}

.pricing .pricing-card.popular .plan-cta .btn-plan {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .pricing-card.popular .plan-cta .btn-plan:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.pricing .pricing-card .popular-tag {
  position: absolute;
  top: 20px;
  right: -35px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 40px;
  transform: rotate(45deg);
}

.pricing .plan-header {
  padding: 30px 30px 0px;
  text-align: center;
}

.pricing .plan-header .plan-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.pricing .plan-header .plan-icon i {
  font-size: 28px;
  color: var(--accent-color);
}

.pricing .plan-header h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.pricing .plan-header p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.pricing .plan-pricing {
  text-align: center;
  padding: 0px 30px 0;
  position: relative;
}

.pricing .plan-pricing .currency {
  font-size: 24px;
  vertical-align: top;
  line-height: 1;
  color: #fff;
  font-weight: 600;
}

.pricing .plan-pricing .amount {
  font-size: 60px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.pricing .plan-pricing .period {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.pricing .plan-features {
  padding: 20px 30px;
  flex: 1;
}

.pricing .plan-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing .plan-features ul li {
        padding: 6px 0;
    font-size: 19px;
    display: flex
;
    align-items: center;
    gap: 11px;
    color: 
 color-mix(in srgb, var(--default-color), transparent 20%);
    text-align: left;
    line-height: 27px;

}

.pricing .plan-features ul li.disabled {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing .plan-features ul li i {
  font-size: 18px;
}

.pricing .plan-features ul li i.bi-check-circle-fill {

  color: var(--accent-color);
}

.pricing .plan-features ul li i.bi-x-circle-fill {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing .plan-cta {
  padding: 10px 30px 30px;
  text-align: center;
}

.pricing .plan-cta .btn-plan {
  display: inline-block;
  width: 100%;
  padding: 14px 32px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  color: var(--default-color);
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
}

.pricing .plan-cta .btn-plan:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 80%);
}



@media (max-width: 768px) {
  .pricing .plan-pricing .amount {
    font-size: 48px;
  }

  .pricing .plan-header {
    padding: 25px 20px 15px;
  }

  .pricing .plan-features,
  .pricing .plan-pricing,
  .pricing .plan-cta {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-card {
  height: 100%;
  padding: 40px;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  text-align: center;
}

.faq .faq-card i {
  font-size: 48px;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: block;
}

.faq .faq-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.faq .faq-card p {
  margin-bottom: 25px;

    line-height: 33px;
    color: #393939;
}

.faq .faq-card .btn-primary {
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 50px;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-card .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.faq .faq-list {
  padding: 0;
}

.faq .faq-list .faq-item {
  position: relative;
  margin-bottom: 25px;
  padding: 30px;
  background-color:#3c4954;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  cursor: pointer;
}

.faq .faq-list .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-list .faq-item h3 {
  font-size: 19px;
  line-height: 28px;
  
  padding-right: 40px;
  margin-bottom: 0;
  position: relative;
  cursor: pointer;
  color: #fff;
}

.faq .faq-list .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-list .faq-item .faq-content p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 24px;
  overflow: hidden;
}

.faq .faq-list .faq-item .faq-toggle {
  position: absolute;
  right: 30px;
  top: 30px;
 font-size: 14px;
  color: var(--accent-color);
  transition: transform 0.2s ease;
}

.faq .faq-list .faq-item.faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-list .faq-item.faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 15px;
}

.faq .faq-list .faq-item.faq-active .faq-toggle {
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .faq .faq-list .faq-item {
    padding: 20px;
  }

  .faq .faq-list .faq-item h3 {
    font-size: 16px;
    line-height: 24px;
  }

  .faq .faq-list .faq-item .faq-toggle {
    right: 20px;
    top: 20px;
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-header {
  margin-bottom: 50px;
}

.team .team-header h2 {
  position: relative;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.team .team-header h2:before {
  content: "";
  position: absolute;
  width: 70px;
  height: 4px;
  background: var(--accent-color);
  bottom: 0;
  left: 0;
}

.team .team-header p {
  font-size: 17px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  max-width: 600px;
}

.team .team-controls {
  display: flex;
  gap: 12px;
}

.team .team-controls .team-control-btn {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  color: var(--accent-color);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.team .team-controls .team-control-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.team .team-slider {
  padding: 10px 5px 40px;
}

.team .team-slider .swiper-wrapper {
  height: auto !important;
}

.team .team-member {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: var(--surface-color);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
}

.team .team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.team .team-member:hover .member-image .member-social {
  opacity: 1;
  bottom: 20px;
}

.team .team-member:hover .member-image:before {
  opacity: 0.8;
}

.team .team-member .member-image {
  position: relative;
  overflow: hidden;
}

.team .team-member .member-image:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 1;
}

.team .team-member .member-image img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.team .team-member .member-image .member-social {
  position: absolute;
  z-index: 2;
  display: flex;
  gap: 8px;
  justify-content: center;
  width: 100%;
  bottom: -30px;
  opacity: 0;
  transition: all 0.4s ease;
}

.team .team-member .member-image .member-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--contrast-color);
  border-radius: 50%;
  color: var(--accent-color);
  font-size: 15px;
  transition: all 0.3s ease;
}

.team .team-member .member-image .member-social a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.team .team-member .member-content {
  padding: 25px;
}

.team .team-member .member-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.team .team-member .member-content span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.team .team-member .member-content p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-info-section {
  height: 100%;
  margin-right: 35px;
}

.contact .contact-info-section .info-header {
  margin-bottom: 40px;
}

.contact .contact-info-section .info-header h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #393939;
  position: relative;
  display: inline-block;
}

.contact .contact-info-section .info-header h3:after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 50%));
  border-radius: 2px;
}

.contact .contact-info-section .info-header p {

  line-height: 1.7;
  color: #393939;
  margin-bottom: 0;
}

.contact .contact-info-section .contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-bottom: 40px;
}

.contact .contact-info-section .info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  border-radius: 15px;
  border: 1px solid #393939;
  transition: all 0.3s ease;
}

.contact .contact-info-section .info-item:hover {
  transform: translateX(10px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.contact .contact-info-section .info-item:hover .info-icon {
  background-color: #028fef;
}

.contact .contact-info-section .info-item:hover .info-icon i {
  color: #fff;
}

.contact .contact-info-section .info-item .info-icon {
  width: 55px;
  height: 55px;
  flex-shrink: 0;
  background-color: #ecf5ff;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.contact .contact-info-section .info-item .info-icon i {
  font-size: 24px;
  color: #028fef;
  transition: all 0.3s ease;
}

.contact .contact-info-section .info-item .info-content {
  flex: 1;
}

.contact .contact-info-section .info-item .info-content h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}
.contact .contact-info-section .info-item .info-content a {
  
  line-height: 1.6;
  color: #393939;
  margin-bottom: 0;
}
.contact .contact-info-section .info-item .info-content p {
  
  line-height: 1.6;
  color: #393939;
  margin-bottom: 0;
}

.contact .contact-info-section .social-contact {
  padding: 30px;
  background: var(--surface-color);
  border-radius: 20px;
  text-align: center;
}

.contact .contact-info-section .social-contact h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.contact .contact-info-section .social-contact .social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.contact .contact-info-section .social-contact .social-icons .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--surface-color);
  color: var(--accent-color);
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.contact .contact-info-section .social-contact .social-icons .social-icon:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.contact .contact-form-wrapper {
  background: #f2faff;
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 90%);
  border: none;
}

.contact .contact-form-wrapper .form-header {
  text-align: center;
  margin-bottom: 15px;
}

.contact .contact-form-wrapper .form-header h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #393939;
  text-align: left;
  width: 100%;
}

.contact .contact-form-wrapper .form-header p {
  
  line-height: 1.6;
  color: #393939;
  margin-bottom: 0;
  text-align: left;
}

.contact .contact-form-wrapper .php-email-form .form-label {
  
  color: #393939;
  margin-bottom: 8px;

}

.contact .contact-form-wrapper .php-email-form .form-control {
  height: 50px;
  padding: 12px 18px;
  border-radius: 12px;
     background: #fff;
    border: 1px solid #c3bebe;
  color:#393939;

  transition: all 0.3s ease;
}

.contact .contact-form-wrapper .php-email-form .form-control:focus {
  border-color: #c3bebe;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
  background-color:#fff;
  outline: none;
}

.contact .contact-form-wrapper .php-email-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.contact .contact-form-wrapper .php-email-form .message-textarea {
  height: 120px;
  resize: vertical;
  font-family: inherit;
}

.contact .contact-form-wrapper .php-email-form .submit-btn {
  width: 100%;
  background:linear-gradient(82deg, rgba(224, 85, 25, 1) 0%, rgba(237, 9, 85, 1) 100%);
  color: var(--contrast-color);
  border: none;
  padding: 18px 30px;
  border-radius: 15px;
  font-weight: 600;
  font-size: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact .contact-form-wrapper .php-email-form .submit-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
 color-mix(in srgb, var(--accent-color)
#e59d02
, #8b5cf6 30%) 0%, var(--accent-color) 100%);
  transition: left 0.5s ease;
}

.contact .contact-form-wrapper .php-email-form .submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .contact-form-wrapper .php-email-form .submit-btn:hover:before {
  left: 100%;
}

.contact .contact-form-wrapper .php-email-form .submit-btn:hover i {
  transform: translateX(5px);
}

.contact .contact-form-wrapper .php-email-form .submit-btn span {
  position: relative;
  z-index: 1;
}

.contact .contact-form-wrapper .php-email-form .submit-btn i {
  font-size: 18px;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

@media (max-width: 992px) {
  .contact .contact-info-section {
    margin-bottom: 40px;
  }

  .contact .contact-info-section .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .contact .contact-info-section .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact .contact-info-section .info-item {
    padding: 20px;
  }

  .contact .contact-info-section .info-item:hover {
    transform: translateY(-5px);
  }

  .contact .contact-form-wrapper {
    padding: 30px 25px;
  }

  .contact .contact-form-wrapper .form-header h3 {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-hero {
  position: relative;
  margin-bottom: 40px;
  border-radius: 12px;
  overflow: hidden;
}

.service-details .service-hero img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.service-details .service-hero .service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
}

.service-details .service-content .service-header {
  margin-bottom: 40px;
}

.service-details .service-content .service-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.service-details .service-content .service-header .service-intro {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.service-details .service-content h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--heading-color);
}

.service-details .service-features {
  margin-bottom: 50px;
}

.service-details .service-features .feature-item {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  background: var(--surface-color);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.service-details .service-features .feature-item:hover {
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 90%);
  transform: translateY(-2px);
}

.service-details .service-features .feature-item .feature-icon {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.service-details .service-features .feature-item .feature-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.service-details .service-features .feature-item .feature-content h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.service-details .service-features .feature-item .feature-content p {
  font-size: 14px;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.service-details .service-process {
  margin-bottom: 50px;
}

.service-details .service-process .process-steps .process-step {
  display: flex;
  margin-bottom: 30px;
  position: relative;
}

.service-details .service-process .process-steps .process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 60px;
  width: 2px;
  height: 40px;
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.service-details .service-process .process-steps .process-step .step-number {
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-right: 25px;
  flex-shrink: 0;
  font-size: 16px;
}

.service-details .service-process .process-steps .process-step .step-content h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.service-details .service-process .process-steps .process-step .step-content p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.service-details .service-gallery {
  margin-bottom: 30px;
}

.service-details .service-gallery img {
  transition: transform 0.3s ease;
}

.service-details .service-gallery img:hover {
  transform: scale(1.05);
}

.service-details .service-sidebar .service-menu {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .service-sidebar .service-menu h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--heading-color);
}

.service-details .service-sidebar .service-menu .menu-list .menu-item {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-details .service-sidebar .service-menu .menu-list .menu-item:last-child {
  border-bottom: none;
}

.service-details .service-sidebar .service-menu .menu-list .menu-item:hover,
.service-details .service-sidebar .service-menu .menu-list .menu-item.active {
  color: var(--accent-color);
  padding-left: 10px;
}

.service-details .service-sidebar .service-menu .menu-list .menu-item:hover i,
.service-details .service-sidebar .service-menu .menu-list .menu-item.active i {
  color: var(--accent-color);
}

.service-details .service-sidebar .service-menu .menu-list .menu-item i {
  margin-right: 12px;
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: color 0.3s ease;
}

.service-details .service-sidebar .service-menu .menu-list .menu-item span {
  font-weight: 500;
}

.service-details .service-sidebar .service-info {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .service-sidebar .service-info h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--heading-color);
}

.service-details .service-sidebar .service-info .info-list .info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .service-sidebar .service-info .info-list .info-item:last-child {
  border-bottom: none;
}

.service-details .service-sidebar .service-info .info-list .info-item .info-label {
  font-weight: 500;
  color: var(--default-color);
}

.service-details .service-sidebar .service-info .info-list .info-item .info-value {
  font-weight: 600;
  color: var(--accent-color);
}

.service-details .service-sidebar .contact-card {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
  padding: 30px;
  border-radius: 10px;
  color: var(--contrast-color);
}

.service-details .service-sidebar .contact-card .contact-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.service-details .service-sidebar .contact-card .contact-content p {
  margin-bottom: 20px;
  opacity: 0.9;
  font-size: 14px;
  line-height: 1.6;
}

.service-details .service-sidebar .contact-card .contact-content .contact-info {
  margin-bottom: 25px;
}

.service-details .service-sidebar .contact-card .contact-content .contact-info .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.service-details .service-sidebar .contact-card .contact-content .contact-info .contact-item i {
  margin-right: 10px;
  opacity: 0.8;
}

.service-details .service-sidebar .contact-card .contact-content .contact-info .contact-item span {
  font-size: 14px;
}

.service-details .service-sidebar .contact-card .contact-content .btn {
  background: var(--contrast-color);
  color: var(--accent-color);
  border: none;
  padding: 12px 25px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.service-details .service-sidebar .contact-card .contact-content .btn:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
  transform: translateY(-2px);
}
/******************Tania_10.07.2025***********/
.btninner{
     background: #0086ee;
    border-radius: 10px !important;
    color: #fff;
    font-size: 18px;
}
.btninner:hover{
   background: #0086ee;
    border-radius: 10px !important;
    color: #fff;
    font-size: 18px;
}
.btn_line{
  background: transparent;
  border:1px solid #0086ee;
  color: #0086ee;
}
.hero .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%;
}
.hero .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(--accent-color);
}
.hero .icon-box .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 20px;
}
.featuresection{
  background: #4397db;

}
.innerHeading{
  color: #fff;
    text-align: center;
    font-size: 45px !important;
}
.span1{
    color: #ffffff;
    font-weight: 800;
}
.iconimg{
  width: 20%;
}

/******************11.07.2025***********/
.span2{
  font-size: 20px;
}
.upper_footerarea{
  background: #9ecef1;
      float: left;
    width: 100%;
}
.textTestimonials{
  color: #191919;
  font-size: 18px;
}
.about_section2{
  background: url(../img/bg_1.webp) center top no-repeat;
  background-size: cover;
      float: left;
    width: 100%;
}
.tabMain_section{
  /* background: #686868; */
  background: #232d44;
  float: left;
    width: 100%;
}
.introimgarea{
  /* padding: 25px 0 0; */
}
.innerHeadingdark{
  color: #191919;
  font-weight: 600;
}
.introHeading h3{
  font-size: 35px;
  text-align: left;
  font-weight: 600;
  position: relative;
}
.introHeading h3:after {
   content: "";
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
   left: 0;
    top: -10px;
}
.introHeading p{
  color: #191919;
}
/******************15.07.2025***********/
.btn_line:hover{
background: #0086ee;
    color: #fff;
}
/************************16.07.2025************/
.innerbanner_section{
    height: 90vh;
    display: flex
;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
    background: url(../img/bg2.webp) center top no-repeat;
    float: left;
    width: 100%;
}
.heading_manin_inner_area{
  font-size: 45px;
  text-align: left;
  color: #191919;
  font-weight: 600;
}
.dropdownmenu_list img{

margin-right: 10px;
}
.inner_pageText{
  color: #191919;
  text-align: left;
  font-size: 28px;
  padding-top: 1%;
      font-size: 24px;
}
.spanText_blue{
      color: #0689d0;
    font-size: 76px;
        line-height: 66px;
}
.innerpagebtn{
    background: #ff4c11;
/* background: linear-gradient(82deg,rgba(224, 85, 25, 1) 0%, rgba(237, 9, 85, 1) 100%); */
    color: #fff;
    padding: 14px 30px;
    text-align: center;
    font-size: 20px;
    border-radius: 10px;
    margin-top: 2%;
    float: left;
}
.innerbanner_section img{
  width: 100%;
}
.about_section3{
  background-color: #222d33;
      width: 100%;
      float: left;
}
.innerHeadingdark2{
  color: #fff;
  text-align: left;
}
.list_innerpage{
  margin-top: 0 !important;
}
.about .features-list .featureIteminner{
 background-color: transparent;
    box-shadow: none;
    border: 1px solid #65686a;
}
.circle_icon{
 background: #1f2426;
    width: 80px;
    height: 80px;
    border-radius: 100px;
    margin-bottom: 25px;
}
.circle_icon i{
  text-align: center;
    padding: 24px;
}
.about .features-list .featureIteminner p{

  line-height: 30px;

}
.about .features-list .featureIteminner h5 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}
.divalternative{
  order: 2;
}
.innerfeatureimage{
 margin-top: 3%;
    margin-bottom: 0;
    box-shadow: 0px 1px 3px #7ea2f39e;
    border-radius: 15px;
    padding: 48px 15px;
}
.innerfeatureimage .intro-image img {
width: 90%;
}
.innerfeatureimage .introHeading{
  padding-left: 5%;
}
.innerfeatureimage .introHeading a{
    font-weight: 600;
    float: left;
    font-size: 20px;
    color: #0086ee;
}
.dropdownmenu_list p{
  margin-bottom: 0;
}
.dropdownmenu_list{
         box-shadow: 0px 0px 15px #0000003b;
     border-radius: 15px;
}
.menuText{
  font-size: 16px;
  float: left;
  text-align: left;
  color: #191919;
  margin-top: 5px;
  margin-bottom: 0;
}
.highlightportion{
  background: url(../img/highlight_bg.webp) center top no-repeat;
  padding: 5% 0;
  float: left;
  width: 100%;
  background-size: cover;
}
.highlightportion h2{
  font-size: 45px;
  color: #fff;
  font-weight: 700;
  text-align: center;
}
.highlightportion p{
  color: #fff;

  width: 60%;
  margin: 0 auto;
      text-align: center;
}
.highlightbtn_area{
  float: none;
  text-align: center;
  margin-top: 2%;
}
.highlightbtn_area a{
background: #ffffff;
    padding: 12px 23px;
    border-radius: 8px;
    color: #0064e8;
    font-size: 20px;
    font-weight: 600;
}

/*************************18.07.2025***************/
.innerbanner_section3{
  background: url(../img/bg3.webp) center top no-repeat;
      height: 65vh;

}
.textceneter{
  text-align: center;
}
.btnparea{
  float: none;
  text-align: center;
  width: 100%;
  padding-top: 2%;
}
.btnparea a{
  float: none;
}
.innerpagebox2{
 background: #096eb3;
    float: left;
    width:100%
}
.innerpagebox2 h4 a {
  color: #ffc700;
}
.icon_innerpagewhite i{
    font-size: 45px;
    margin-right: 25px;
}

/*****************21.07.2025****************/
.pricing_text{
  color: #393939;
    padding-top: 2%;
   font-size: 18px;
}
.pricing {
  padding-top: 30px;
}

.icontickcircle{
     color: #e59d02;
    font-size: 26px;
    font-weight: 600;
}
.featurespricing{
  float: left;
  text-align: center;
  width: 100%;
}
.innerbanner_section4{
  height: auto;
background: #c9eef2;
background: linear-gradient(356deg, rgba(201, 238, 242, 1) 0%, rgba(250, 250, 255, 1) 100%);
padding: 6% 0 3%;
}
.featurespricing .nav-tabs {
    /* border: 0; */
    background-color: 
 color-mix(in srgb, var(--default-color), transparent 96%);
    display: inline-flex
;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    padding: 6px;
    width: auto;
        border: none;
}
.featurespricing .nav-link {
    background-color: none;
    color: var(--heading-color);
    padding: 7px 23px;
    transition: 0.3s;
    border-radius: 10px;
    display: flex
;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 100%;
    border: 0;
    margin: 0;
}
.featurespricing .nav-link.active {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.priceTabArea{
  border: none;
}

/********************23.07.2025*************/
.featurespricing .section-title{
    padding-bottom: 20px;
} 
.featurespricing .nav-link h4{
 font-size: 18px;
 margin-bottom: 0;
}
.faq {
  float: left;
  width: 100%;
  padding: 4% 0;
}
.features {
  width: 100%;
  float: left;
}
.highlightportion2{
  background: url(../img/highlight_bg2.webp) center top no-repeat;
}
.contact {
  padding-top: 6%;
}

/*************************24.05.2025**********************/
.box_featureItem{
  background: #6e6e6e !important;
}
.feature.box_featureItem.feature-content h4{
  color: #fff;
}
/***************************28.05.2025***************/
.newservicebox{
  background: #fff !important;
}
.featureAboutpage .feature-item .feature-number{
    color: color-mix(in srgb, #5c7bff, #00000000 80%);
}

/***************************06.08.2025***********************/
.bookademoarea{
  float: left;
  width: 100%;
  padding-top: 0;
}
.innerbanner_bookademo{

  height: auto;
     padding: 3% 0;
  margin: 5% 0 0;
}
.btnBAD{
      background: #ff4c11 !important;
    color: #fff !important;
    margin-left: 6px !important;
    
}
.text_footermain{
  color: #fff;
}
.description p{
  color:#191919;
  font-size: 21px;
  line-height: 34px;
}
.description ul {
    margin-top: 0 !important;
}
.ulPrivacy li{
  color: #191919;
  font-size: 19px;
}
.privacyArea{
     padding: 3% 0;
    float: left;
    width: 100%;
}
.description a{
  color: #084bc9;
  
}
.titilePrivacy{
  font-size: 25px;
  
  padding-bottom: 12px;

}
/*************************************08.08.2025*************/
.dropdownmenu_list2{
        width: 240px !important;
        left: 0 !important;
}
/*************************************11.08.2025*************/


.innerbanner_section5{
    height: auto;
    padding-top: 8%;

}
.imgnoshadow{
  box-shadow: none !important;
}
.aiBannerArea{
  background: url(../img/ai_bg.webp) center top no-repeat;
  background-size: cover;
  margin-top: 92px;
  height: 88vh;
}
.bgnoborder{
  box-shadow: none;
  background: #ebebeb;
}
.textwhite{
  color: #fff;
      font-size: 60px;
}
.integration_box_area{
  padding: 3% 0;
  float: left;
  margin: 0 auto;
  width: 100%;

}
.box_integration img{
     width: 80px;
}
.innerintegration{
  background: #fff;
}
.intinput{
    margin-bottom: 10px;
    height: 48px;
    background: #eaffe1;
    border: 1px solid #b7b7b7;
}
.formint{
  width: 70%;
  margin-left: 25px;
}
.btnintegration{
  background: #0099ef;
  color: #fff;
  padding: 10px 15px;
  border-radius: 6px;
}
.btnintegration:hover{
    background: #0099ef;
  color: #fff;
}
.box_integration{
      border-radius: 10px;
    padding: 15px;
    border: 1px solid #c0b8b8;
    /* border-left: 5px solid #0086ee; */
    text-align: center;
        margin-bottom: 12px;
    
}
.featureintegrations{
  background: url(../img/bg_1.webp) center top no-repeat;
  background-size: cover;
}

.box_integration h3{
    color: #191919;
    font-size: 18px;
    padding-top: 6px;
}
.box_integration p{
  color: #191919;
}
.textinnerpage1{
  color: #191919 !important;
  text-align: center;
}
.featureIteminner .circle_icon img{
      width: 77px;
    padding: 13px;

}
.margintopgap{
  margin-top: 15px;
}
.featurecustom{
      background: #efefef;
}
.stretched-link{
  color: #ffc700;
}
.btnknowmore{
    background: #00adef;
    color: #fff;
    padding: 12px 18px;
    border-radius: 4px;
    margin-top: 10px;
    float: left;
}
.btnknowmore:hover{
  color: #fff;
}

/*********************************12.08.2025************************/
.dropdownmenunew{
  cursor: pointer;
}
.dropdownmenunew i{
  cursor: pointer;
}
.dropdownmenunew:hover{
  color: #0191ef;
}
.innerpagebtn:hover{
  color: #fff;
}
.homepagetitle2{
  padding-bottom: 20px;
}
.extremetextfooter{
    width: 100% !important;
    background: transparent !important;
    display: inline !important;
    font-size: 19px !important;
    padding: 0 30px !important;
    text-align: right !important;
    color: color-mix(in srgb, var(--default-color), transparent 30%) !important;
}
.extremetextfooter:hover{
color: #e59d02;
}

.extremetextfooter:hover{
  background: transparent !important;
}
.bordertopfooter{
     border-top: 1px solid #3e3c3c;
    padding: 15px 0 0;
}
.aiul li{
  font-size: 19px;
  
}
.aibottomText{
  margin-top: 20px;
}
.dropdown i{
color: #191919;
padding: 0 8px 0 0;
}
.dropdownmenunew{
  color: #191919;
font-size: 22px;
     padding-left: 10px;
          
}
.dropdownmenunew:hover{
  font-size: 22px;
}
.reportguru_area{
  background: #eee;

}
.pointwhyreport{
  color: #191919;
    font-size: 24px;
  float: left;
  text-align: left;
  
}
.pointwhyreport li{
  padding-bottom: 8px;
}
.sectionfeaturewhy{
  width: 100%;
  float: left;
  text-align: center;
}
.whytableimg{
  width: 130px;
}
.hero-title{
  text-align: center;
}
.hero-description{
  text-align: center;
}
.bannerimageArae{
  width: 100%;
  text-align: center;
  float: none;
  margin: 0 auto;
}
/****************Compare Tbale***************/
.tablecompare#solvvy_comparison_table tr td:last-child{
background: #93af5e;
    border-bottom: 1px solid #6f9822;
}
.tableai {
     display:flex;
     top:0px;
     z-index:10;
     padding-bottom:14px;
}
.tableai li {
     list-style:none;
     flex:1;
}
.tableai li:last-child {
     border-right:1px solid #dddddd1f;
}
 .tablecomparebtn {
     width:100%;
     border: 1px solid #dddddd1f;
     border-right:0;
     border-top:0;
     padding: 10px;
     background:#FFF;
     font-size:14px;
     font-weight:bold;
     height:60px;
     color:#999 
}
.tableai li.active button {
     background:#F5F5F5;
     color:#000;
}


.tablecompare {
     border-collapse:collapse;
     table-layout:fixed;
     width:100%;
}
.tablecompare th {
     /* background:#F5F5F5; */
     display:none;
}
.tablecompare td, th {
     height:53px 
}
.tablecompare td,th {
     border:1px solid #dddddd1f;
     padding:10px;
     empty-cells:show;
}
.tablecompare td,th {
     text-align:left;
}
.tablecompare td+td, th+th {
     text-align:left;
     display:none;
}
.tablecompare td.default {
     display:table-cell;
}
.tablecompare .bg-purple {
     border-top:3px solid #A32362;
}
.tablecompare .bg-blue {
     border-top:3px solid #0097CF;
}
.tablecompare .sep {
     background:#F5F5F5;
     font-weight:bold;
}
.tablecompare .txt-l {
     font-size:28px;
     font-weight:bold;
}
.tablecompare .txt-top {
     position:relative;
     top:-9px;
     left:-2px;
}
.tablecompare .tick {
     font-size:18px;
     color:#fff;
}
.tablecompare .hide {
     border:0;
     background:none;
}

/*********************18.08.2025***********/


.loader {
  margin:50px auto;
  --d:22px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  color: #0689d0;
  box-shadow: 
    calc(1*var(--d))      calc(0*var(--d))     0 0,
    calc(0.707*var(--d))  calc(0.707*var(--d)) 0 1px,
    calc(0*var(--d))      calc(1*var(--d))     0 2px,
    calc(-0.707*var(--d)) calc(0.707*var(--d)) 0 3px,
    calc(-1*var(--d))     calc(0*var(--d))     0 4px,
    calc(-0.707*var(--d)) calc(-0.707*var(--d))0 5px,
    calc(0*var(--d))      calc(-1*var(--d))    0 6px;
  animation: l27 1s infinite steps(8);
}
@keyframes l27 {
  100% {transform: rotate(1turn)}
}

/*********************21.08.2025***********/
.about .flist2{
  margin-top: 0;
}
.visualimg{
  border-radius: 15px;
  margin-bottom: 25px;
}
.rowinner2{
      display: flex
;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
.filternewsection{
  background: #eee;
     padding: 44px 0;
     float: left;
     width: 100%;
  
}
.midlecontentfilter .introHeading h2{

  text-align: center;
  margin-bottom: 0;

}
.midlecontentfilter .introHeading p{
  text-align: center;
  margin-bottom: 25px;
}


.midlecontentfilter{
  text-align: center;
  float: none;
  display: block;
}
.fsection2{
  float: left;
  width: 100%;
  background: #fff;
}
.iconlink1 {
  display: inherit !important;
      font-size: 1rem !important;
}




/*****************Data integration tab********/
.boxrequest{
      background: #90faff;
    padding: 18px;
}
.integrationreqst{
       /* font-size: 25px !important; */
    text-align: center;
    padding-bottom: 0;
    margin-bottom: 0;
}

.container .topic{
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.content input{
  display: none;
}

.content{
    display: flex
;
    justify-content: space-between;
    align-items: flex-start;
        margin-top: 45px;
  
}

.content .list{
  display: flex;
  flex-direction: column;
  position: relative;
  width: 20%;
  margin-right: 50px;
}

.content .list label{
  cursor: pointer;
  height: 60px;
  line-height: 60px;
  font-size: 22px;
  font-weight: 500;
  color: #191919;
  padding-left: 25px;
  transition: all 0.5s ease;
  z-index: 10;
}

#home:checked ~ .list label.home, #blog:checked ~ .list label.blog, #help:checked ~ .list label.help, #code:checked ~ .list label.code, #about:checked ~ .list label.about {
    color: #22272C;
    border: 1px solid #0689d0;
    border-radius: 12px;
}

.content .slider{
  position: absolute;
  left: 0;
  top: 0;
  height: 60px;
  width: 100%;
  border-radius: 12px;
  transition: all 0.5s ease;
  
  background: transparent;
  /* border: 1px solid #0689d0; */
}

#home:checked ~ .list .slider{
  top: 0;
}

#blog:checked ~ .list .slider{
  top: 60px;
}

#help:checked ~ .list .slider{
  top: 120px;
}

#code:checked ~ .list .slider{
  top: 180px;
}

#about:checked ~ .list .slider{
  top: 240px;
}

.content .text-content{
  width: 80%;
  height: 100%;
  color: rgba(255, 255, 255, 0.7);
}

.content .text{
  display: none;
}

.content .text .title{
  font-size: 25px;
  margin-bottom: 10px;
  font-weight: 500;
  color: #191919;
}

.container .text p{
  text-align: justify;
      color: #191919;
}

.content .text-content .home{
  display: block;
}

#home:checked ~ .text-content .home,
#blog:checked ~ .text-content .blog,
#help:checked ~ .text-content .help,
#code:checked ~ .text-content .code,
#about:checked ~ .text-content .about{
  display: block;
}

#blog:checked ~ .text-content .home,
#help:checked ~ .text-content .home,
#code:checked ~ .text-content .home,
#about:checked ~ .text-content .home{
  display: none;
}

.content .list label:hover{
 border: 2px solid #0689d0;
   border-radius: 12px; 
}


/*********************22.08.2025*******************/
.textwhiteAi{
  font-size: 26px;
  color: #fff;
}
.contentbox{
  margin-top: 0;
}
.formphoneinput{
  padding-left: 48px !important;
}
.iti__country-list li{
  color: #141414;
}
.intl-tel-input,
.iti{
  width: 100%;
}
.tabiconintegrate{
  color: #0689d0;
  padding-right: 10px;
}
.filterbottomSec .innerfeatureimage{
  box-shadow: none;
}
.filterbottomSec{
  float: left;

  width: 100%;
  background: #eff9eb;
}
.features .innerbgfeature .intro-image img{
  box-shadow: none;
}
.innerbgfeature{
  background: #edfdff;
}
/*************************25.08.2025*************************/
.middle_bookdemoheading{
  text-align: center;
}


 .tablecompare#solvvy_comparison_table th {
       color: #191919;
    font-size: 20px;
        /* background: #f8f5f5e0; */
  
}
 .tablecompare#solvvy_comparison_table th:first-child {
     background: transparent;
}
 .tablecompare#solvvy_comparison_table td {
        background: #cc2822;
        font-weight: 500;
        
    border-bottom: 1px solid #a20e09;
}
 .tablecompare#solvvy_comparison_table td {
     padding: 20px;
     font-size: 22px;
}
 .tablecompare#solvvy_comparison_table tr td:first-child {
     /* background: #0099ef;
     color: #fff;
     text-align: center; */
         background: #f1ecec;
    color: #191919;
    text-align: left;
    font-weight: 400;
        border-bottom: 1px solid #d2cbcb;
}
/*Just for Git repo link*/
 .github-link {
    top: 10px;
    right: 10px;
    z-index: 1000;
  }

  .github-link img {
    height: 40px; /* Adjust size as needed */
    width: 40px;
  }



/*********************08.09.2025***************/



.gapleftbtn{
  margin-left: 10px;
}
.textnormal_sales {
  color:#191919 ;
}
.text-muted{
   color: #191919 !important;
}

.normalsalesText{
  color: #191919;
  text-align: center;
}
.textaligncneter{
  text-align: center;
}
.featureGrid_sales .newservicebox {
    background: #edfbe6 !important;
    box-shadow: none;
}
.bluesmall_heading{
  color: #0272e5;
}
.textnormaLsales{
  margin-bottom: 0 !important;
}
.innerpagebtn_sales{
      background: #15803d;
 
}
.lightbg_salesArea{
  width: 100%;
  float: left;
  text-align: center;
}
.gradient_text {
  background: linear-gradient(to right, #024ce5, #027be5); /* cyan → blue */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* for Firefox */
  color: transparent;
}
.border_leftbg6 {
  width:6px; height:20px; background:linear-gradient(to bottom, #7c86ff, #155dfc); border-radius:3px;
}
.border_bottom_bg6  {
  height:6px; background:linear-gradient(to right, #7c86ff, #155dfc); border-radius:0 0 .5rem .5rem;
}
.border_leftbg5 {
  width:6px; height:20px; background:linear-gradient(to bottom, #fb64b6, #fb2c36); border-radius:3px;
}
.border_bottom_bg5  {
  height:6px; background:linear-gradient(to right, #fb64b6, #fb2c36); border-radius:0 0 .5rem .5rem;
}
.border_leftbg4 {
  width:6px; height:20px; background:linear-gradient(to bottom, #fdc700, #ff6900); border-radius:3px;
}
.border_bottom_bg4  {
  height:6px; background:linear-gradient(to right, #fdc700, #ff6900); border-radius:0 0 .5rem .5rem;
}
.border_leftbg3 {
  width:6px; height:20px; background:linear-gradient(to bottom, #c27aff, #f6339a); border-radius:3px;
}
.border_bottom_bg3  {
  height:6px; background:linear-gradient(to right, #c27aff, #f6339a); border-radius:0 0 .5rem .5rem;
}
.border_bottom_bg2{
    height:6px; background:linear-gradient(to right, #6af0ad, #05df72); border-radius:0 0 .5rem .5rem;
   
}
.border_leftbg2{
 width:6px; height:20px; background:linear-gradient(to bottom,  #6af0ad, #05df72); border-radius:3px;
}
.border_leftbg1 {
  width:6px; height:20px; background:linear-gradient(to bottom, cyan, blue); border-radius:3px;
}
.border_bottom_bg1  {
  height:6px; background:linear-gradient(to right, cyan, blue); border-radius:0 0 .5rem .5rem;
}
.textsales_smallheading{
      font-size: 1.5rem;
}
.text_middle_heading{
  font-size: 56px;
    
}
.salesBannerArea{
  background: #fff;
  height: auto;
}
.btnpara_sales a{
    background: #29f2ff;
    color: #000;
}
.btnpara_sales a ::last-child{
    background: #ffffff;
    color: #000;
}
.text-primary{
      font-size: 76px;
    text-align: center;
    color: #191919 !important;
}

.text-primary2{
      font-size: 38px;
    text-align: center;
    color: #191919 !important;
    font-weight: 600;
}
.text-secondary{
      max-width: 100%;
    text-align: center;
    color: #191919 !important;
    font-size: 27px;
     font-weight: 400;
}
/********************09.09.2025**************/

.logoarea{
  width: 10%;
}
  #headerbtns_mobile{
    display: none;
  }
  #headerbtns_desktop{
    display: block;
  }
.section_loader_sales{
  margin: 4% 0 0 0;
}
/***************Searchbox*******/
.headerSearchArea{
  /* position: relative; */
}
.search-box {
  position: relative;
}


.searchInput {
        position: absolute;
        right: 15%;
        width: 200px;
        top: 25%;
    }

   
.searchInput input{
     height: 42px;
    width: 100%;
    outline: none;
    border: none;
    border-radius: 5px;
    padding: 0 53px 0 8px;
    font-size: 18px;
      box-shadow: 3px 1px 0px 0px rgb(6 137 208);
    border-bottom: 2px solid #0580ef;
    border-radius: 7px;
}

.searchInput.active input{
  border-radius: 5px 5px 0 0;
}

.searchInput .resultBox{
  padding: 0;
  opacity: 0;
  pointer-events: none;
  max-height: 280px;
  overflow-y: auto;
}

.searchInput.active .resultBox{
    
    opacity: 1;
    pointer-events: auto;
    background: #ffffff;
    color: #191919;
    height: auto;
    box-shadow: 5px 5px 0px 0px #0689d070;
    border: 1px solid #0689d0;
}

.resultBox li{
  list-style: none;
  padding: 8px 12px;
  display: none;
  width: 100%;
  cursor: default;
  border-radius: 3px;
}

.searchInput.active .resultBox li{
  display: block;
     border-bottom: 1px solid #0580ef;
}
.resultBox li:hover{
  background: #e8feff;
}

.searchInput .icon{
 position: absolute;
    right: -5px;
    top: -8px;
    height: 55px;
    width: 55px;
    text-align: center;
    line-height: 55px;
    font-size: 20px;
    color: #0689d0;
    cursor: pointer;
}
@media (max-width: 1236px) {
  .searchInput{
            width: 190px;
  }
}
@media (min-width: 1399px) {
  .navmenu{
    margin-right: 14%;
  }
}
  @media (max-width: 1399px) {
  .searchInput {
       position: absolute;
    right: 18%;
    width: 200px;
    top: 25%;
}
}
@media (min-width: 1024px) {
    .container, .container-lg, .container-md, .container-sm {
        max-width:1000px;
    }
  }
@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1232px;
    }
}
@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1458px;
    }
}
@media (max-width: 1199px) {
      .searchInput {
        right: 21% !important;
        width: 174px !important;
        top: 26% !important;
    }
  .dropdownmenunew {
    color: #191919;
    font-size: 16px;
    padding-left: 6px;
}
.navmenu a, .navmenu a:focus {
        color: var(--nav-color);
        padding: 18px 3px;
        color: #191919;
        font-size: 16px !important;
}
.logo {
  width: 12%;
}
    .header .btn-getstarted {
        order: 2;
                margin: 0 0 0 0;
                padding: 6px 12px;
        font-size: 15px;
    }
    .header_btn_area{
      
    }
    .navmenu ul li{
      padding-top: 15px;
    }
    .hero .hero-title {
    font-size: 38px;
}
}

 @media (min-width:640px) {
     .tableai {
         display:none;
    }
     .tablecompare td,th {
         display:table-cell !important;
    }
    
    .tablecompare td+td, th+th {
         width: auto;
    }
}

@media (max-width: 1600px) {
.features-tabs .nav-link{
  padding: 25px 10px;
}
}

@media (max-width: 1366px) {
.spanText_blue {
    color: #0689d0;
    font-size: 58px;
}
.heading_manin_inner_area{
  font-size: 34px;
}
.inner_pageText{
  font-size: 20px;
      padding-top: 2%;
}
.highlightportion p{
  text-align: center;
}
.innerbanner_section{
          height: auto;
        padding: 8% 0 6%;
}
}

@media (max-width: 768px) {
  .bannerimg{
  width: 100%;
}
  .service-details .service-hero img {
    height: 250px;
  }

  .service-details .service-hero .service-badge {
    top: 15px;
    right: 15px;
    padding: 6px 15px;
    font-size: 12px;
  }

  .service-details .service-content .service-header h2 {
    font-size: 24px;
  }

  .service-details .feature-item {
    padding: 15px !important;
  }

  .service-details .feature-item .feature-icon {
    width: 50px !important;
    height: 50px !important;
    margin-right: 15px !important;
  }

  .service-details .feature-item .feature-icon i {
    font-size: 20px !important;
  }

  .service-details .service-sidebar {
    margin-top: 30px;
  }
}

@media (max-width: 991px) {
  .hero .hero-description{
    max-width: 100%;
  }
  .searchInput input {
    height: 42px;
    width: 100%;
    outline: none;
    border: none;
    border-radius: 5px;
    padding: 0 53px 0 8px;
    font-size: 18px;
    box-shadow: none;
    border-bottom: 2px solid #0580ef;
    border-radius: 0;
}
  .searchfaicon{
    font-size: 16px !important;
  }
  .searchInput .icon{
    top: -12px;
  }
      .searchInput {
        right: 14% !important;
        width: 163px !important;
        top: 20% !important;
    }
  .searchInput input {
    height: 35px;
  }
  #headerbtns_mobile{
 
            display: block;
        width: 88%;
        margin-left: 18px;
  }
  #headerbtns_desktop{
    display: none;
  }
  .footer .footer-links ul a{
    font-size: 14px;
  }
  .middle_bookdemoheading{
  text-align: left;
}
 .footer .footer-links ul li {
    padding: 10px 0 0;
 }
  .tableai{
    padding-bottom: 0;
  }
 
    .tablecompare td, th {
        width: 190px;
    }

    .pricing .pricing-card {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
   .features-tabs .nav-item {
    flex: none;
  }
    .features-tabs .content-wrapper {
    padding-right: 0;
    margin-bottom: 40px;
  }
   .features-tabs .nav-tabs {
    flex-direction: column;
    gap: 15px;
  }
   .about .image-wrapper {
    margin-bottom: 2rem;
  }

  .about .content {
    text-align: center;
  }

  .about .content h2:after {
    left: 50%;
    transform: translateX(-50%);
  }

  .about .signature-area {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .pricing .plan-features ul li{
    font-size: 18px;
    line-height: 25px;
  }
  .toppaddingBox{
    padding: 15px 0 !important;
  }
  .toppadding3{
    padding-top: 12px;
  }
  .features .feature-item .feature-content p{
    font-size: 20px;
  }
  p{
    font-size: 20px;
  }
  .filterbottomSec .introHeading{
    padding-top: 25px;
  }
  .innerfeatureimage{
        padding: 28px 0;
  }
  .filterfeatures{
    padding: 0;
  }
  .visualimg{
   width: 60%;
        display: block;
        text-align: center;
        float: none;
        margin: 0 auto 16px;
  }
  .textceneter{
    text-align: left;
  }
  .mobileimage{
    margin-top: 25px;
  }
  .section-title{
    padding-bottom: 12px;
  }
    .hero .hero-title {
        font-size: 28px;
        font-weight: 700;
    }
  .team .team-header {
    margin-bottom: 30px;
    text-align: center;
  }

  .team .team-header h2:before {
    left: 50%;
    transform: translateX(-50%);
  }

  .team .team-header p {
    margin: 0 auto;
  }

  .team .team-header .team-controls {
    margin-top: 30px;
    justify-content: center;
  }
  .features .intro-content {
    margin-bottom: 40px;
  }

  .features .intro-content h2 {
    font-size: 32px;
  }

  .features .intro-content .feature-stats {
    justify-content: center;
    gap: 25px;
  }

  .features .features-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
    gap: 25px;
  }
  .stats .row {
    text-align: center;
  }

  .stats .avatars {
    justify-content: center;
    margin-bottom: 40px;
  }

  .stats .counters h2 {
    font-size: 36px;
  }

  .stats .counters p {
    font-size: 16px;
  }

  .stats .counters .col-md-4 {
    margin-bottom: 30px;
  }

  .stats .counters .col-md-4:last-child {
    margin-bottom: 0;
  }
      .hero .hero-title {
        font-size: 34px;
        font-weight: 700;
    }
  .midlecontentfilter .introHeading p{
    text-align: left;
    margin-top: 10px;
  }
  .navmenu ul li {
       padding-top: 0; 
    }
  .section-title h2 {
    font-size: 30px !important;
    font-weight: 500;
    position: relative;
            padding-left: 12px;
}
  
  .box_integration{
    padding: 4%;
  }
  .box_integration h3{
    font-size: 16px;
  }
  .content .text-content{
    width: 100%;
            margin-top: 12px;
  }
  .classcol6{
           float: left;
        width: 50%;
        margin-top: 11px;
        margin-bottom: 15px !important;
  }
  .footer .copyright p {
    margin-bottom: 0;
    font-size: 11px !important;
  }

  .content .list label{
    padding: 0 6px;
    font-size: 18px;
  }
  .rowinner2 {
    display: flex
;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: center;
    align-items: center;
}
  #navmenu .dropdown ul {
    display: none;
  }
  #navmenu .dropdown.open ul {
    display: block;
  }
  .footer .footer-about .logo img {
    width: 100%;
}
  .integration_box_area {
    padding: 9% 0;
  }
  .content {
    display: flex
;
    justify-content: space-between;
    align-items: flex-start;

    flex-direction: column;
    margin-top: 15px;
}
.content .list {
        display: flex
;
        flex-direction: row !important;
        position: relative !important;
        width: 100% !important;
        margin-right: 0 !important;
        flex-wrap: wrap;
}
  .innerbanner_section img {
    
    margin-top: 20px;
}
  .inner_pageText{
    padding-top: 0;
    font-size: 20px;
  }
  .dropdownmenunew:hover{
  color: #e59d02;
}
  .dropdownmenu_list img {

    width: 38px;
}
.dropdownmenunew{
color: #191919;
        font-size: 20px;
    font-weight: 500;
    margin-left: 20px;
    margin-bottom: 10px;
    line-height: 40px;
    padding-left: 0;
}
.dropdown i{
    /* background: #000; */
    color: #191919;
    float: right;
    margin-right: 25px;
    font-size: 26px;
}
.navmenu .active i, .navmenu .active:focus i{
background: transparent;
color: #191919;
}
      
  .hero .hero-title{
    text-align: left;
  }
  .hero .hero-description{
          text-align: left;
        font-size: 22px !important;
  }
  .features-tabs .content-wrapper h3 {
font-size: 24px;
    }
    .features-tabs .nav-tabs{
      margin-bottom: 15px;
    }
  .ordercontent2{
    order: 2;
  }
 
  .innerfeatureimage .introHeading{
    padding-left: 0;
  }
  .innerHeadingdark {
    color: #191919 !important;
  }
  .textinnerpage1{
    text-align: left;
  }
  .contactmain{
    padding-bottom: 15px;
  }
  .contact{
    padding-top: 20% !important;
  }
  .features-tabs .content-wrapper .btn-primary {
    background: #f37b02;
    color: var(--contrast-color);
    padding: 8px 21px;
  }
  .features-tabs .tabs-wrapper{
    padding: 10px;
  }
      .features-tabs .nav-link .tab-content h5 {
        font-size: 24px;
    }
    .features-tabs .nav-link {
        padding: 10px 10px;
    }

  .about .btn {
    padding: 8px 14px;
 
    font-size: 16px;
  }
  .about .content h2:after{
    display: none;
  }
  .about .features-list .feature-item h5{
    text-align: left;
  }
  .about .features-list .feature-item p{
    text-align: left;

  }
  .features-tabs .content-wrapper .feature-grid .feature-item span{
    font-size: 20px;
  }
  .about .content h2{
    text-align: left;
    padding-bottom: 0;

    margin-bottom: 20px !important;
  }
  .hero .hero-actions .action-btn {
        width: 100%;
        max-width: 189px;
        justify-content: center;
        padding: 12px 27px;
    }
  .hero {
    padding-top: 25% !important;
  }
      .heading_manin_inner_area {
    font-size: 30px;
        text-align: left;
                margin-bottom: 13px;
    }
    .spanText_blue {
             color: #0689d0;
        font-size: 32px;
              line-height: 40px;
    }
    .innerpagebtn{
      font-size: 15px;
        padding: 7px 11px;
    }
    .whytableimg {
    width: 67px;
}
.newhomearea{
  padding-top: 0
}
        .innerbanner_section {
        height: auto;
              padding: 20% 0 6% !important;
    }
        .header .navmenu {
        order: 3;
    }
        .header_btn_area {
        order: 2;
    }
        #navmenu .dropdown.open ul {
        display: block;
        background: #fff;
        margin: 0;
                padding-top: 0;
    }
        .navmenu a, .navmenu a:focus {
  
        padding: 6px 20px;
        font-size: 20px !important;
        }
    .navmenu a, .navmenu a:focus{
              justify-content: flex-start;
    }
    .header .btn-getstarted, .header .btn-getstarted{
      font-size: 15px;

    }
    .header .btn-getstarted{
      margin: 0 5px;
              padding: 6px 3px;
                      margin-bottom: 10px;
    }
    .aiBannerArea{
    margin-top: 18%;
    padding: 15% 0 !important;
  }
        .header .logo {
        /* order: 1; */
        width: 38%;
    }
    .header .logo img {
    width: 72%;
    }
    .tablecompare#solvvy_comparison_table td {
    padding: 20px;
    font-size: 16px;
}
.innerHeading {
    color: #fff;
    text-align: left;
    font-size: 30px !important;
}
.introHeading h3 {
    font-size: 24px;
}
    .features .feature-item .feature-content h4 {
        font-size: 18px;
        font-weight: 500;
    }
    .pointwhyreport li{
      font-size: 16px;
    }
    .highlightportion h2 {
    font-size: 25px;
            text-align: left;
    }
    section, .section{
      padding: 30px 0;
    }
    .whyorder2{
      order: 2;
    }
        .highlightportion p {
        text-align: left;
        width: 100%;
        line-height: 25px;

        margin-bottom: 25px;
    }

}


@media (max-width:580px) {
.classcol3{
width: 33.33%;
float: left;

}
.stats .counters h2 {
        font-size: 26px;
    }
}
@media (max-width: 340px) {
    .header .btn-getstarted, .header .btn-getstarted {
        font-size: 12px;
    }
  }