:root{
    --primary-color: #000919;
    --secondary-color: #7b27d8;
    --btn-primary-color: #e74e53;
    --tertiary-color: #e80368;
    --quaternary-color: #ffbb2c;
    --quinary-color: #ff5828;
    --senary-color: #11dbcf;
    --body-color: #444444;
    --white-color: #fff;
    --black-color: #000;
    --gray-color: #848484;
    --light-gray-color: #efefef;
    --gray: #999;
    --dark-blue-gray: #3c6387;
    --light-gray: #eee;
    /* --light-gray-color: #f5f5f5; */
    --border-color: #e7e4fe;
    --hover-color: #ffffff17;
    --box-shadow-color: rgba(0, 0, 0, 0.1);
    --box-shadow-hover-color: rgba(0, 0, 0, 0.15);
    --link-color: #5846f9;
    --link-hover-color: #8577fb;
    --link-focus-color: #7b27d8;
    --link-active-color: #5846f9;
    --link-visited-color: #5846f9;
    --link-decoration: none;
    --link-hover-decoration: none;
    --link-focus-decoration: none;
    --link-active-decoration: none;
    --link-visited-decoration: none;
    --link-transition: 0.3s;
    --link-hover-transition: 0.3s;
    --link-focus-transition: 0.3s;
    --link-active-transition: 0.3s;
    --link-visited-transition: 0.3s;
    --link-underline: none;
    --link-hover-underline: none;
    --link-focus-underline: none;
    --link-active-underline: none;
    --link-visited-underline: none;
    --link-hover-underline-offset: 2px;
    --link-focus-underline-offset: 2px;
    --link-active-underline-offset: 2px;
    --link-visited-underline-offset: 2px;
    --link-underline-color: #5846f9;
    --link-hover-underline-color: #8577fb;
    --link-focus-underline-color: #7b27d8;
    --link-active-underline-color: #5846f9;
    --link-visited-underline-color: #5846f9;
    --custom-blue: #2c4964;
    --light-lavender: #f9f8ff;
    --light-blue-gray: #f2f6f9;
    --sky-blue: #47aeff;
    --peach: #ffa76e;
    --turquoise: #11dbcf;
    --light-purple: #b1a9fc;
    --green: #18d26e;
    --semi-transparent-black: rgba(0, 0, 0, 0.1);
    --custom-color: #000919;
    --semi-transparent-white: rgba(255, 255, 255, 0.7);
    --semi-transparent-gray: rgba(127, 137, 161, 0.25);
    --semi-transparent-dark-blue: rgba(28, 47, 65, 0.9);
    --semi-transparent-violet: rgba(116, 15, 214, 0.9);
    --semi-transparent-purple: rgba(86, 58, 250, 0.9);
    --semi-transparent-blue: rgba(88, 70, 249, 0.5);
    --semi-transparent-purple: rgba(123, 39, 216, 0.5);
    --semi-transparent-gray: rgba(214, 215, 216, 0.6);
    --light-transparency-white: rgba(255, 255, 255, 0.2);
    --very-light-transparency-white: rgba(255,255,255,0.1);
    
}
body {
    font-family: "Open Sans", sans-serif;
    color: var( --body-color);
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
}

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

.back-to-top i {
    font-size: 28px;
    color: var(--white-color);
    line-height: 0;
}

.back-to-top:hover {
    background: var( --gray-color);
    color: var(--white-color);
}

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: var(--white-color);
}

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

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

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

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    transition: all 0.5s;
    z-index: 997;
    padding: 20px 0;
}

#header.header-scrolled,
#header.header-inner-pages {
    background: var(--custom-color);
    padding: 12px 0;
}

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

#header .logo a {
    color: var(--white-color);
}

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

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

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

.navbar li {
    position: relative;
}

.navbar > ul > li {
    padding: 10px 0 10px 24px;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--semi-transparent-white);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
}

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

.navbar > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--white-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

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

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

.navbar .getstarted,
.navbar .getstarted:focus {
    padding: 8px 25px;
    margin-left: 0px;
    border-radius: 5px;
    color: var(--white-color);
    transition: 0.3s;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid var(--semi-transparent-white);
}
.navbar .signup,
.navbar .signup:focus {
    background-color: var(--white-color);
    padding: 8px 25px;
    margin-left: 0px;
    border-radius: 5px;
    color: var(--primary-color);
    transition: 0.3s;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
}

