


/* @import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&amp;display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

:root {
    --bgcolor: #29347b;
    --main-color : #f8b133 ;
}
body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}
p
{
    font-size: 18px;
    line-height: 30px;
    color: #000;
    margin: 0;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
}
*{
    margin: 0;
    padding: 0;
}
a,h2,h3,h4,h5,h6{
    color: #29347b;
    margin: 0;
}
a{
    text-decoration: none;
}
h1{
  font-size: 60px;
}
h2{
    font-size: 60px;
}
h3{
    font-size: 26px;
}
h4{
    font-size: 24px;
}
h5{
    font-size: 20px;
}
h6{
    font-size: 18px;
}
img {
    max-width: 100%;
}
.gap {
    padding: 90px 0;
}
.no-top{
    padding-top: 0;
}
.no-bottom{
    padding-bottom: 0;
}
ul{
    padding: 0;
    margin: 0;
}
li{
    display: block;
}
figure {
    overflow: hidden;
}
/* 1. header */
 .logo img {
    width: 210px;
	}
.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.top-bar ul {
    display: flex;
    align-items: center;
}
.top-bar a i svg {
    width: 30px;
    fill: #29347b;
    height: auto;
}
.top-bar a i {
    width: 40px;
    height: 40px;
    background-color: var(--main-color);
    margin-right: 10px;
    display: flex;
    align-items: center;
    color: #fff;
    align-items: center;
    justify-content: center; 
}
.top-bar a {
    font-size: 20px;
    color: #29347b;
    display: flex;
    align-items: center;
}
.top-bar > a:hover {
    color: #f6bb4b;
}
.top-bar a:hover i svg {
    fill: #000;
} 
.top-bar a
.questions .btn span i {
    padding-right: 10px;
}

header {
    padding-top: 20px;
    padding-bottom: 20px;
    position: absolute;
    z-index: 1;
    width: 100%;
}
.top-bar ul li {
    padding-right: 50px;
}
.top-bar ul li a{
    color: #29347b;
}
.top-bar ul li a:hover {
    color: var(--main-color);
}
#stickyHeader{
    background-color: #fff;
    position: relative;
    z-index: 1000;
}
/* 2. btn */
.btn {
    border: none;
    text-align: center;
    cursor: pointer;
    text-transform: capitalize;
    outline: none;
    overflow: hidden;
    position: relative;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    background-color:#f5b23c;
    color: #29347b;
    padding: 26px 42px;
    line-height: 0;
    border-bottom-right-radius: 0;
}
.btn:hover {
    background-color: transparent;
    color: #fff;
    border : 2px solid #f5b23c;
} 
 
.top-bar .btn {
    padding: 12px 26px;
}
header .btn:after {
    width: 136%;
}
.btn:hover:after {
  -webkit-transform: translateX(-9%) translateY(-25%) rotate(45deg);
  transform: translateX(-9%) translateY(-25%) rotate(45deg);
}
/* 3. hero-section */
.hero-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background-color: #29347b;
    background-size: cover;
   
} 

.hero-text {
    position: relative;
    margin-top: 40px;
}
.hero-text img.heroimg {
    position: absolute;
    right: -25%;
    z-index: 1;
    bottom: -47%;
    width: 52%;
    height: auto;
}
.hero-text h2 {
    color: #fff;
    padding-bottom: 20px;
    line-height: 84px;
    font-weight: bold;
    font-size: 74px;
}
.hero-text h2 span {
    color: var(--main-color);
}
.hero-text ul li {
    color: white;
    padding-bottom: 18px;
    display: flex;
    align-items: center;
    font-size: 18px;
}
.hero-text ul li img {
    width: 30px;
    height: 30px;
    display: flex;
    border-radius: 50%;
    background-color: #ffffff30;
    margin-right: 17px;
    padding: 7px;
}
@keyframes shadow-pulse{
    0% {
        box-shadow: 0 0 0 0px rgb(253 192 77);
    }
    100% {
        box-shadow: 0 0 0 35px rgba(0, 0, 0, 0);
    }
}

.hero-text > img {
    margin-left: auto;
    display: block;
    height: 263px;
    margin-top: 30px;
}

/* 6. heading */
.heading {
    text-align: center;
    width: 76%;
    margin: auto;
    margin-bottom: 40px;
}
.heading h2 {
    font-size: 30px;
    padding-top: 10px;
    font-weight: bold;
}
.heading span {
    font-weight: 800;
    color: var(--bgcolor);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 18px;
}
/* 7. customize-img */
.customize-img {
    position: relative;
}
.customize-text ul li {
    padding-bottom: 18px;
    display: flex;
    align-items: center;
}
.customize-img img {
    animation: top 5s linear infinite;
}
.customize-text ul li img {
    width: 40px;
    height: 40px;
    display: flex;
    border-radius: 50%;
    background-color: #efefef;
    margin-right: 17px;
    padding: 12px;
}
.customize-text p {
    margin-bottom: 10px;
}
.customize-text ul {
    margin-left: 50px;
    margin-top: 50px;
}
@keyframes top {
   0%{
    transform: translateY(0px);
   }
   50%{
    transform: translateY(10px);
   }
   100%{
    transform: translateY(0px);
   }
}

