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

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

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

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

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

:root{
    --theme-color-1: #071321;
    --theme-color-2: #52c2b9;
    --theme-color-3: #7835BD;

    --body-bg: #071321;
    --font-color: #8B97A6;
    --heading-color1: #ffffff;
    --heading-color2: #52c2b9;
    --font-white: #ffffff;
    --link-color: #1E7CF2;
    --border: 1px solid rgba(255, 255, 255, 0.2);
}

body{
    background-color: var(--body-bg);
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 25px;
    font-family: 'Inter-Regular';
    font-weight: normal;
    color: var(--font-color);
}


h1, h2, h3{
    color: var(--heading-color1);
    margin-bottom: 0;
    font-family: 'Inter-SemiBold';
    font-weight: normal;
}

h4, h5{
    color: var(--heading-color);
    margin-bottom: 0;
    font-family: 'Inter-SemiBold';
    font-weight: normal;
}

p{
    margin-bottom: 0;
}

a, a:hover, a:active, a:focus{
    color: inherit;
    text-decoration: none;
}

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

.theme-btn{
    border-radius: 6px;
    height: 48px;
    text-align: center;
    border: none;
    max-width: max-content;
    width: auto;
    padding:10px 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter-Medium';
    font-weight: normal;
}

.btn-main{
    color: #fff;
    background: var(--theme-color-2);
    transition: all .5s ease-out;
    white-space: nowrap;
}

.btn-main:hover{
    background-position: left bottom;
    color: #fff;
    background: #13ad78;
    transition: all .5s ease-out;
    box-shadow: 0px 1px 10px 0px rgb(33 20 77 / 15%);
}

.btn-secondary{
    color: #fff;
    background-color: var(--theme-color-5);
    transition: all .5s ease-out;
}

.btn-secondary:hover{
    background-position: left bottom;
    color: #fff;
    background-color: #5c12a9;
}

.btn-white{
    border: 1px solid var(--font-white);
    background-color: var(--font-white);
    color: #333;
    transition: all .5s ease-out;
    min-width: 100px;
}

.btn-white:hover{
    transition: all .5s ease-out;
    color: var(--font-white);
    background-color: var(--theme-color-2);
    border: 1px solid var(--theme-color-2);
    box-shadow: 0px 1px 10px 0px rgba(33 20 77 / 15%);
}

.navbar{
    position: absolute;
    width: 100%;
    z-index: 1030;
    left: 0;
    transition-duration: 0.5s;
    transition: all 0.35s ease;
} 

.navbar.fixed-top{
    position: fixed;
    background-color: var(--theme-color-1);
    transition-duration: 0.5s;
    transition: all 0.35s ease;
}


.navbar-dark .navbar-nav .nav-link{
    color: var(--heading-color1);
    font-family: 'Inter-Medium';
    font-weight: normal;
    height: 100%;
    position: relative;
    font-size: 14px;
}

.navbar-dark .navbar-nav .nav-item.active .nav-link{
    color: var(--theme-color-3);
}

.navbar-dark .navbar-brand {
    color: #fff;
    width: 150px;
}

.dropdown .nav-link:after{
    font-family: "Fontawesome"; 
	font-weight: 400;
	content: "\f107";
    margin-left: 5px;
    font-size: 13px;
}

.navbar-nav .nav-item{
    margin-right: 10px;
}

.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover{
    color: var(--theme-color-2);
}

@media (min-width: 768px) {
    .animate {
      animation-duration: 0.3s;
      -webkit-animation-duration: 0.3s;
      animation-fill-mode: both;
      -webkit-animation-fill-mode: both;
    }
}
  
@keyframes slideIn {
    0% {
      transform: translateY(1rem);
      opacity: 0;
    }
  
    100% {
      transform: translateY(0rem);
      opacity: 1;
    }
  
    0% {
      transform: translateY(1rem);
      opacity: 0;
    }
}
  