.navbar .signup:hover,
.navbar .signup:focus:hover {
    color: var(--primary-color);
    border-color: var(--white-color);
}
.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
    color: var(--white-color);
    border-color: var(--white-color);
}

.navbar .getstarted:before,
.navbar li:hover > .getstarted:before {
    visibility: hidden;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 24px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: var(--white-color);
    box-shadow: 0px 0px 30px var(--semi-transparent-gray);
    transition: 0.3s;
}

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

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    color: var(--custom-blue);
}

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

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

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

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

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

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

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

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: var(--white-color);
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

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

    .navbar ul {
        display: none;
    }
    .btn-demo{
        margin-left: 0px;
        margin-right: 0px;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: var(--semi-transparent-dark-blue);
    transition: 0.3s;
    z-index: 999;
}

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

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

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

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--custom-blue);
}

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

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

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

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: var(--white-color);
    box-shadow: 0px 0px 30px var(--semi-transparent-gray);
}

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

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

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

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

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
video::-webkit-media-controls-panel {
    display: none !important;
}
#hero {
    width: 100%;
    height: 100vh;
    background: 
    linear-gradient(0deg, var(--primary-color), var(--primary-color)),
    url("../img/hero-bg.jpg") center center no-repeat;
    background-size: cover;
}

#hero .container,
#hero .container-fluid {
    padding-top: 84px;
}

#hero h1 {
    margin: 0;
    font-size: 52px;
    font-weight: 700;
    line-height: 64px;
    color: var(--white-color);
}

#hero h2 {
    color: var(--semi-transparent-white);
    margin: 10px 0 0 0;
    font-size: 20px;
}

.btn-get-started {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px;
    border-radius: 5px;
    transition: 0.5s;
    margin-top: 30px;
    /* margin-left: 10px;
    margin-right: 10px; */
    background-color: var(--btn-primary-color);
    color: var(--white-color);
    border: 2px solid var(--white-color);
}

.btn-get-started:hover {
    background: var(--btn-primary-color);
    color: var(--white-color);
}
.cta-btn {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px;
    border-radius: 5px;
    transition: 0.5s;
    margin-top: 30px;
    margin-left: 10px;
    margin-right: 10px;
    background-color: var(--btn-primary-color);
    color: var(--white-color);
    border: 2px solid var(--white-color);
    /* width: 100%; */
}

.cta-btn:hover {
    background: var(--btn-primary-color);
    color: var(--white-color);
}
/* #counts .btn-get-started {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px;
    border-radius: 5px;
    transition: 0.5s;
    margin-top: 30px;
    color: var(--white-color);
    border: 2px solid var(--white-color);
    margin-left: 5px;
    margin-right: 5px;
}

#counts .btn-get-started:hover {
    background: var(--white-color);
    color: var(--primary-color);
} */

/* .count-first {
    margin-top: 120px;
} */

#hero .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 1200px) {
    #hero {
        background-attachment: fixed;
    }
    .count-first {
        margin-top: 100px; /* Adjust this value as needed */
    }
}

@media (max-width: 991px) {
    #hero {
        text-align: center;
    }

    #hero .container,
    #hero .container-fluid {
        padding-top: 68px;
    }

    #hero .animated {
        animation: none;
    }

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

    #hero .hero-img img {
        width: 50%;
    }
    .count-first {
        margin-top: 80px; /* Adjust this value as needed */
    }
    
}

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

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

    #hero .hero-img img {
        width: 60%;
    }
    .count-first {
        margin-top: 60px; /* Adjust this value as needed */
    }
   
}

@media (max-width: 575px) {
    #hero .hero-img img {
        width: 80%;
    }
    .count-first {
        margin-top: 40px; /* Adjust this value as needed */
    }
}