/* 8. server */
.heading.two {
    text-align: center;
    margin: 0;
    width: 100%;
    margin-bottom: 40px;
}
.server h5 {
    padding-bottom: 14px;
    font-size: 24px;
    font-weight: bold;
    color: #29347b;
}
.server {
   background-color: #fff;
    border-radius: 6px;
    padding: 40px;
     height: 100%;
}
.server img {
    height: 65px;
}

.server ul{
    font-size: 18px;
    color: #000;
    margin-left: 18px;
}
.server ul li{
    list-style-type: disc;
    display: list-item;
}
.server a{
    font-size: 18px;
}
/* 10. it-works */
.it-works {
    position: relative;
    overflow: hidden; 
} 
/* 11. staps */
.staps {
    display: flex;
    margin: 40px 0;
}

.staps-img {
    position: relative;
    width: 130px;
    height: 130px;
    margin-right: 30px;
    align-items: center;
    display: flex;
} 

.staps-img i {
    position: relative;
    width: 143px;
    height: 143px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bgcolor);
    border-radius: 50%;
    border-top-right-radius: 0;
}
.staps-img span {
    background-color: var(--main-color);
    position: absolute;
    top: 3px;
    left: -6px;
    width: 40px;
    height: 40px; 
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 6;
    font-size: 14px;
    font-weight: bold; 
}
.staps h4 {
    font-size: 28px;
    line-height: 36px;
    font-weight: bold;
    padding-bottom: 10px;
}
.staps-text {
    width: 70%;
}

/* .staps:hover .staps-img span{
    background-color: var(--bgcolor);
    color: white;
} */
.staps-img span,.staps-img i:before{
    transition: .3s;    
}
.logodata.owl-carousel .owl-item img {
    width: auto;
    margin: auto;
    transform: scale(0.9);
}
.logodata.owl-carousel .owl-item img:hover {
    transform: scale(1);
}
.logodata {
    width: 99%;
    margin: auto;
    margin-top: 120px;   
} 
/* 16. accordion */
.accordion-item.active .heading {
  color: #bccbb7;
}
.accordion-item.active .icon:before {
  background: #bccbb7;
}
.accordion-item.active .icon:after {
  width: 0;
}
.accordion-item.active .icon:before {
    background: #fff;
}
.accordion-item .heading {
    display: block;
    text-transform: capitalize;
    text-decoration: none;
    color: #000000;
    font-weight: 700;
    font-size: 20px;
    position: relative;
    transition: 0.3s ease-in-out;
} 
.accordion-item.active .icon {
    border-radius: 50px;
    background-color: var(--bgcolor);
}
.accordion-item .icon {
    display: block;
    position: absolute;
    top: 47%;
    width: 2.5rem;
    height: 2.5rem;
    transform: translateY(-50%);
    left: 12px;
    background-color: #c3c3c3;
    border-radius: 50%;
    border-bottom-right-radius: 0;
}
.accordion-item .icon:before, .accordion-item .icon:after {
    content: "";
    width: 12px;
    height: 3px;
    background: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transition: 0.3s ease-in-out;
    transform: translate(-50%, -50%);
}
.progress {
    height: 8px;
}
.accordion-item.active {
    border: 1px solid var(--bgcolor);
    border-radius: 20px !important;
}
.accordion-item .icon:after {
  transform: translate(-50%, -50%) rotate(90deg);
  z-index: -1;
}
.accordion-item .content {
  display: none;
}
.accordion-item {
    border-radius: 50px !important;
    border-bottom-right-radius: 0 !important;
}
.title {
    text-align: start;
    
}
.content {
    padding: 0px 50px;
    padding-bottom: 22px;
    padding-left: 65px;
}
.accordion-item {
    border: 1px solid #c3c3c3;
}
.accordion-item:first-of-type {
    border-radius: 0px;
}
.accordion-item.active a.heading {
    color: black;
} 
.accordion-item {
    margin-bottom: 20px;
}
.accordion-item:not(:first-of-type) {
    border-top: 0;
    border: 1px solid #c3c3c3;
}
.accordion-item.active:not(:first-of-type)
,.accordion-item.active {
    border: 1px solid var(--bgcolor);
}
a.heading{
    width: 100%;
    margin: 0;
}
/* 18. clients */
.clients h6 {
    font-size: 18px;
    font-weight: bold;
}
.clients p {
    font-size: 20px;
    line-height: 38px;
}
.clients span {
    font-size: 14px;
}
.clients {
    padding: 50px;
    border-radius: 10px;
    background-color: #e9eafa;
    position: relative;
    margin: 12px;
   
}
.clients img {
    position: absolute;
    width: 60px;
}
.clients i {
    background-color: #fff;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 20px;
    border-bottom-right-radius: 0;
}
.clients-slider.owl-carousel .owl-item img {
    width: 52px;
}
.clients-slider.owl-carousel.owl-theme.owl-loaded.owl-drag {
    margin-left: -1px;
}
.clients-slider.owl-theme .owl-dots .owl-dot.active span {
    background: transparent;
    border: 6px solid var(--bgcolor);
    padding: 3px;
    margin: 4px;
}
.clients-slider.owl-theme .owl-dots .owl-dot span {
    background: transparent;
    border: 6px solid #c3c3c3;
    padding: 3px;
    margin: 4px;
}
.clients-slider.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 60px;
    display: block !important;
}
/* 19. footer */
footer{
    position: relative;
    background-color: #f6fafb;
}
.footer-shaps {
    display: block;
    width: 100%;
    height: 75px;
    position: absolute; 
    bottom: 0;
    z-index: 0;
} 
.links h5 {
    font-size: 28px;
    font-weight: bold;
    text-transform: capitalize;
    color: #29347b;
}
.links {
    width: 92%;
}

