@import url(mainstyle.css);

*{
    scroll-behavior: smooth;
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;  
}
.btn-close {
    background-image: unset;
}
a{
    color: inherit;
    text-decoration: none;
}

/* title section after before css */
.section-title {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: var(--prime-text); /* Change to your text color */
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 20px 0;
}

.section-title::before,
.section-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px; /* line length */
  height: 3px; /* line thickness */
  background-color: var(--prime-bg); /* line color */
}

.section-title::before {
  left: -50px; /* space between text and left line */
  transform: translateY(-50%);
}

.section-title::after {
  right: -50px; /* space between text and right line */
  transform: translateY(-50%);
}


.nav-link{
    color: var(--nav-text);
}
.nav-item.active .nav-link, .nav-item:hover .nav-link{
    color:var(--prime-text);
}
::placeholder{
    color: var(--input-text) !important;
    opacity: 0.5 !important;
}
.head-content{
    width: 920px;
    margin: auto;
    max-width: 100%;
    text-align: center;
}

.header-top-area {
    background: #252628;
    padding: 11px 0;
    position: relative;
    z-index: 1;
}
.header-top-area:after {
    position: absolute;
    content: "";
    z-index: -1;
    background: var(--prime-bg);
    height: 100%;
    width: 54%;
    top: 0;
    transform: skew(38deg);
    left: -20px;
}

.play-btn{
  min-height: 20px;
  min-height: 20px;
  border-radius: 50%;
}

.banner-title {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: var(--prime-text); /* Change to your text color */
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 20px 0;
}

.banner-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px; /* line length */
  height: 3px; /* line thickness */
  background-color: var(--prime-bg); /* line color */
}

.banner-title::after {
  right: -50px; /* space between text and right line */
  transform: translateY(-50%);
}
@media (max-width: 399px) {
    .banner-title::after{
      display: none;
    }
}