@media (max-width: 575px), (max-height: 600px) {
    #hero {
        height: auto;
    }
    .hero-vid{
        margin-top: 40px;
    }
    .count-first {
        margin-top: 10px; /* Adjust this value as needed */
    }
    .btn-demo{
        gap: 8px;
        margin-right: 0px;
        margin-left: 0px;
    }
    .btn-learn{
        background-color: var(--white-color);
        border: 1px solid var(--gray-color);
        color: var(--primary-color);
        padding: 11.35px 23px;
        margin-bottom: 30px;
        gap: 8px;
        margin-right: 0px;
        margin-left: 0px;
    }
    .full-width-bg {
        width: 100vw !important;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }
    .contact .php-email-form {
        border-radius: 5px;;
    }
    .hero-heading{
        margin-bottom: 20px;
    }
    .signup{
        display: none;
    }
    .cta-btn{
        /* width: 100%; */
        margin-left: 0px;
        margin-right: 0px;
    }
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

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

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

.section-bg {
    background-color: var(--light-lavender);
}

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

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

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

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

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
    padding: 120px 0;
}

.about .content h3 {
    font-weight: 600;
    font-size: 32px;
    color: var(--custom-blue);
}

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

.about .content ul li {
    padding-bottom: 10px;
}

.about .content ul i {
    font-size: 20px;
    padding-right: 4px;
    color: var(--primary-color);
}

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