.links span {
    font-size: 18px;
    color: #000;
}
.line {
    display: flex;
    background-color: #f5b23c;
    width: 110px;
    height: 3px;
    margin-bottom: 20px;
}
.links a {
    padding-left: 16px;
    color: #000;
}
.links a:hover{
    color: var(--bgcolor);
}
.footer-bottom {
    border-radius: 10px;
    text-align: center;
    margin-top: 100px;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    position: relative;
    padding-bottom: 100px;
}
.footer-end {
    position: relative;
    z-index: 1;
    border-top: 1px solid #d5d5d52b;
    margin-top: 50px;
}   
.footer-end p {
    text-align: center;
    padding-top: 20px;
    color: #000;
    padding-bottom: 20px;
    border-top: 1px solid #d6cece;
}
.footer-bottom p {
    padding-top: 20px;
    padding-bottom: 30px;
    color: #d5d5d5;
}
.footer-bottom h3 {
    font-size: 50px;
    font-weight: bold;
    color: #fff;
}
#progress {
    z-index: 111;
  position: fixed;
  bottom: 20px;
  right: 10px;
  height: 70px;
  width: 70px;
  display: none;
  place-items: center;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
#progress-value {
  display: block;
  height: calc(110% - 15px);
  width: calc(110% - 15px);
  background-color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 35px;
  color: #001a2e;
}
span#progress-value i {
    font-size: 22px;
}
form#subscribe-form{
    position: relative;
}
form#subscribe-form input {
    width: 70%;
    background-color: #ffffff;
    height: 55px;
    padding-left: 30px;
    border-radius: 58px;
    border: 0;
    outline: none;
}
.hero-text p {
    color: white;
    padding-bottom: 50px;
    font-size: 19px;
    padding-top: 00px;
    line-height: 35px;
}
.hero-section.two .hero-text {
    margin-top: 20px;
    width: 80%;
    margin: auto;
    margin-bottom: 100px;
    text-align: center;
    margin-top: 50px;
}
.hero-section.two .review { 
    justify-content: center;
}
form#subscribe-form {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
button.btn {
    height: 60px;
    margin-left: 10px;
}
/* 20. review */
.review {
    display: flex;
    align-items: center; 
    margin-top: 50px;
    z-index: 11;
    position: relative;
}
ul.star li {
    padding-bottom: 0px;
    padding-left: 4px;
    color: black;
}
.review h6 {
    color: white;
    font-size: 30px;
    padding: 0px 16px;
    font-weight: bold;
    text-transform: capitalize;
}
.review span {
    color: white;
    font-size: 16px;
    font-weight: 600;
}
ul.star {
    display: inline-flex;
    background-color: var(--main-color);
    padding: 4px 13px;
    border-radius: 38px;
}
.hero-section.for .hero-text p {
    color: white;
    padding-bottom: 30px;
    font-size: 18px;
    padding-top: 30px;
    line-height: 32px;
}
/* 21. youtube */
.hs-responsive-embed-youtube {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    padding-top: 25px;
}
.hs-responsive-embed-youtube iframe {
    position: absolute;
    width: 100%!important;
    height: 100%!important;
}
.hero-section.for .review {
    justify-content: flex-start;
    margin: 0;
    margin-bottom: 60px;
    margin-top: 20px;
}
.hero-section.for {
    padding-bottom: 150px;
}
img.shado {
    width: 100%;
    display: block;
    position: relative;
    margin-top: 16px;
}
/* 22. swal-modal */
.swal-modal {
    background-color: var(--main-color);
    border-radius: 20px;
    padding-top: 80px;
    padding-bottom: 80px;
}
.swal-icon--success__hide-corners, .swal-icon--success:after, .swal-icon--success:before {
    background-color: transparent !important;
}
.swal-text {
    text-align: center;
    color: #fff;
}
.swal-footer {
    display: none;
}
.swal-title {
    color: #fff;
    font-family: 'Unbounded';
    font-size: 45px;
      margin: 0px !IMPORTANT;
}
.swal-text {
    text-align: center;
    color: #fff;
    FONT-SIZE: 16PX;
    PADDING: 0PX 42PX;
}
.swal-title {
    MARGIN: 0PX;
    PADDING: 0PX;
}
/* 23. loading */

 .loading-text {
  font-size: 5vw;
  line-height: 64px;
  letter-spacing: 10px;
  margin-bottom: 32px;
  display: flex;
  justify-content: space-evenly;
}
.loading-text span {
  -webkit-animation: moveLetters 2.4s infinite ease-in-out;
          animation: moveLetters 2.4s infinite ease-in-out;
  transform: translatex(0);
  position: relative;
  display: inline-block;
  opacity: 0;
  color: #fff;
  text-shadow: 0px 2px 10px rgba(46, 74, 81, 0.3);
}