@-webkit-keyframes slideIn {
    0% {
      -webkit-transform: transform;
      -webkit-opacity: 0;
    }
  
    100% {
      -webkit-transform: translateY(0);
      -webkit-opacity: 1;
    }
  
    0% {
      -webkit-transform: translateY(1rem);
      -webkit-opacity: 0;
    }
}
  
.slideIn {
    -webkit-animation-name: slideIn;
    animation-name: slideIn;
}

.navbar{
    background: transparent;
    height: 80px;
    border-bottom: var(--border);
}

.dropdown-menu{
    min-width: 12rem;
}

.dropdown-menu li{
    margin: 5px 0px 5px 0px;
} 

.dropdown-menu li a{
    color: var(--heading-color1);
    font-size: 14px;
    font-family: 'Inter-Medium';
    font-weight: normal;
    transition: ease-in-out 0.3s;
}

.navbar .nav-item:hover .dropdown-menu{
    box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
    border: none;
    /* position: relative; */
    background-color: var(--theme-color-2);
}

.dropdown-menu li a:hover{
    color: var(--theme-color1);
    transition: ease-in-out 0.3s;
    margin-left: 5px;
    background-color: transparent;
}

.dropdown-menu{
    transition: ease-in-out 0.3s;
}

.policy-main-heading{
    font-size: 20px;
    margin-bottom: 20px;
}

.policy-description{
    margin-bottom: 20px;
}

.page-full-coming{
    width: 100%;
    height: 100vh;
    position: relative;
    display: inline-block;
    background-position: center;
    background-size: cover !important;
    background-repeat: no-repeat;
    /* background-image: url('../images/coming-soon-bg.jpg'); */
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/coming-soon-bg.jpg');
}
  
.page-coming-inner{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}
  
.page-coming-inner h2{
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--font-white);
}
  
.page-coming-inner p{
    margin-bottom: 20px;
    color: var(--font-white);
}
  
.soon-subscribe{
    width: 100%;
}
  
.soon-form-wrapper{
    position: relative;
    width: 100%;
}
  
.soon-input{
    width: 100%;
    height: 55px;
    border-radius: 35px;
    padding: 10px 15px;
    display: inline-block;
    border: none;
}
  
.soon-submit{
    background-color: var(--theme-color-2);
    border-radius: 35px;
    text-align: center;
    color: #fff;
    padding: 10px 10px;
    position: absolute;
    top: 5px;
    right: 5px;
    border: none;
    width: 135px;
}
  
.soon-counter-list{
    display: flex;
}
  
.soon-counter-list > div{
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 30px 8px 0px 8px;
    background-color: rgb(255 255 255 / 20%);
    flex-direction: column;
    color: var(--theme-color-3);
    font-family: 'Inter-Bold';
    font-weight: normal;
    font-size: 32px;
}
  
.soon-counter-list > div span{
    font-family: 'Inter-Regular';
    font-weight: normal;
    /* margin: 10px 0px; */
    color: var(--font-white);
    font-size: 14px;
}
  
.coming-soon .footer-heading {
    font-size: 20px;
    line-height: 24px;
    color: #fff;
}
  
.coming-soon .footer-social-list {
    margin-top: 20px;
}
  
.coming-soon .footer-social-list li {
    display: inline-block;
    margin-right: 20px;
}
  
.coming-soon .footer-social-list li a {
    display: inline-block;
    color: #fff;
}

.error-page{
    height: calc(100vh - 1px);
    display: inline-block;
    width: 100%;
}