.about .content .read-more {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 50px 10px 28px;
    border-radius: 5px;
    transition: 0.5s;
    color: var(--white-color);
    background: linear-gradient(45deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
}

.about .content .read-more:hover {
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.about .content .read-more i {
    font-size: 22px;
    position: absolute;
    right: 20px;
    top: 12px;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
@media (max-width: 992px) {
    #counts .btn-get-started {
        margin-bottom: 30px;
        bottom: 30px;
        position: relative;
        margin-top: 30px;
    }
    
}
@media (max-width: 576px) { /* adjust the breakpoint if needed */
    .custom-class {
      padding-left: 0;
      padding-right: 0;
    }
    .btn-demo-mob, .btn-learn-mob {
        margin-left: 0;
      }
  }
.counts {
    background: 
    linear-gradient(0deg, var(--primary-color), var(--primary-color)),
    url("../img/hero-bg.jpg") center center no-repeat;
    padding: 80px 0 60px 0;
}

.counts .counters span {
    font-size: 48px;
    display: block;
    color: var(--white-color);
    font-weight: 600;
    font-family: "Poppins", sans-serif;
}

.counts .counters p {
    padding: 0;
    margin: 0 0 20px 0;
    font-size: 15px;
    color: var(--semi-transparent-white);
}
/* Custom styles for hover effect */
.hover-box {
    transition: background-color 0.3s ease, color 0.3s ease;
    background-color: var(--white-color); 
    border-radius: 10px;
}

.icon-tick li{
    font-size: 16px;
}

.tick-icon::before {
    content: url("data:image/svg+xml,%3Csvg height='25px' width='25px' version='1.1' id='_x32_' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 512 512' xml:space='preserve' fill='%23000000'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'%3E%3C/g%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'%3E%3C/g%3E%3Cg id='SVGRepo_iconCarrier'%3E %3Cstyle type='text/css'%3E .st0%7Bfill:%23000000;%7D %3C/style%3E %3Cg%3E %3Cpath class='st0' d='M165.013,288.946h75.034c6.953,0,12.609,5.656,12.609,12.608v26.424c0,7.065,3.659,9.585,7.082,9.585 c2.106,0,4.451-0.936,6.78-2.702l90.964-69.014c3.416-2.589,5.297-6.087,5.297-9.844c0-3.762-1.881-7.259-5.297-9.849 l-90.964-69.014c-2.329-1.766-4.674-2.702-6.78-2.702c-3.424,0-7.082,2.519-7.082,9.584v26.425c0,6.952-5.656,12.608-12.609,12.608 h-75.034c-8.707,0-15.79,7.085-15.79,15.788v34.313C149.223,281.862,156.305,288.946,165.013,288.946z'%3E%3C/path%3E %3Cpath class='st0' d='M256,0C114.842,0,0.002,114.84,0.002,256S114.842,512,256,512c141.158,0,255.998-114.84,255.998-256 S397.158,0,256,0z M256,66.785c104.334,0,189.216,84.879,189.216,189.215S360.334,445.215,256,445.215S66.783,360.336,66.783,256 S151.667,66.785,256,66.785z'%3E%3C/path%3E %3C/g%3E %3C/g%3E%3C/svg%3E");
    display: inline-block;
    margin-right: 10px;
    font-size: 16px;
    vertical-align: middle;
}

.hover-box:hover {
    background-color: var(--hover-color);
    color: var(--white-color);
    cursor: pointer;
}

.hover-box:hover .icon i,
.hover-box:hover .service-heading,
.hover-box:hover p {
    color: var(--white-color);
}

/* Optional: Adjust icon styles if needed */
.hover-box:hover .icon-wrapper .icon i {
    color: var(--white-color) !important;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.full-width-bg {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
/* #services .container-fluid .full-width-bg {
    position: relative;
    overflow: hidden;
}

#services .container-fluid .full-width-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    background-color: var(--light-gray-color);
    z-index: -1;
} */

/* General styles */
/* .ad-block {
    background-color: #efefef;
    padding-left: 55px;
  }
  .ad-info {
    background-color: #efefef;
    padding-left: 25px;
    padding-bottom: 10px;
  }
  .ad-img {
    background-color: #efefef;
    padding: 0 25px;
  }
  .ad-img img {
    padding-right: 55px;
  } */
  
  /* Text styles */
  /* .ad-block .at-h3 h2 {
    font-size: 32px;
    font-weight: 500;
  } */
  
  /* Button styles */
  .btn-demo {
    background: var(--primary-color);
    border: 0;
    padding: 10px 24px;
    color: var(--white-color);
    transition: 0.4s;
    border-radius: 5px;
    margin-right: 8px;
    margin-left: 11px;
  }
  .btn-demo:hover {
    background: var(--white-color);
    color: var(--primary-color);
    /* border: 1px solid var(--primary-color); */
  }
  .btn-learn {
    background: var(--white-color);
    border: 0;
    padding: 10px 24px;
    color: var(--black-color);
    transition: 0.4s;
    border-radius: 5px;
    margin-right: 8px;
    margin-left: 8px;
  }
  /* .btn-learn:hover {
    border: 1px solid var(--primary-color);
  } */

  /* .btn-demo, .btn-learn {
    margin-right: 8px;
    margin-left: 8px;
  }
   */
  /* Responsive adjustments */
  /* @media (max-width: 1200px) {
    .ad-info ul.icon-tick {
      display: none;
    }
    .ad-info .buttons {
      display: none;
    }
  }
  @media (max-width: 768px) {
    .ad-block,
    .ad-info {
      padding-left: 15px;
    }
    .ad-img img {
      padding-right: 25px;
    }
  } */
  

.services .icon-box {
    text-align: center;
    padding: 70px 20px 80px 20px;
    transition: all ease-in-out 0.3s;
    background: var(--white-color);
}

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

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

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

.services .icon-box .icon svg path {
    transition: 0.5s;
    fill: var(--light-gray-color);
}

.services .icon-box h4 {
    font-weight: 600;
    margin: 10px 0 15px 0;
    font-size: 22px;
}

.services .icon-box h4 a {
    color: var(--custom-blue);
    transition: ease-in-out 0.3s;
}

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

.services .icon-box:hover {
    border-color: var(--white-color);
    box-shadow: 0px 0 25px 0  var(--semi-transparent-black);
}

.services .iconbox-blue i {
    color: var(--sky-blue);
}

.services .iconbox-blue:hover .icon i {
    color: var(--white-color);
}

.services .iconbox-blue:hover .icon path {
    fill: var(--sky-blue);
}

.services .iconbox-orange i {
    color: var(--peach);
}

.services .iconbox-orange:hover .icon i {
    color: var(--white-color);
}

.services .iconbox-orange:hover .icon path {
    fill: var(--peach);
}

.services .iconbox-pink i {
    color: var( --tertiary-color);
}

.services .iconbox-pink:hover .icon i {
    color: var(--white-color);
}

.services .iconbox-pink:hover .icon path {
    fill: var( --tertiary-color);
}

.services .iconbox-yellow i {
    color: var(--quaternary-color);
}

.services .iconbox-yellow:hover .icon i {
    color: var(--white-color);
}

.services .iconbox-yellow:hover .icon path {
    fill: var(--quaternary-color);
}

.services .iconbox-red i {
    color: var(--quinary-color);
}

.services .iconbox-red:hover .icon i {
    color: var(--white-color);
}

.services .iconbox-red:hover .icon path {
    fill: var(--quinary-color);
}

.services .iconbox-teal i {
    color:  var(--turquoise);
}

.services .iconbox-teal:hover .icon i {
    color: var(--white-color);
}

.services .iconbox-teal:hover .icon path {
    fill:  var(--turquoise);
}

.services .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.services .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--white-color);
    opacity: 1;
    border: 1px solid var(--primary-color);
}

.services .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}

.carousel-item {
    transition: transform 0.5s ease;
}

.carousel-indicators li::before {
    content: "";
}
  
.carousel-indicators li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background:transparent;
    margin: 0 5px;
    margin-top: 20px;
    display: inline-block;
    border: 1px solid var(--primary-color);
}
.carousel-indicators .active {
    background-color: var(--primary-color);
}