.loading-text span:nth-child(1) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

.loading-text span:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.loading-text span:nth-child(3) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.loading-text span:nth-child(4) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.loading-text span:nth-child(5) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.loading-text span:nth-child(6) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.loading-text span:nth-child(7) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
@keyframes moveLetters {
  0% {
    transform: translateX(-15vw);
    opacity: 0;
  }
  33.3%, 66% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(15vw);
    opacity: 0;
  }
}
.preloader {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 999999999999999999;
    right: 0;
    background-color: var(--bgcolor);
    top: 0;
    transition-duration: 1s;
    -webkit-transition-duration: 1s;
    transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.09, 1);
}
.preloader {
    top: 0%;
}
.page-loaded .preloader {
    top: -100%;
}  
footer {
    background-repeat: no-repeat;
    background-position: top;
        background-size: cover;
}
.staps i,.logodata.owl-carousel .owl-item img,
.top-bar a,.btn,.count-style,.callto a,.video a,.team-text img,
.server i img,.pricing-plans-text,.links a,.pricing-plans-text .btn span,ul.social-media-section li i:after{
    transition: .3s;
}
.links p {
    color: #000;
}
.pricing-plans-text .hero-text {
    margin: 0;
}
.links ul li{
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
}

/* contact start */
.contact{
    padding: 60px ;
    min-height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.contact::before{
    position: absolute;
    content: "";
    width: 50%;
    height: 100%;
    background-color: var(--secondary-color);
    left: 0;
    top: 0;
}
.contact .contact-content{
    min-width: 1000px;
    min-height: 512px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
}
.contact .shape{
    position: absolute;
    content: "";
    width: 376px;
    top: 25px;
    z-index: 1;
    padding: 30px;
    left: 0;
    height: calc(100% - 50px);
    display: flex;
    align-items: start;
    flex-direction: column;
    box-shadow: 0 20px 25px rgba(0,0,0,0.15);
    background-color: #f8b133;
}
.contact .shape h2{
    font-size: 34px;
    color: #29347b;
}
.contact    .contact-form{
    position: absolute;
    content: "";
    background-color: #fff;
    padding: 70px 50px;
    padding-left: 275px;
    margin-left: 150px;
    width: calc(100% - 150px);
    height: 100%;
    box-shadow:0 1px 15px rgba(0,0,0,.11);
}

.contact    .contact-form::before{
    position: absolute;
    content: "Send A Message";
    top: 0;
    right: 0;
    background: var(--secondary-color);
    color: white;
    padding: 8px;
    z-index: -1;
    border-bottom-left-radius: 25px;
}
@media(max-width:805px){
    .contact .contact-form::before{
        font-size:14px ;
    }
}
.contact .info{
margin: 20px 0px;
    color: #fff;
}
.contact    .info li{
display: flex;
margin-bottom: 20px;
    align-items: flex-start;
}
.contact .info span{
    margin-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3px;
}
.contact    .info   i{
    font-size: 21px;
    color: white;
    display: flex;
    align-items: center;
}
.contact    .social{
    width: 100%;
}
.social ul{
    display: flex;
    align-items: center;
    gap: 25px;
}

.social a{
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
     background: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 5px 13px -7.5px #000;
}

.social a:hover i{
    color: #29347b;
    transform: scale(1.2);
}

.social i{
    font-size: 29px;
    color: #29347b;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s linear;
}

.social a:hover::before{
    animation: aaa 0.7s 1;
    top: -10%;
    left: -10%;
}
@keyframes aaa{
    0%{
        top: -110%;
        left:90%;
        }
        50%{
            top: 10%;
            left: -30%;
        }
        100%{
            top: -10%;
        left: -10%;
        }
    }
    .social li:nth-child(1) a::before{
        background-color: #25D366;
    }
    .social li:nth-child(2) a::before{
        background-color: #1877F2;
    }
    .social li:nth-child(3) a::before{
        background-color: #CD201F;
    }
/* END SOCIAL STYLE */

.contact    .form-box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px 30px;
}
.contact    .form-box   .box{
    flex-basis: calc(50% - 30px);
    position: relative;
}
.contact    .form-box   .box    input{
    width: 100%;
    outline: none;
    border: 0;
    border-bottom: 1px solid #777;
    padding: 10px 0px;
    font-size: 20px;
    color: #333;
    font-weight: 300;
}
.contact    .form-box   .box span{
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-20px);
    pointer-events: none;
    padding: 5px 0px;
    font-size: 17px;
    font-weight: normal;
    color: #777;
    transition: 0.3s;
}

.contact    .form-box   .box    textarea{
    width: 100%;
    height: 120px;
    outline: none;
    border: 0;
    border-bottom: 1px solid #777;
    padding: 10px;
}
.contact    .form-box   .box    textarea,
.contact    .form-box   .box   input{
    font-size: 18px;
    color: #333;
    font-weight: 300;
}
.contact    .form-box    div:nth-child(5){
    flex-basis: 100%;
}