/* Banner CSS */
.banner-slider{
    min-height: 750px;
}
.slide-1{
    background: linear-gradient(to right, #0d0d0da1 0%, #0d0d0da1 100%), url('../../assets/images/banner1.jpg')no-repeat;
    background-size: cover;
    background-position: center center;
    min-height: 750px;
}
.slide-2{
    background: linear-gradient(to right, #0d0d0da1 0%, #0d0d0da1 100%), url('../../assets/images/banner2.jpg')no-repeat;
    background-size: cover;
    background-position: center center;
    min-height: 750px;
}
.slide-3{
    background: linear-gradient(to right, #0d0d0da1 0%, #0d0d0da1 100%), url('../../assets/images/banner3.jpg')no-repeat;
    background-size: cover;
    background-position: center center;
    min-height: 750px;
} 
 .splide-container{ 
    width: 700px;
    max-width: 100%;   
    height:100%;
    position: relative; 
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* navigation styles */
.splide__arrow {
    background: transparent;
    border: 1px solid white;
    width: 50px;
    height: 70px;
    border-radius: 0px;
    opacity: 1;
}
.splide__arrow:hover{
    background-color: var(--prime-bg);
    border-color: var(--prime-border);
}
.splide__arrow svg{
    font-size: 24px;
    fill: var(--white-text);  
}
.splide__pagination__page {
    background: #ffff;
    border: 0;
    display: inline-block;
    height: 14px;
    margin: 3px;
    opacity: 0.8;
    padding: 0;
    position: relative;
    transition: transform 0.5s ease;
    width: 14px;
}
.splide__pagination__page.is-active {
    background: var(--prime-bg);
    transform: scale(1.2);
    z-index: 1;
}

.splide__arrow--prev{
  top: 50%;
  bottom: 50%;
  box-shadow: unset;
}
.splide__arrow--next{
  top: 50%;
  bottom: 50%;
  box-shadow: unset;
}
@media(max-width:992px){
    .banner-slider{
        min-height: 600px;
    }
    .test-slide{
        min-height: unset;
    }
    .splide__arrow {
        width: 40px;
        height: 60px;
    }
    .banner-cont{
        min-height: 500px;
    }
}

@media(max-width:576px){
    .splide-container .fs-4{
        font-size: 16px !important;
    }
}

@media(max-width:650px){
    .splide__arrow {
        display: none;
    }
}


/* card section css */
.card-bg-img1{ 
    background: linear-gradient(rgba(26, 114, 252, 0.8), rgba(173, 204, 255, 0.8)), transparent  url('../../assets/images/card-bg.jpg') no-repeat;
    background-size: cover;
    background-position: center center;
    height: 100%;
    min-height: 300px;
}
.card-bg-img2{
    background: linear-gradient(rgba(173, 204, 255, 0.8), rgba(26, 114, 252, 0.8)), transparent  url('../../assets/images/card-bg.jpg') no-repeat;
    background-size: cover;
    background-position: center center;
    height: 100%;
    min-height: 300px;
}

.row-top{
    margin-top: -120px;
    position: relative;
}

/* about section css */
.about-ban{
    margin-top: -50px;
    border: 0;
    border-top: 10px solid var(--prime-bg);
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    width: 80%;
}
.about-title {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: var(--prime-text); /* Change to your text color */
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 20px 0;
}

.about-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px; /* line length */
  height: 3px; /* line thickness */
  background-color: var(--prime-bg); /* line color */
}

.about-title::after {
  right: -50px; /* space between text and right line */
  transform: translateY(-50%);
}


/* tools section css */

.tools-title {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: #fff; /* Change to your text color */
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 20px 0;
}

.tools-title::before,
.tools-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px; /* line length */
  height: 3px; /* line thickness */
  background-color: #fff; /* line color */
}

.tools-title::before {
  left: -50px; /* space between text and left line */
  transform: translateY(-50%);
}

.tools-title::after {
  right: -50px; /* space between text and right line */
  transform: translateY(-50%);
}

.tools-bg{
    background:  linear-gradient(to top, rgba(5, 30, 70, 0.95) 0%, rgba(5, 30, 70, 0.6) 50%, rgba(5, 30, 70, 0.4) 100%), url('../../assets/images/tools.jpg')no-repeat;
    background-size: cover;
    background-position: center center;
    min-height: 750px;   
}

/* tools-card css  */ 
.tools-card-main .tools-card-img{
    background: linear-gradient(rgba(26, 114, 252, 0.8), rgba(173, 204, 255, 0.8)), transparent  url('../../assets/images/card-bg.jpg') no-repeat;
    background-size: cover !important;
    background-position: center center !important;
    height: 100% !important;
    min-height: 300px !important; 
}
.tools-card-main:nth-child(odd) .tools-card-img{
    background: linear-gradient(rgba(173, 204, 255, 0.8), rgba(26, 114, 252, 0.8)), transparent  url('../../assets/images/card-bg.jpg') no-repeat;
}

.tools-card-main:nth-child(odd) .tools-card-img:hover{
     background: linear-gradient(rgba(26, 114, 252, 0.8), rgba(173, 204, 255, 0.8)), transparent  url('../../assets/images/card-bg.jpg') no-repeat;
} 
.tools-card-main .tools-card-img:hover{
    background: linear-gradient(rgba(173, 204, 255, 0.8), rgba(26, 114, 252, 0.8)), transparent  url('../../assets/images/card-bg.jpg') no-repeat;
}

/* company section css  */
.company-bg {
    background:  linear-gradient(to right, #fff5eb97, #ffe8d697),transparent url('../../assets/images/alt-bg2.png')no-repeat;
    background-size: cover;
    background-position: center center;
    min-height: 600px;  
}
[data-aizonex-theme="dark"] .company-bg{
    background: url('../../assets/images/alt-bg3.png')no-repeat
}

@media (max-width: 1200px) {
    .company-bg {
        min-height: 500px !important;
    }
}

.company-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.company-card:hover{
    transform: scale(1.1);
    transition: transform 0.9s ease;
}

@media (max-width: 576px) {
    .company-card img {
        height: 500px !important;
        object-position: top;
    }
}

.company-info {
    background-color: var(--prime-bg);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

.share-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: white;
    color: #ff7b00;
    border-radius: 50%;
    transition: all 0.3s ease;
    min-height: 30px;
    min-width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.company-card:hover .share-icon {
    background: #ff7b00;
    color: white;
}

.share-icons-bg {
    min-width: 50px;
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--icon-text);
    background: var(--prime-alt-bg);
    border: 3px solid #fff;
}

.share-top {
    margin-top: -105px;
    display: flex;
    justify-content: flex-end;
    text-align: center;
    z-index: 2;
}
@media (min-width: 992px) and (max-width: 1199px) {
    .share-top {
        margin-top: -130px;
    }
}
@media (max-width: 767px) {
    .share-top {
        margin-top: -130px;
    }
}
@media (max-width: 576px) {
    .share-top {
        display: none;
    }
}

.social-icons {
    position: absolute;
    bottom: -100%;
    right: 20px;
    display: flex;
    flex-direction: column;
    background-color: rgba(53, 54, 56, 0.6);
    padding: 10px;
    border-radius: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.company-card:hover .social-icons {
    opacity: 1;
    visibility: visible;
    bottom: 90px;
    transition: all 1s ease;
}

.social-icons a {
    color: #fff;
    margin: 6px 0;
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #ff7b00;
}

/* case section css  */
 .case-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.case-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-info {
  position: relative;
  margin-top: -50px;
  width: 80%;
  background: var(--prime-alt-bg);
  color: #fff;
  padding: 10px;
  text-align: center;
}

.case-info .arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #fff;
}


/* process section css  */
.process-icon{
  background: var(--prime-alt-bg);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  height: 120px;
  width: 120px;
}

.process-content{
  text-align: center; 
}

.card-tops{
  margin-top: -45px;
  display: flex;
  justify-content: center;
  text-align: center;
}

/* footer section css  */
.footer-title {
  position: relative;
  display: inline-block;
  color: #fff; /* text color */
  letter-spacing: 2px;
  text-transform: uppercase;
  padding-left: 30px; /* space for the left line */
  text-decoration: none; /* remove underline from links */
}

.footer-title::before {
  content: "";
  position: absolute;
  left: 0; /* position line on the left */
  top: 50%;
  transform: translateY(-50%);
  width: 12px; /* line length */
  height: 2px; /* line thickness */
  background-color: #fff; /* line color */
}

.icons-bg{
    min-width: 30px;
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--icon-text);
    background-color: var(--prime-bg);
}
.icons-bg2{
    min-width: 20px;
    min-height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--icon-text);
    background-color: var(--prime-bg);
}

.footer-icons-bg{
    min-width: 40px;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--icon-text);
    background-color: var(--prime-bg);
}


#backtotop {
    position: fixed;
    bottom: 30px;
    right: 30px; 
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    width: 50px !important;
    min-width: unset;
    height: 50px !important;
    display: flex;
    align-items: center;
    justify-content: center; 
}
#backtotop.show {
    opacity: 1;
    visibility: visible;
} 
.preloader {
    position: fixed;
    height: 100vh; 
    width: 100%;
    z-index: 9999;  
    background: url('../../assets/images/alt-bg2.png')no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
[data-aizonex-theme="dark"] .preloader{
    background: url('../../assets/images/alt-bg3.png')no-repeat;
}   
.error{
    color: red;
}