.mob-ul li{
    font-size: 14px; 
    font-weight:400;
    /* line-height: 21px; */
}
.mob-tick::before{
    content: url("data:image/svg+xml,%3Csvg height='20px' width='20px' version='1.1' id='_x32_' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 512 512' xml:space='preserve' fill='%23000000'%3E%3Cg id='SVGRepo_bgCarrier' stroke-width='0'%3E%3C/g%3E%3Cg id='SVGRepo_tracerCarrier' stroke-linecap='round' stroke-linejoin='round'%3E%3C/g%3E%3Cg id='SVGRepo_iconCarrier'%3E %3Cstyle type='text/css'%3E .st0%7Bfill:%23000000;%7D %3C/style%3E %3Cg%3E %3Cpath class='st0' d='M165.013,288.946h75.034c6.953,0,12.609,5.656,12.609,12.608v26.424c0,7.065,3.659,9.585,7.082,9.585 c2.106,0,4.451-0.936,6.78-2.702l90.964-69.014c3.416-2.589,5.297-6.087,5.297-9.844c0-3.762-1.881-7.259-5.297-9.849 l-90.964-69.014c-2.329-1.766-4.674-2.702-6.78-2.702c-3.424,0-7.082,2.519-7.082,9.584v26.425c0,6.952-5.656,12.608-12.609,12.608 h-75.034c-8.707,0-15.79,7.085-15.79,15.788v34.313C149.223,281.862,156.305,288.946,165.013,288.946z'%3E%3C/path%3E %3Cpath class='st0' d='M256,0C114.842,0,0.002,114.84,0.002,256S114.842,512,256,512c141.158,0,255.998-114.84,255.998-256 S397.158,0,256,0z M256,66.785c104.334,0,189.216,84.879,189.216,189.215S360.334,445.215,256,445.215S66.783,360.336,66.783,256 S151.667,66.785,256,66.785z'%3E%3C/path%3E %3C/g%3E %3C/g%3E%3C/svg%3E");
    display: inline-block;
    margin-right: 10px;
    font-size: 10px;
    vertical-align: middle;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 5px 0 10px 60px;
}

.features .icon-box i {
    font-size: 48px;
    float: left;
    color: var(--primary-color);
}

.features .icon-box p {
    font-size: 15px;
    color: var(--gray-color);
    margin-left: 60px;
}

.features .image {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 400px;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item {
    box-sizing: content-box;
    min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50%;
    margin: -40px 0 0 40px;
    position: relative;
    z-index: 2;
    border: 6px solid var(--white-color);
    box-shadow: 0px 2px 15px var( --semi-transparent-black);
}

.testimonials .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 45px;
    color: var(--custom-blue);
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: var(--gray);
    margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: var(--light-purple);
    font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 15px 0 15px;
    padding: 20px 20px 60px 20px;
    background: var(--white-color);
    position: relative;
    border-radius: 6px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0px 20px 0 var( --semi-transparent-black);
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--white-color);
    opacity: 1;
    border: 1px solid var(--primary-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}