.contact    .form-box   .box    textarea:focus ~ span,
.contact    .form-box   .box   input:focus ~ span,
.contact    .form-box   .box    textarea:valid ~ span,
.contact    .form-box   .box   input:valid ~ span{
    transform: translateY(-40px);
    font-size: 15px;
    font-weight: 100;
    /* letter-spacing: 1px; */
    color: var(--main-color);
}

.contact    .form-box   .box   input[type="submit"]{
    background-color: var(--main-color);
    cursor: pointer;
    color: #29347b;
        font-weight: 500;
    width: fit-content;
    padding: 5px 30px;
    border: 1px solid var(--main-color);
    border: none;
}
.contact    .form-box    div:nth-child(6){
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    display: flex;
}
.contact    .form-box   .box   input[type="submit"]:hover{
   background-color: #29347b;
    color: #fff;
}

/* Media */
@media(min-width:950px) and (max-width:1070px){
    .contact   .contact-content{
        min-width: 885px;
    }
    .contact    .shape{
        top: 0;
        height: 100%;
    }
}
@media(min-width:0px) and (max-width:960px){
    .contact   .contact-content{
        flex-direction: column !important;
    display: flex;
    flex-wrap: wrap;
    /* background-color: red; */
    justify-content: center;
    align-items: center;
    width: 100%;
    min-width: 100%;
    }
    .contact    .shape{
        display: none;
    }
    .contact    .contact-form{
        position: absolute;
        content: "";
        background-color: #fff;
        padding: 70px 50px;
        padding-left: 30px;
        margin-left: 0px;
        width: calc(98% - 150px);
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media(max-width:767px){
    .contact   .contact-content {
        min-height: 675px;
    }
    .contact    .form-box {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 50px 0px;
        min-height: 600px;
    }
    .contact    .form-box   .box {
        position: relative;
        width: 100%;
        flex-basis: calc(100% );
    }
    .contact    .contact-form {
        width: calc(98% - 40px);
    }
    .contact    .form-box   .box    textarea, .contact    .form-box   .box   input {
        font-size: 15px;
    }
    .contact    .form-box   .box    input {
        padding: 8px 0px;
    }
    .contact    .form-box   .box    textarea {
        height: 100px;
    }
    .contact {
        min-height: 107vh;
    }
}
.contact    .last-shape{
    width: 100%;
    position: relative;
    z-index: 1;
    background: var(--secondary-color);
    display: none;
    flex-direction: column;
    justify-content: center;
    padding: 10px 10px 20px 10px;
    align-items: center;
    background-image: linear-gradient(to left,#0e2431,#133042);
}
.contact    .last-shape .social {
    width: 48%;
    justify-self: center;
    align-self: flex-end;
    position: relative;
    transform: translateY(-245%);
}
.contact    .last-shape .info {
    margin: 10px 0px;
    align-self: self-start;
    padding: 13px;
}
.contact    .last-shape h2{
    color: var(--main-color);
    margin: 13px 0px;
}
.contact    .last-shape    .info li {
    display: flex;
    /* margin-bottom: 16px; */
    color: var(--ternary);
}
.contact    .last-shape    .info span {
    margin-right: 25px;
}
@media(max-width:720px){
    .contact    .last-shape .social {

        align-self: center;

        transform: translateY(0);
    }
    .contact    .last-shape .info {
        margin: 10px 0px;
        align-self: center;
        padding: 13px;
    }
   
}
@media(max-width:960px){
    .last-shape{
        display: flex !important;
    }
}
@media(max-width:500px){
    .contact .last-shape{
        width: 125%;
    }
    .contact    .contact-form {
        width: calc(120% );
    }
    .contact    .form-box   .box span {
        font-size: 15px;
    }
}

.home-demo .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    margin-bottom: 40px;
}

.home-demo img {
    max-width: 100px;
    height: 100px;       /* same height for all icons */
    object-fit: contain;
}

.home-demo h2 {
    color: #29347b;
    margin-top: 20px;
    font-weight: 300;
    font-size: 22px;
    line-height: 1.2;
}
.about{
     position: relative;    
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
/* .about::before {
    position: absolute;
    left: 0;
    content: "";
    top: 0;
    background: #fff;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.8;
    z-index: 0; 
} */
.about .container {
    position: relative;
    z-index: 1;  
}

/* process start */

.values-wrapper {
  display: flex;
  justify-content: center;
  gap: 70px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.value-card {
  width: 160px;
  position: relative;
  text-align: center;
}

.value-card.odd {
  margin-top: 40px;
}

.value-card.even {
  margin-top: 0;
}
/* Circle */
.circle {
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  position: relative;
}

.circle-inner {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-color: #29347b; */
  font-size: 45px;
  color: #a82828;
}
.circle-inner img {
  width: 80px;
}
/* 
.value-card:nth-child(1) .circle-inner {
  border: 4px solid #29347b;
}
.value-card:nth-child(2) .circle-inner {
  border: 4px solid #29347b;
}
.value-card:nth-child(3) .circle-inner {
  border: 4px solid #29347b;
}
.value-card:nth-child(4) .circle-inner {
  border: 4px solid #29347b;
}
.value-card:nth-child(5) .circle-inner {
  border: 4px solid #29347b;
}
.value-card:nth-child(6) .circle-inner {
  border: 4px solid #29347b;
}
.value-card:nth-child(7) .circle-inner {
  border: 4px solid #29347b;
}
.value-card:nth-child(8) .circle-inner {
  border: 4px solid #29347b;
} */

.protitle {
  font-weight: 700;
  margin-top: 15px;
}

.value-card:nth-child(1) .protitle {
  color: #29347b;
}
.value-card:nth-child(2) .protitle {
  color: #29347b;
}
.value-card:nth-child(3) .protitle {
  color: #29347b;
}
.value-card:nth-child(4) .protitle {
  color: #29347b;
}
.value-card:nth-child(5) .protitle {
  color: #29347b;
}
.value-card:nth-child(6) .protitle {
  color: #29347b;
}
.value-card:nth-child(7) .protitle {
  color: #29347b;
}
.value-card:nth-child(8) .protitle {
  color: #29347b;
}
.desc {
  color: #000;
  margin-top: 10px;
  line-height: 1.4;
  margin-bottom: 20px;
}

/* Connecting dotted lines */
.value-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 2px;
  background: repeating-linear-gradient( 90deg,#d0d0ce 0 4px,transparent 4px 8px );
  top: 50%;
  right:-138px;
  transform-origin: left center;
}
.value-card.odd::after {
  transform: rotate(27deg);
  top: 91px;
  right: -138px;
}
.value-card.even::after {
  transform: rotate(-29deg);
  top: 234px;
  left: 170px;
}
.value-card:last-child::after {
  display: none;
}

/* last card has no connector */
.value-card:last-child::after {
  content: none;
}

/* Responsive */
@media (max-width: 900px) {
  .values-wrapper {
    flex-wrap: wrap;
    gap: 30px;
  }
  .value-card {
    margin-top: 0 !important;
  }
  .value-card::after,
  .value-card::before {
    content: none !important;
  }
  
}
@media (max-width: 540px) {
  .value-card {
    width: 100%;
    max-width: 260px;
  }
  .circle {
    width: 130px;
    height: 130px;
  }
  .circle-inner {
    width: 95px;
    height: 95px;
    font-size: 36px;
  }
}

/* MOBILE — icon above, text bottom */
@media (max-width: 767px) {
  .value-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    margin: 30px 0 !important;
  }

  /* circle on top */
  .value-card .circle {
    order: 1;
    margin-bottom: 12px !important;
  }

  /* title under icon */
  .value-card h3,
  .value-card .title {
    order: 2;
    margin-top: 0 !important;
    margin-bottom: 6px !important;
    text-align: center !important;
  }

  /* description at last */
  .value-card p,
  .value-card .desc {
    order: 3;
    margin: 0 auto !important;
    text-align: center !important;
    padding: 0 10px;
  }

  /* remove zig-zag spacing on mobile */
  .value-card:nth-child(even),.value-card:nth-child(odd) {
    margin-top: 0 !important;
  }

  /* hide dotted vertical connecting line on mobile if used */
  .value-card::before,
  .value-card::after {
    display: none !important;
  }
  .mega_menu_item a {
    display: block !important;
    margin-bottom: 6px;
    font-size: 14px;
  }
  .process-slider {
    padding: 20px 0;
  }

  .value-card {
    max-width: 240px;
  }

  .circle {
    width: 110px;
    height: 110px;
  }

  .circle-inner {
    width: 85px;
    height: 85px;
  }

  .desc {
    padding: 0 10px;
  }
}
.mb-70{
    margin-bottom: 50px;
}
/* process end */

.testomonial .row {
  display: flex;
  flex-wrap: wrap;
}

.testomonial .item {
  display: flex;
}

.testomonial .clients {
  display: flex;
  flex-direction: column;
  justify-content: space-between; 
  padding: 50px;
  background: #e9eafa; 
  border-radius: 10px;
}

/* Optional: keep paragraph flexible */
.testomonial .clients p {
  flex-grow: 1;
}
/* blog */
.tp-postbox-item {
    border-radius: 5px;
   background-color: #fff;
}
.tp-postbox-content {
    padding: 20px 30px 30px;
}
.blog-carousel .item {
  box-shadow: 0px 4.8px 24.4px -6px rgba(19, 16, 34, 0.1), 0px 4px 13px -2px rgba(19, 16, 34, 0.06);
}
.links a:hover{
    color: #f6b033;
}
.tp-postbox-title{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}
.tp-postbox-read-more{
    margin-top: 10px;
}
.tp-postbox-read-more a:hover{
    color: #29347b;
}

/* Keep content above */
.hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* VIDEO */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* DARK OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
  z-index: 2;
}

/* CONTENT */
.hero-section .container {
  position: relative;
  z-index: 3;
}

/* TEXT */
.hero-text h2 {
  color: #fff;
}

.hero-text p {
  color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-section {
    min-height: 500px;
  }
}
/* .hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: url('../img/line-imgs1.png') repeat-x;
  background-size: auto 100%;
  opacity: 0.5;
  animation: waveMove 12s linear infinite;
}

@keyframes waveMove {
  0% {
    transform: translateX(0) translateY(0);
  }
  50% {
    transform: translateX(-5%) translateY(10px);
  }
  100% {
    transform: translateX(0) translateY(0);
  }
} */

/* Images grid start */

.notification {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 10px;
  text-align: center;
  z-index: 1;
  background: #fffbbc;
}

.grid {
  display: grid;
  grid-gap: 8px;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 30vw;
  list-style: none;
}

.grid li:nth-child(11n + 9) {
  grid-column: 1 / -1;
  grid-row: span 2;
}

.grid figure,
.grid img {
  width: 100%;
  height: 100%;
  background-color: #f5b23c;
  display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.grid figure h4{
        font-size: 18px;
}
.grid img {
  object-fit: cover;
  background: #f5f3f4;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

@media (min-width: 850px) {
  .grid {
    grid-gap: 15px;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: 9vw;
  }

  .grid li {
    --row-step: calc(4 * var(--n));
  }

  .grid li:nth-child(11n + 1) {
    grid-column: 1;
    grid-row: calc(1 + var(--row-step)) / span 1;
  }

  .grid li:nth-child(11n + 2) {
    grid-column: 2 / span 2;
    grid-row: calc(1 + var(--row-step)) / span 2;
  }

  .grid li:nth-child(11n + 3) {
    grid-column: 4;
    grid-row: calc(1 + var(--row-step));
  }

  .grid li:nth-child(11n + 4) {
    grid-column: 5;
    grid-row: calc(1 + var(--row-step));
  }

  .grid li:nth-child(11n + 5) {
    grid-column: 4;
    grid-row: calc(2 + var(--row-step));
  }

  .grid li:nth-child(11n + 6) {
    grid-column: 5;
    grid-row: calc(2 + var(--row-step)) / span 2;
  }

  .grid li:nth-child(11n + 7) {
    grid-column: 2;
    grid-row: calc(3 + var(--row-step));
  }

  .grid li:nth-child(11n + 8) {
    grid-column: 1;
    grid-row: calc(2 + var(--row-step)) /span 2;
  }

  .grid li:nth-child(11n + 9) {
    grid-column: 3 / span 2;
    grid-row: calc(3 + var(--row-step)) / span 2;
  }

  .grid li:nth-child(11n + 10) {
    grid-column: 1 / span 2;
    grid-row: calc(4 + var(--row-step));
  }

  .grid li:nth-child(11n + 11) {
    grid-column: 5;
    grid-row: calc(4 + var(--row-step));
  }
}
.owl-dots {
  text-align: center;
  margin-top: 20px;
}

.owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px;
  background: #ccc;
  display: block;
  border-radius: 50%;
  transition: 0.3s;
}

.owl-dots .owl-dot.active span {
  background: #ffffff;
  transform: scale(1.2);
}
/* Hide hamburger on desktop */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}
/* about backgorund image */
#about {
  position: relative;
  background-image: url('../img/line-img.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#about::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 250px;
  height: 100%;
  
  background-image: url('../img/bottle.png');
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 250px auto;

  opacity: 0.6; /* bottle opacity */
  pointer-events: none;
}

/* IMAGE WRAPPER */
.bootcamp-row {
  display: flex;
  align-items: center;
  gap: 100px;
  flex-wrap: wrap;
}

.bootcamp-col {
  flex: 1;
  min-width: 320px;
}

.image-wrapper {
  position: relative;
}

.image-wrapper img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

.overlay-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 16px;
}

/* CARD */
.overlay-card {
  position: absolute;
  background: #fff;
  color: #29347b;
  padding: 16px 18px;
  border-radius: 12px;

  /* IMPORTANT CHANGE */
  width: 80%;
  max-width: 620px;

  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  font-size: 15px;
  line-height: 1.4;
  transition: 0.3s;
}

.overlay-card:hover {
  transform: translateY(-5px);
}

.overlay-card p {
  font-size: 13px;
  margin-top: 6px;
  opacity: 0.9;
  color: #29347b;
  line-height: 22px;
}

/* USE % INSTEAD OF PX */
/* THIS WILL KEEP DESIGN STABLE */

.card1 {
  top: 12%;
  left: 32%;
}

.card2 {
  top: 40%;
  left: 12%;
}

.card3 {
  bottom: 12%;
  left: 32%;
}

/* RIGHT SIDE */
.right h2 {
 font-size: 30px;
    font-weight: bold;
  color: #29347b;
  margin-bottom: 15px;
}

.right p {
  color: #000;
  margin-bottom: 20px;
}

.right ul {
  margin: 25px 0;
  padding-left: 0;
  list-style: none;
}

.right li {
  margin-bottom: 12px;
  color: #333;
  font-size: 16px;
}

.btn {
  background: #f0ad3d;
  color: #1d2a7a;
  font-weight: 600;
  padding: 23px 42px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  transform: translateY(-2px);
}

/* TABLET */
@media (max-width: 1024px) {

  .overlay-card {
    width: 78%;
  }

  .card1 {
    left: 26%;
  }

  .card2 {
    left: 8%;
  }

  .card3 {
    left: 26%;
  }
}

/* MOBILE */
@media (max-width: 768px) {

  .bootcamp-row {
    flex-direction: column-reverse;
    gap: 30px;
  }

  .image-wrapper {
    max-width: 100%;
    display: flex;
    flex-direction: column-reverse;
    gap: 14px;
  }

  /* FIX IMAGE HEIGHT */
  .overlay-img {
    position: relative;
    width: 100%;
    height: 320px; /* change height if needed */
    overflow: hidden;
    border-radius: 16px;
    margin-top: 30px;
  }

  .overlay-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .overlay-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    border-radius: 16px;
  }

  /* CARDS BELOW IMAGE */
  .overlay-card {
    position: static;
    width: 100%;
    margin-top: 0;
    left: unset;
    top: unset;
    bottom: unset;
  }
}
/* end */