.error-page-image{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-page-content{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.error-page-content h1{
  font-size: 120px;
  color: var(--theme-color-1);
}

.error-page-content h3{
  font-size: 40px;
  font-family: 'Inter-Bold';
  color: var(--theme-color-2);
}

.error-page-content p{
  font-size: 20px;
  margin: 20px 0px;
}

.faq .accordion-item{
    margin-bottom: 0px;
    border: transparent;
    background-color: transparent;
}

.faq .accordion-button{
    border: transparent;
}

.faq .accordion-button{
    border-radius: 0px !important;
    background-color: transparent;
    font-size: 14px;
    padding: 1.5rem 1rem;
    color: var(--font-white);
    /* border-bottom: var(--border); */
}

.faq .accordion-button:not(.collapsed){
    background-color: transparent;
    box-shadow: none;
    color: var(--font-white);
}

.faq .accordion-button span{
    margin-right: 10px;
}

.faq .accordion-body p span{
    margin-right: 10px;
}

.faq .accordion-button:not(.collapsed)::after{
    background-image: none;
    content: '\f068';
    font-family: Fontawesome;
    transform: none;
    color: var(--theme-color-2);
}

.faq .accordion-button::after{
    background-image: none;
    content: '\f067';
    font-family: Fontawesome;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--font-white);
}

.faq .accordion-button:focus{
    box-shadow: none;
}

.faq .accordion-body {
    padding: 1rem 1rem;
}

.faq .accordion-button:not(.collapsed){
    border-radius: 12px 12px 0px 0px !important;
    border: var(--border);
    border-bottom: transparent;
    background-color: #121D28;
}

.faq .accordion-collapse.collapse.show .accordion-body{
    border-radius: 0px 0px 12px 12px !important;
    border: var(--border) !important;
    border-top: transparent !important;
    background-color: #121D28 !important;
    padding-top: 0;
}


#backTop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: var(--theme-color-2);
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
    width: 50px;
    height: 50px;
    line-height: 18px;
}
  
#backTop:hover {
    background-color: var(--theme-color-2);
}

.section-heading-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
}

.section-main-heading{
    color: var(--heading-color1);
    font-size: 38px;
    line-height: 45px;
    margin-bottom: 20px;
    text-align: center;
}

.section-heading-description{
    text-align: center;
}

.section{
    padding: 60px 0px;
    position: relative;
}

/* the slides */
.slick-slide {
    margin: 0 10px;
}
  
/* the parent */
.slick-list {
    margin: 0 -10px;
}

.error-msg-contact{
    display: none;
    transition: ease-out 0.3s;
    opacity: 0;
}

.error-msg-contact-display{
    display: block;
    transition: ease-out 0.3s;
    opacity: 1;
    position: absolute;
    bottom: -8px;
    font-size: 10px;
    left:0;
    margin: 0;
    line-height: 0;
    color: red;
}

.success-msg-contact{
    display: none;
    transition: ease-out 0.3s;
}

.success-msg-contact-display{
    position: absolute;
    display: block;
    transition: ease-out 0.3s;
    padding: 13px;
    background: var(--theme-color-2);
    font-size: 14px;
    /* border-radius: 5px; */
    z-index: 10;
    bottom: 0;
    left: 50%;
    color: #fff;
    width: 265px;
    border-radius: 30px;
    top: 35%;
    transform: translate(-50%, -50%);
    height: 200px;
}

.success-msg-contact-display p{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    flex-direction: column;
}
  
.check-success-icon{
    padding: 10px 13px;
    color: #fff;
    background-color: var(--theme-color-1);
    border-radius: 50%;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    margin: 0;
    margin-bottom: 20px;
}

.success-msg p, .success-msg-display p{
    margin-bottom: 0;
}

.error-msg p, .error-msg-display p{
    margin-bottom: 0;
}

.header-btns{
    display: flex;
    align-items: center;
}

.login-btn{
    color: var(--font-white);
}

/* home page */

.main-content-wrapper{
    position: relative;
    display: inline-block;
    width: 100%;
}

.main-banner-container{
    width: 100%;
    position: relative;
    display: inline-block;
    height: auto;
    overflow: hidden;
    padding-top: 120px;
}