@media (max-width: 767px) {
    .testimonials {
        margin: 30px 10px;
    }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
/* .portfolio .portfolio-item {
    margin-bottom: 30px;
}

.portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 25px auto;
    list-style: none;
    text-align: center;
    border-radius: 50px;
    padding: 2px 15px;
}

.portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: var( --body-color);
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
    border-radius: 5px;
    font-family: "Poppins", sans-serif;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
    color: var(--white-color);
    background: var(--primary-color);
}

.portfolio #portfolio-flters li:last-child {
    margin-right: 0;
}

.portfolio .portfolio-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.portfolio .portfolio-wrap::before {
    content: "";
    background: rgba(88, 70, 249, 0.8);
    position: absolute;
    left: 30px;
    right: 30px;
    top: 30px;
    bottom: 30px;
    transition: all ease-in-out 0.3s;
    z-index: 2;
    opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-info {
    opacity: 0;
    position: absolute;
    top: 10%;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 3;
    transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 20px;
    color: var(--white-color);
    font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
    color: var(--white-color);
    font-size: 14px;
    text-transform: uppercase;
}

.portfolio .portfolio-wrap .portfolio-links {
    opacity: 0;
    left: 0;
    right: 0;
    bottom: 10%;
    text-align: center;
    z-index: 3;
    position: absolute;
    transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 2px;
    font-size: 28px;
    display: inline-block;
    transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
    color: var(--white-color);
}

.portfolio .portfolio-wrap:hover::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
    opacity: 1;
    top: calc(50% - 48px);
}

.portfolio .portfolio-wrap:hover .portfolio-links {
    opacity: 1;
    bottom: calc(50% - 50px);
} */

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
/* .portfolio-details {
    padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.portfolio-details
    .portfolio-details-slider
    .swiper-pagination
    .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--white-color);
    opacity: 1;
    border: 1px solid var(--primary-color);
}

.portfolio-details
    .portfolio-details-slider
    .swiper-pagination
    .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}

.portfolio-details .portfolio-info {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(44, 73, 100, 0.08);
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
    margin-top: 10px;
}

.portfolio-details .portfolio-description {
    padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
} */

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
/* .pricing .box {
    padding: 20px;
    background: var(--white-color);
    text-align: center;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 2px 15px var( --semi-transparent-black)
}

.pricing h3 {
    font-weight: 400;
    margin: -20px -20px 20px -20px;
    padding: 20px 15px;
    font-size: 16px;
    font-weight: 600;
    color: var(--custom-blue);
    background: #f8f8f8;
}

.pricing h4 {
    font-size: 36px;
    color: var(--primary-color);
    font-weight: 600;
    font-family: "Roboto", sans-serif;
    margin-bottom: 20px;
}

.pricing h4 sup {
    font-size: 20px;
    top: -15px;
    left: -3px;
}

.pricing h4 span {
    color: #bababa;
    font-size: 16px;
    font-weight: 300;
}

.pricing ul {
    padding: 0;
    list-style: none;
    color: var( --body-color);
    text-align: center;
    line-height: 20px;
    font-size: 14px;
}

.pricing ul li {
    padding-bottom: 16px;
}

.pricing ul i {
    color: var(--primary-color);
    font-size: 18px;
    padding-right: 4px;
}

.pricing ul .na {
    color: #ccc;
    text-decoration: line-through;
}

.pricing .btn-wrap {
    margin: 20px -20px -20px -20px;
    padding: 20px 15px;
    background: #f8f8f8;
    text-align: center;
}

.pricing .btn-buy {
    background: linear-gradient(42deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: inline-block;
    padding: 10px 35px;
    border-radius: 4px;
    color: var(--white-color);
    transition: none;
    font-size: 15px;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
    transition: 0.3s;
}

.pricing .btn-buy:hover {
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.pricing .featured h3 {
    color: var(--white-color);
    background: var(--primary-color);
}

.pricing .advanced {
    width: 200px;
    position: absolute;
    top: 18px;
    right: -68px;
    transform: rotate(45deg);
    z-index: 1;
    font-size: 14px;
    padding: 1px 0 3px 0;
    background: var(--primary-color);
    color: var(--white-color);
} */

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
/* .faq {
    background: linear-gradient(42deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.faq .section-title h2,
.faq .section-title p {
    color: var(--white-color);
}

.faq .section-title h2::after {
    background: rgba(255, 255, 255, 0.6);
}

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

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

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

.faq .faq-list li {
    padding: 30px;
    background: var(--white-color);
    border-radius: 5px;
    position: relative;
}

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

.faq .faq-list .icon-help {
    font-size: 24px;
    position: absolute;
    right: 0;
    left: 20px;
    color: var(--link-hover-color);
}

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

.faq .faq-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
}

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

.faq .faq-list a.collapsed {
    color: var(--custom-blue);
}

.faq .faq-list a.collapsed:hover {
    color: var(--link-underline-color);
}

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

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

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

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
    color: var( --body-color);
    text-align: center;
    box-shadow: 0 0 30px var(--semi-transparent-gray);
    padding: 20px 0 30px 0;
    background: var(--white-color);
}

.contact .info-box i {
    font-size: 32px;
    color: var(--link-underline-color);
    border-radius: 50%;
    padding: 8px;
}

.contact .info-box h3 {
    font-size: 20px;
    color: var(--custom-blue);
    font-weight: 700;
    margin: 10px 0;
}

.contact .info-box p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.contact .php-email-form {
    box-shadow: 0 0 30px var(--semi-transparent-gray);
    padding: 30px;
    background: var(--white-color);
    border-radius: 5px;
}

/* .contact .php-email-form .error-message {
    display: none;
    color: var(--white-color);
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
} */

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

.contact .php-email-form .sent-message {
    display: none;
    color: var(--white-color);
    background: var(--green);
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: var(--white-color);
    text-align: center;
    padding: 15px;
}

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

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

/* .contact .php-email-form select option{
    font-weight: 200;
} */

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus ,
.contact .php-email-form select option:focus{
    border-color: var(--primary-color);
}

.contact .php-email-form input , .contact .php-email-form select{
    padding: 10px 15px;
}

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

.contact .php-email-form button[type="submit"] {
    background: var(--primary-color);
    border: 1px solid var(--white-color);
    padding: 10px 24px;
    color: var(--white-color);
    transition: 0.4s;
    border-radius: 5px;
}

.contact .php-email-form button[type="submit"]:hover {
    background: var( --white-color);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

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

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

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 15px 0;
    background: var(--light-blue-gray);
    min-height: 40px;
    margin-top: 85px;
}

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

.breadcrumbs h2 {
    font-size: 28px;
    font-weight: 300;
}

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

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

.breadcrumbs ol li + li::before {
    display: inline-block;
    padding-right: 10px;
    color: var(--dark-blue-gray);
    content: "/";
}

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

    .breadcrumbs ol li {
        display: inline-block;
    }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    color: var(--white-color);
    font-size: 14px;
    /* background: linear-gradient(
            45deg,
            var(--semi-transparent-purple) 0%,
            var(--semi-transparent-violet) 100%
        ),
        url("../img/hero-bg.jpg") center center no-repeat; */
        background: 
        linear-gradient(0deg, var(--primary-color), var(--primary-color)),
        url("../img/hero-bg.jpg") center center no-repeat;  
    background-size: cover;
}