.more-text {
  display: none;
  margin-top: 15px;
}

.more-text.show {
  display: block;
}

.read-more-btn {
  background: transparent;
  border: none;
  color: #2f3e8f;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}

.read-more-btn:hover {
  opacity: 0.8;
}
.product-grid{
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.server{
  width: calc(33.33% - 20px);
}

/* IMAGE */
.server img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 14px;
}


/* TABLET */
@media(max-width:991px){

  .server{
    width: calc(50% - 15px);
  }

}

/* MOBILE */
@media(max-width:767px){

  .server{
    width: 100%;
  }

}

/* Vertical new tab  */

#vertical-tab{
  padding: 0 75px;
}
#vertical-tab .vertical-tab-wrapper .vertical-tab .each-height {
  padding: 10px 0 10px 15px !important;
}
#vertical-tab .vertical-tab-wrapper .vertical-tab .each-tab {
  padding: 10px 0 10px 15px;
 
  border-bottom: 1px solid #fff;
  position: relative;
  cursor: pointer;
}
#vertical-tab .vertical-tab-wrapper .vertical-tab .each-tab .title {
  font-size: 20px;
  font-weight: 600;
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  color: #29347b;
}

#vertical-tab .vertical-tab-wrapper .vertical-tab .each-tab.active .title {
  color: #f5b23c;
  font-weight: 700;
  font-size: 20px;
}