.main-banner-wrapper{
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.banner-small-heading{
    font-size: 16px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.banner-heading{
    font-size: 48px;
    margin-bottom: 20px;
    font-family: 'Inter-SemiBold';
}

.banner-heading span{
    color: var(--theme-color-2);
}

.banner-small-description{
    color: var(--font-white);
    margin-bottom: 20px;
}

.banner-btns{
    display: flex;
    align-items: center;
    margin-bottom: 20px
}

.banner-btns a{
    margin-right: 15px;
}

.banner-btns .btn-white i{
    margin-left: 10px;
}

.banner-note span{
    font-family: 'Inter-Medium';
    color: var(--font-white);
}

.main-banner-image{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-blurbg-small{
    position: absolute;
    right: -225px;
    top: 0;
    z-index: -1;
}

.banner-blurbg-small img{
    width: 80%;
}

.banner-blurbg-large{  
    position: absolute;
    right: 100px;
    top: 9rem;
    z-index: -1;
}

.banner-blurbg-large img{
    width: 70%;
}

.banner-heading span{
    -webkit-animation: colorchange 20s infinite alternate;
}

@-webkit-keyframes colorchange {

    0% {
      color: #62ffb8;
    }
  
    20% {
      color: #8e44ad;
    }
  
    40% {
      color: #d35400;
    }
   
    60% {
      color: #2980b9;
    }
    
    80% {
      color: #f1c40f;
    }
  
    100% {
      color: #2980b9;
    }

}

.search-bar-container{
    width: 100%;
    position: relative;
    margin-top: -3rem;
}

.search-bar-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
}

.search-bar-input{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 70px;
    background-color: rgba(22, 22, 22, 1);
    padding: 10px 20px;
    border-radius: 20px;
    border: 1px solid var(--theme-color-2);
    color: var(--font-white);
}

.search-bar-wrapper button{
    position: absolute;
    right: 15px;
    top: 11px;
}

.search-bar-input:hover, .search-bar-input:active, .search-bar-input:focus{
    border: 1px solid var(--theme-color-2);
    outline: none;
    box-shadow: none;
}

.partner{
    margin-top: 1rem;
}

.partner .slick-slide img{
    opacity: 0.7;
}

.partner-content-wrapper h4{
    font-size: 16px;
    text-align: center;
    margin: 20px 0px 35px 0px;
}

.partner-content-wrapper a{
    margin: auto;
}

.section-small-heading{
    font-size: 26px;
    color: var(--font-white);
    margin-bottom: 25px;
    font-family: 'Inter-SemiBold';
}

.about-content-list{
    margin: 20px 0px;
}

.about-content-list li{
    display: flex;
    align-items: baseline;
    margin-bottom: 15px;
}

.about-content-list li i{
    color: var(--link-color);
    margin-right: 15px;
}

.about-content-list li p{
    color: var(--font-white);
    font-family: 'Inter-Medium';
}

/* .section.about{
    overflow: hidden;
} */

.about-blurbg-img{
    position: absolute;
    left: -7rem;
    display: inline-block;
    z-index: -1;
    bottom: -3rem;
}

.howto-card{
    width: 100%;
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
    background-color: #14202D;
    border-radius: 30px;
    padding: 25px;
}

.howto-card h3{
    font-size: 20px;
    margin-bottom: 20px;
}

.howto-card p{
    padding-right: 2rem;
}

.howto-count{
    position: absolute;
    right: 10px;
    font-size: 80px;
    bottom: 50px;
    font-family: LondrinaShadow-Regular;
}

.howto-blurbg-img{
    position: absolute;
    right: 0;
    display: inline-block;
    z-index: -1;
    bottom: -5rem;
    width: auto;
}

.infocard-container{
    width: 100%;
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    border: var(--border);
}

.infocard-image-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 100%;
}

.infocard-image-wrapper img{
    width: 100%;
    height: 100%;
    border-radius: 0px 30px 30px 0px;
    object-fit: cover;
}

.infocard-content-wrapper{
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.infocard-content-wrapper h3{
    margin-bottom: 20px;
    font-size: 28px;
    color: var(--theme-color-2);
}

.infocard-content-wrapper p{
    margin-bottom: 20px;
}

.infocard-blurbg-img{
    position: absolute;
    left: 58%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0.5;
}

.ictwo .infocard-image-wrapper img{
    border-radius: 30px 0px 0px 30px;
}


.ictwo .infocard-blurbg-img{
    left: 38%;
}

.ai-images .nav-pills{
    width: fit-content;
    margin: auto;
    padding: 13px 30px;
    background-color: #161616;
    border: var(--border);
    border-radius: 50px;
}

.ai-images .nav-pills .nav-link.active, .ai-images .nav-pills .show>.nav-link{
    background-color: var(--heading-color2);
    border-radius: 30px;
}

.ai-images .nav-pills .nav-link{
    color: var(--font-white);
    border-radius: 30px;
}

.ai-images-info-text{
    text-align: center;
}

.ai-image{
    width: 100%;
    height: 250px;
    border-radius: 20px;
    border: var(--border);
    position: relative;
    display: inline-block;
}

.ai-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.ai-images .tab-content{
    padding-top: 3rem;
}

.btn-secondary{
    background-color: var(--theme-color-3);
    margin: auto;
    margin-top: 2rem;
}

.occasion-card{
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 10px;
}

.occasion-card img{
    width: 50px;
}

.occasion-card h3{
    font-size: 20px;
    margin: 20px 0px;
    text-align: center;
    color: var(--font-white);
}

.occasion-blurbg-img{
    position: absolute;
    right: 0;
    display: inline-block;
    z-index: -1;
    bottom: 4rem;
    width: auto;
}

.testimonial-card{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 100%;
    border: var(--border);
    background-color: #121D28;
    border-radius: 30px;
    padding: 25px;
}

.testimonial-author-info{
    display: flex;
    align-items: center;
}

.tai-image{
    width: 70px;
    min-width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-right: 15px;
}

.tai-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.tai-info h4{
    font-size: 18px;
    color: var(--font-white);
    margin-bottom: 10px;
}

.testimonial-review{
    margin-top: 15px;
}

.testimonial-review h3{
    font-size: 20px;
    color: var(--font-white);
    margin-bottom: 20px;
}

.testimonial-blurbg-img{
    position: absolute;
    left: 3rem;
    display: inline-block;
    z-index: -1;
    top: 8rem;
    width: auto;
}

.blog-card{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 100%;
}

.blog-image{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 240px;
}

.blog-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.blog-info{
    width: 100%;
    height: 100%;
    background-color: var(--font-white);
    padding: 20px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.blog-info-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-info-top h4{
    text-transform: uppercase;
    color: var(--link-color);
    font-size: 12px;
}

.blog-info-bottom a h3{
    font-size: 18px;
    color: #333;
    margin: 15px 0px;
}

footer{
    position: relative;
    display: inline-block;
    width: 100%;
    margin-top: 3rem;
}

.footer-about a h3{
    font-size: 32px;
    margin-bottom: 20px;
}

.footer-about p{
    color: var(--font-white);
}

.footer-links{
    position: relative;
    display: inline-block;
    width: 100%;
}

.footer-heading{
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: var(--font-white);
}

.footer-links ul li{
    margin-bottom: 15px;
}

.footer-conatct ul li{
    margin-bottom: 10px;
}

.footer-conatct ul{
    margin-top: 20px;
}

.footer-conatct ul li a{
    color: var(--link-color);
}

.footer-bottom{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0px;
    border-top: var(--border);
    margin-top: 25px;
}

.footer-bottom p span{
    color: var(--font-white);
}

.footer-bottom ul li a{
    width: 35px;
    height: 35px;
    border-radius: 10px;
    border: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #121D28;
    color: var(--heading-color2);
}

.footer-bottom ul li{
    display: inline-block;
    margin-left: 10px;
}

.blog-blurbg-img{
    position: absolute;
    right: 0rem;
    display: inline-block;
    z-index: -1;
    top: 8rem;
    width: auto;
}

.page-banner-container{
    width: 100%;
    height: 300px;
    position: relative;
    display: inline-block;
    background-image: url('../images/page-banner.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 80px;
}

.page-banner-wrapper{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    height: 100%;
    flex-direction: column;
}

.page-banner-wrapper h1{
    font-size: 28px;
}

.page-banner-wrapper ul{
    margin-top: 10px;
}

.page-banner-wrapper ul li{
    display: inline-block;
    padding-right: 10px;
}

.inspire-card{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 20px;
    border: var(--border);
    border-radius: 12px;
}

.inspire-icon{
    width: 64px;
    height: 64px;
    min-width: 64px;
    margin-right: 15px;
}

.inspire-icon img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inspire-info h2{
    font-size: 20px;
    margin-bottom: 10px;
}

.about-content-wrapper.aboutpage .about-content-list p{
    color: var(--font-color);
}

.about-content-wrapper.aboutpage .about-content-list p span{
    color: var(--font-white);
}

.works-content-wrapper{
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.works-content-wrapper h2{
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--font-white);
}

.platforms{
    width: 100%;
    position: relative;
    display: inline-block;
    background-image: url('../images/platform.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.platforms-content-wrapper h2{
    font-size: 32px;
    margin-bottom: 20px;
}

.platforms-content-wrapper ul li{
    margin-bottom: 15px;
    display: inline-block;
}

.platforms-content-wrapper p{
    color: var(--font-white);
    margin-bottom: 25px;
}

.platforms-content-wrapper ul li a img{
    width: 160px;
}

.contact-form-group{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.contact-form-input{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 10px 15px;
    background-color: transparent;
    color: var(--font-white);
    border-radius: 6px;
    border: var(--border);
}

.other-contacts{
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 25px;
    border-radius: 30px;
    background-image: url('../images/contactus-bg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 30px;
    z-index: 11;
}

.other-contacts::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    z-index: 10;
    border-radius: 30px;
}

.contacts-card{
    width: 100%;
    position: relative;
    display: inline-block;
    background-color: #14202D;
    border: var(--border);
    border-radius: 15px;
    padding: 25px;
    min-height: 205px;
}

.contacts-card h3{
    font-size: 20px;
    margin: 15px 0px;
}

.contacts-card img{
    width: 50px;
}

.features-icon{
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid;
    font-size: 32px;
}

.features-icon.one{
    background-color: #E7F7FE;
    border-color: #C4EAFC;
    color: #39BAF6;
}

.features-icon.two{
    background-color: #FEF8E7;
    border-color: #FDEDC4;
    color: #F7C239;
}

.features-icon.three{
    background-color: #E8E8FD;
    border-color: #C5C5FA;
    color: #3F3EED;
}

.features-icon.four{
    background-color: #EEE8F8;
    border-color: #D4C6EC;
    color: #6F42C1;
}

.features-icon.five{
    background-color: #EBF6F3;
    border-color: #CCE9E2;
    color: #55B59E;
}

.features-icon.six{
    background-color: #F9EBEB;
    border-color: #F0CECC;
    color: #CE5A56;
}

.features-card{
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
    border: var(--border);
    border-radius: 15px;
    padding: 25px;
    background-color: #14202D;
}

.features-info h3{
    font-size: 20px;
    margin: 15px 0px;
}

.pricing-card{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 100%;
    padding: 50px 25px 25px 25px;
    border: var(--border);
    border-radius: 15px;
}

.pricing-top h3{
    text-align: center;
    font-size: 24px;
    margin-bottom: 10px;
}

.pricing-top p{
    text-align: center;
}

.pricing-top h2{
    font-size: 32px;
    margin-top: 15px;
    text-align: center;
}

.pricing-top h2 span{
    font-family: 'Inter-Medium';
    font-size: 16px;
    text-align: center;
}

.pricing-btns a{
    width: 100%;
    width: 100%;
    min-width: 100%;
    margin-top: 20px;
    height: 38px;
}

.pricing-info ul{
    margin-top: 20px;
}

.pricing-info ul li{
    margin-bottom: 10px;
}

.pricing-info ul li:last-child{
    margin-bottom: 0px;
}

.pricing-info ul li i{
    margin-right: 10px;
}

.price-badge{
    padding: 3px 15px;
    width: auto;
    display: inline-block;
    background-color: var(--theme-color-3);
    color: var(--font-white);
    border-radius: 15px;
    font-size: 12px;
    position: absolute;
    top: 10px;
    right: 10px;
}

.pricing-top{
    width: 100%;
    position: relative;
    display: inline-block;
}

.pricing-card.popular{
    border-color: var(--theme-color-2);
}

.blogsingle-card{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 25px;
    background-color: #14202D;
    border: var(--border);
    border-radius: 15px;
}

.blogsingle-image{
    width: 220px;
    height: 220px;
    min-width: 220px;
    position: relative;
    display: inline-block;
    margin-right: 25px;
}

.blogsingle-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.blogsingle-content{
    width: 100%;
    position: relative;
    display: inline-block;
}

.blogsingle-badge{
    width: auto;
    position: relative;
    display: inline-block;
    background-color: #e8e8fd;
    color: var(--link-color);
    padding: 2px 10px;
    border-radius: 30px;
    font-size: 10px;
}

.blogsingle-content a h3{
    font-size: 20px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.blogsingle-postinfo{
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.blogsingle-postinfo-img{
    width: 48px;
    min-width: 48px;
    height: 48px;
    margin-right: 15px;
}

.blogsingle-postinfo-img img{
    object-fit: cover;
    border-radius: 50%;
    width: 100%;
    height: 100%;
}

.blogsingle-postinfo-author h3{
    font-size: 16px;
    margin-bottom: 5px;
}

.blogsingle-postinfo-author p span::after{
    content: '•';
    font-size: 10px;
    position: relative;
    display: inline-block;
    margin-left: 10px;
    margin-right: 10px;
}

.blogsingle-postinfo-author p span:last-child:after{
    display: none;
}

.sidebar-wrapper{
    width: 100%;
    position: relative;
    display: inline-block;
}

.sidebar-search{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.sidebar-search-label{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 5px;
}

.sidebar-search-input{
    width: 100%;
    position: relative;
    display: inline-block;
    border: var(--border);
    padding: 10px 15px;
    border-radius: 6px;
    background-color: transparent;
    color: var(--font-white);
    height: 48px;
}

.sidebar-search-btn{
    position: absolute;
    right: 0;
    top: 29px;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    background-color: var(--theme-color-2);
    color: var(--font-white);
}

.sidebar-recent-posts{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.sidebar-heading{
    position: relative;
    color: var(--font-white);
    font-weight: 700;
    margin-bottom: 30px;
    font-size: 22px;
    line-height: 32px;
    padding-bottom: 10px;
}

.sidebar-heading::before{
    position: absolute;
    content: "";
    width: 60px;
    height: 3px;
    background: #3f3eed;
    left: 0;
    bottom: 0;
    z-index: 1;
}

.sidebar-heading::after{
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: #dce3ed;
    left: 0;
    bottom: 1px;
}

.sidebar-orderlist li a:before{
    position: relative;
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 8px;
    background: #3f3eed;
    opacity: .2;
    top: 0px;
    left: 0;
    transition: .5s ease-in-out;
    -ms-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    display: flex;
    margin-right: 10px;
}

.sidebar-orderlist{
    position: relative;
}

.sidebar-orderlist li a{
    position: relative;
    display: flex;
    align-items: baseline;
}

.sidebar-orderlist li{
    margin-bottom: 10px;
}

.sidebar-orderlist li:last-child{
    margin-bottom: 0px;
}

.sidebat-tagsorer-list li{
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
}

.sidebat-tagsorer-list li a{
    padding: 4px 8px;
    background-color: var(--theme-color-3);
    color: var(--font-white);
    border-radius: 30px;
    position: relative;
    display: inline-block;
}

.article-contents p{
    margin-bottom: 15px;
}

.article-second-heading{
    margin-bottom: 20px;
    font-size: 20px;
}

.article-tags{
    width: 100%;
    position: relative;
    display: inline-block;
    margin: 20px 0px;
    border-top: var(--border);
    border-bottom: var(--border);
    padding: 20px 0px;
}

.article-tags p{
    color: var(--font-white);
    margin-bottom: 10px;
}

.article-tags ul li{
    display: inline-block;
    margin-right: 10px;
}

.article-share ul li{
    display: inline-block;
    margin-right: 10px;
}

.article-share ul li a{
    width: 35px;
    height: 35px;
    border-radius: 10px;
    border: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #121D28;
    color: var(--heading-color2);
}

.article-reply{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-top: 3rem;
}

.article-reply h3{
    font-size: 24px;
    margin-bottom: 10px;
}

.article-reply-form{
    margin-top: 2rem;
}

.article-reply-group{
    width: 100%;
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.article-reply-input{
    width: 100%;
    position: relative;
    display: inline-block;
    padding: 10px 15px;
    background-color: transparent;
    color: var(--font-white);
    border-radius: 6px;
    border: var(--border);
}

.article-main-image{
    width: 100%;
    position: relative;
    display: inline-block;
    height: 400px;
}

.article-main-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card{
    width: 100%;
    height: 100%;
    position: relative;
    display: inline-block;
    padding: 20px;
    border: 1px solid transparent;
    border-radius: 15px;
    background-color: #14202D;
    transition: ease-in 0.3s;
}

.team-image{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.team-image img{
    width: 100px;
    height: 100px;
    min-width: 100px;
    object-fit: cover;
    border-radius: 50%;
}

.team-info{
    text-align: center;
}

.team-info h3{
    font-size: 18px;
}

.team-info ul{
    margin-top: 15px;
}

.team-info ul li{
    display: inline-block;
}

.team-info ul li a{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #121D28;
    color: var(--heading-color2);
}

.team-card:hover{
    border: var(--border);
    transition: ease-in 0.3s;
}

.partner-img{
    width: 190px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.partner-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-about a img{
    width: 130px;
    margin-bottom: 1.5rem;
}

#team {
    padding-top: 120px; /* Adjust value based on the height of your header or nav */
    
}

#contact {
    padding-top: 120px; /* Adjust value based on the height of your header or nav */
    
}

#jobcy {
    padding-top: 120px; /* Adjust value based on the height of your header or nav */
    
}

#services {
    padding-top: 120px; /* Adjust value based on the height of your header or nav */
    
}

#services {
    padding-top: 120px; /* Adjust value based on the height of your header or nav */
    
}
/*Chatbox*/
  #chat-icon {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: var(--theme-color-2);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--font-white);
  cursor: pointer;
  z-index: 1050;
  transition: background-color 0.3s ease;
}

#chat-icon:hover {
  background-color: #13ad78;
}

#chat-box {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 320px;
  max-height: 400px;
  background: var(--theme-color-1);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  display: none;
  flex-direction: column;
  z-index: 1049;
  font-family: 'Inter-Regular';
  color: var(--font-white);
}

#chat-box header {
  padding: 12px;
  background: var(--theme-color-2);
  color: var(--font-white);
  font-family: 'Inter-SemiBold';
  font-size: 16px;
  border-radius: 12px 12px 0 0;
}

#chat-box main {
  padding: 12px;
  flex-grow: 1;
  overflow-y: auto;
  font-size: 14px;
  line-height: 1.4;
}

#chat-box footer {
  padding: 8px;
  display: flex;
  gap: 4px;
  border-top: var(--border);
  background-color: #0c1a2b;
}

#chat-box input {
  flex-grow: 1;
  padding: 8px;
  border-radius: 6px;
  border: var(--border);
  background-color: transparent;
  color: var(--font-white);
}

#chat-box button {
  padding: 8px 12px;
  background-color: var(--theme-color-2);
  border: none;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#chat-box button:hover {
  background-color: #13ad78;
}

.chat-message {
  margin-bottom: 8px;
}

.chat-message.user {
  text-align: right;
  color: var(--heading-color2);
}

.chat-message.ai {
  text-align: left;
  color: var(--font-white);
}