#footer .footer-top {
    padding: 60px 0 30px 0;
    position: relative;
}

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

#footer .footer-top .footer-contact h3 {
    font-size: 28px;
    margin: 0 0 30px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 500;
    text-transform: uppercase;
}

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

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

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

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

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: var(--white-color);
    font-size: 18px;
    line-height: 1;
}

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

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

#footer .footer-top .footer-links ul a {
    color: var(--semi-transparent-white);
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    text-decoration: underline;
    color: var(--white-color);
}

#footer .footer-newsletter {
    font-size: 15px;
}

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

#footer .footer-newsletter form {
    margin-top: 30px;
    background: var(--white-color);
    padding: 6px 10px;
    position: relative;
    border-radius: 5px;
    text-align: left;
    border: 1px solid var(--white-color);
}

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

#footer .footer-newsletter form input[type="submit"] {
    position: absolute;
    top: -1px;
    right: -2px;
    bottom: -1px;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: var(--semi-transparent-purple);
    color: var(--white-color);
    transition: 0.3s;
    border-radius: 0 5px 5px 0;
    box-shadow: 0px 2px 15px var( --semi-transparent-black)
}

#footer .footer-newsletter form input[type="submit"]:hover {
    background: var(--link-underline-color);
}

/* #footer .copyright-wrap {
    border-top: 1px solid var(--link-hover-color);
} */

#footer .credits {
    padding-top: 5px;
    font-size: 13px;
    color: var(--white-color);
}

#footer .credits a {
    color: var(--white-color);
}

#footer .social-links a {
    font-size: 18px;
    display: inline-block;
    background: var(--very-light-transparency-white);
    color: var(--white-color);
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

#footer .social-links a:hover {
    background: var(--light-transparency-white);
    color: var(--white-color);
    text-decoration: none;
}