#vertical-tab .vertical-tab-wrapper .vertical-tab-content {
  display: none;
  padding: 0;
}
#vertical-tab .vertical-tab-wrapper .vertical-tab-content h3 {
  font-size:16px;
  font-weight: 700;
  color: #1c2a51;
  margin: 0 0 15px;
  font-family: var(--tp-ff-body);
}
#vertical-tab .vertical-tab-wrapper .vertical-tab-content p {
  font-size: 16px;
  font-weight: 400;
  color: #1c2a51;
  line-height: 1.4;
  font-size: 1rem;
  color: #333333;
  /* margin: 0 0 30px; */
}
#vertical-tab .vertical-tab-wrapper .vertical-tab-content.active {
  display: block;
}
#vertical-tab .mobile-vertical-tab {
  display: none;
  position: relative;
  box-shadow: 0px 0px 5.88px 0.12px rgba(0, 0, 0, 0.14);
}
#vertical-tab .mobile-vertical-tab .vertical-tab-header .each-tab-header .each-tab {
  padding: 16px;
  background-color: #5d9ccc;
  border-bottom: 1px solid #fff;
  position: relative;
  text-align: center;
}
#vertical-tab .mobile-vertical-tab .vertical-tab-header .each-tab-header .each-tab .title {
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.1;
  color: #f7dd4b;
}


@media (max-width: 767px) {
  #vertical-tab .vertical-tab-wrapper .vertical-tab-content {
    padding: 15px;
  }
  .marquee-inner img{
    width: auto !important;
  }
}
.productwrap {
    display: flex;
    /* align-items: center; */
   
}
.productwrap-left {
    /* margin: 25px 25px 0 0; */
    min-width: 50%;
}
/* .productimg2 {
    margin: 25px 0 20px 0px;
} */
/* .productwrap-right {
    min-width: 50%;
} */
#vertical-tab .vertical-tab-wrapper .vertical-tab .each-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-image: linear-gradient(90deg, rgb(185, 185, 185) 0%, #fff 100%);
}
#vertical-tab .vertical-tab-wrapper .vertical-tab .each-tab:last-child::after {
    display: none;
}

.img-container img {
   width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  animation: zoom-loop 10s infinite alternate; /* 10s duration, loops forever */
}

@keyframes zoom-loop {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.08); /* Max zoom level */
  }
}
/* award */
.marquee {
	overflow-x: clip;
	white-space: nowrap;
	position: relative;
	width: 100%;
}

.marquee-inner {
	display: flex;
	align-items: center;
	gap: 2vw;
	padding: 12vh 0;
	will-change: transform;
}

.marquee-inner img {
	height: 100%;
	transition: transform 0.5s;
	flex-shrink: 0;
	width: 20vw;
	border-radius: 10px;
}

.marquee-inner img:hover {
	transform: scale(1.03);
}
/* end */

.blog-detail h5 {
    font-size: 24px;
    margin: 15px 0;
}
.tp-postbox-title2 {
    font-size: 28px;
    font-weight: 600;
    padding: 20px 0;
}
.pb-120 {
    padding-bottom: 120px;
}
.form-message{
    background: green;
    color: #fff;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
}
