
/*** Spinner Start ***/
/*** Spinner ***/
:root {
  --bs-primary: #2979ff !important;
  --secondary: #a0f913 !important;
  --blue-dark: #1f194c !important;
  --text-gray: #697582 !important;
}
body {
    font-family: "Source Sans 3", sans-serif;
      font-optical-sizing: auto;
      font-weight: 400;
      font-style: normal;
}
.text-gray {
    color: var(--text-gray);
}
.text-justify {
    text-align: justify;
}
.text-green {
    color : #39FF14;
}
a{
    text-decoration: none !important;
}
a, a:hover {
    text-decoration: none;
}

ul,li {
    list-style: none;
}
.ratify{
    color:#2979ff;
}
.mail{
    color:#000;
}
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    background: var(--bs-primary) !important;
    color: var(--bs-white) !important;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn-primary:hover {
    background: var(--bs-white) !important;
    color: var(--bs-primary) !important;
}

.btn.btn-light {
    background: var(--bs-light) !important;
    color: var(--bs-primary) !important;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn-light:hover {
    background: var(--bs-primary) !important;
    color: var(--bs-light) !important;
}


.RotateMoveLeft {
    position: relative;
    animation: RotateMoveLeft 10s linear infinite;
}

.RotateMoveRight {
    position: relative;
    animation: RotateMoveLeft 10s linear infinite;
}

@keyframes RotateMoveLeft {
    0%   {left: 0px;}
    50%   {left: 40px;}
    100%  {left: 0px;}
}

@keyframes RotateMoveRight {
    0%   {right: 0px;}
    50%   {right: 40px;}
    100%  {right: 0px;}
}


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    margin-right: 36px;
    padding: 30px 0px;
    color: #535353 !important;
    font-size: 16px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-primary) !important;
}

.navbar-light .navbar-brand img {
    max-height: 50px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    transition: .5s;
    opacity: 1;
}

.collapse.navbar-collapse {
    transition: 0.5s;
}

@media (max-width: 992px) {
    nav.bg-transparent {
        position: absolute;
        width: 100%;
        background: transparent !important;
    }

    .navbar.navbar-expand-lg button span {
        position: relative;
        z-index: 99;
    }

    .navbar {
        position: relative;
        background: var(--bs-light);
        z-index: 2;
    }

    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white) !important;
        padding: 0 20px 20px 20px !important;
    }

    .sticky-top.navbar-light {
        background: transparent;
    }

    nav.navbar {
        padding: 0 30px 30px 0;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark) !important;
    }


    .navbar-light .navbar-brand img {
        max-height: 45;
    }

    .hero-header {
        margin-top: -100px !important;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        background: transparent !important;
        z-index: 999;
    }

    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light) !important;
    }
}
/*** Navbar End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(102, 16, 242, 0.05), rgba(102, 16, 242, 0.05));
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 150px 0 60px 0;
    margin-bottom: 6rem;
    transition: 0.5s;
}

.bg-breadcrumb::after {
    content: "";
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    border-radius: 300px;
    border: 80px solid rgba(247, 71, 128, 0.05);
    background: transparent;
    animation: RotateMoveSingle 5s linear infinite;
    z-index: -1;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
    z-index: 2;
}


@keyframes RotateMoveSingle {
    0% {
        -webkit-transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
        transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
    }
      100% {
        -webkit-transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
        transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
    }

    0% {bottom: 0px;}
    50%   {left: -10px;}
    75%   {bottom: 10%;}
    100%  {bottom: 0px;}
}

.bg-breadcrumb::before {
    content: "";
    position: absolute;
    top: -15%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 300px;
    border: 80px solid rgba(247, 71, 128, 0.04);
    background: transparent;
    animation: RotateMoveSingle 5s linear infinite;
    z-index: -1;
}

@keyframes RotateMoveSingle {
    0% {
        -webkit-transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
        transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
    }
      100% {
        -webkit-transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
        transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
    }

    0% {top: 0px;}
    50%   {top: 10%;}
    100%  {top: 0px;}
}

@media (max-width: 992px) {
    .bg-breadcrumb {
        padding-top: 100px !important;
    }
}

.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-dark) !important;
}


.breadcrumb-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.breadcrumb-animation li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(102, 16, 242, 0.07);
    animation: animate 25s linear infinite;
    bottom: -150px;

}

.breadcrumb-animation li:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.breadcrumb-animation li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.breadcrumb-animation li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.breadcrumb-animation li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.breadcrumb-animation li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.breadcrumb-animation li:nth-child(6) {
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.breadcrumb-animation li:nth-child(7) {
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.breadcrumb-animation li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.breadcrumb-animation li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.breadcrumb-animation li:nth-child(10) {
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}

@keyframes animate {

    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}
/*** Single Page Hero Header End ***/


/*** Hearo Header Start ***/
.header::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: #ffebae;
    background:  url(../images/homebg.jpg);
    border-radius: 22% 78% 33% 67% / 32% 0% 100% 68%;
    animation: bgMove 5s linear infinite;
    z-index: -1;
}

@keyframes bgMove {
    0%   {right: 0px;}
    50%   {right: 20px;}
    100%  {right: 0px;}
}
/* Hide image in mobile view */
@media (max-width: 768px) {
    .header::after {
        display: none;
    }
}
/*
.header::before {
    content: "";
    position: absolute;
    bottom: -9%;
    left: -7%;
    width: 400px;
    height: 400px;
    border-radius: 200px;
    border: 30px solid rgba(41, 121, 255, 0.29);
    background: transparent;
    animation: RotateMoveHeader 5s linear infinite;
    z-index: -1;

*/
}

@keyframes RotateMoveHeader {
    0% {
        -webkit-transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
        transform: rotateZ(0deg) rotate(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
    }
      100% {
        -webkit-transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
        transform: rotateZ(360deg) rotate(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
    }


    0% {bottom: 0px;}
    50%   {left: -10px;}
    75%   {bottom: 9%;}
    100%  {bottom: 0px;}
}

.hero-header {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}

.hero-header::after {
    content: "";
    position: absolute;
    left: 100px;
    bottom: 100px;
    width: 58px;
    height: 50px;
    background: url(../img/sty-1.png) center center no-repeat;
    animation: RotateMoveSty-3 45s linear infinite;
    transition: 0.5s;
    z-index: -1;

}

@keyframes RotateMoveSty-3 {
    0%   {left: 100px;}
    40%   {bottom: -0px;}
    50%   {left: 700px;}
    70%   {bottom: 500px;}
    80%   {left: 400px;}
    95%   {bottom: -0px;}
    100%  {left: 100px;}
}

/*
.hero-header::before {
    content: "";
    position: absolute;
    left: 100px;
    bottom: 100px;
    width: 300px;
    height: 300px;
    border-radius: 150px;
    border: 30px solid rgba(0, 0, 0, 0.4);
    background: transparent;
    animation: RotateMoveSty-4 45s linear infinite;
    transition: 0.5s;
    z-index: -1;

}

@keyframes RotateMoveSty-4 {
    0%   {left: 100px;}
    40%   {bottom: -0px;}
    50%   {left: 700px;}
    70%   {bottom: 500px;}
    80%   {left: 400px;}
    95%   {bottom: -0px;}
    100%  {left: 100px;}
}

*/

.hero-header .rotate-img {
    position: absolute;
    top: 70px;
    left: 20px;
}

.hero-header .rotate-img .rotate-sty-2 {
    position: absolute;
    top: 100px;
    left: 50px;
    width: 50px;
    height: 50px;
    border-radius: 30px;
    border: 5px solid rgba(247, 71, 128, 0.1);
    background: transparent;
    animation: RotateMoveSty-2 45s linear infinite;
    transition: 0.5s;

}

@keyframes RotateMoveSty-2 {
    0%   {left: 0px;}
    40%   {top: -30px;}
    50%   {left: 500px;}
    70%   {top: 200px;}
    80%   {left: 100px;}
    95%   {top: -30px;}
    100%  {left: 0px;}
}

.hero-header .rotate-img img {
    position: relative;
    animation: RotateMove 30s linear infinite;
    z-index: -1;
}

@keyframes RotateMove {
    0%   {left: 0px;}
    50%   {left: 200px;}
    100%  {left: 0px;}
}


@media (max-width: 992px) {
    .hero-header .rotate-img img {
        margin-top: 100px;
    }

}
/*** Hero Header End ***/



/*** Features Start ***/
.feature .feature-img {
    background: var(--bs-light);
    border-radius: 58% 42% 21% 79% / 30% 29% 71% 70%;
}
/*** Features End ***/


/*** Pricing Start ***/
.price .price-item {
    position: relative;
    overflow: hidden;
    transition: 0.5s;
}

.price .price-item:hover {
    background: var(--bs-white) !important;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

.price .price-item .pice-item-offer {
    position: absolute;
    width: 200px;
    height: 110px;
    top: -45px;
    right: -80px;
    background: var(--bs-primary) !important;
    color: var(--bs-white);
    transform: rotate(42deg);
    display: flex;
    align-items: end;
    justify-content: center;
    padding-bottom: 10px;
}
/*** Pricing End ***/


/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    background: rgba(102, 16, 242, 0.2);
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.blog .blog-item .blog-img .blog-info {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    padding: 20px;
    background: rgba(102, 16, 242, 0.2);
    color: var(--bs-white) !important;
    display: flex;
    align-items: end;
    justify-content: space-between;
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-info {
    background: rgba(0, 0, 0, .4);
}


.blog .blog-item .blog-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover img {
    transform: scale(1.3);
}
/*** Blog End ***/


/*** Contact Start ***/
.contact {
    position: relative;
    overflow: hidden;
    transition: 0.5s;
    z-index: 1;
}

.contact::after {
    content: "";
    position: absolute;
    top: 10%;
    left: -1%;
    width: 400px;
    height: 400px;
    border-radius: 200px;
    border: 60px solid rgba(102, 16, 242, 0.05);
    background: transparent;
    animation: ContactMoveLeft 50s linear infinite;
    z-index: 1;
}

@keyframes ContactMoveLeft {
    0%   {left: 0px;}
    25%   {top: 100px;}
    50%   {left: 90%;}
    75%   {top: 80%;}
    100%  {left: 0px;}
}

.contact::before {
    content: "";
    position: absolute;
    top: 10%;
    right: -1%;
    width: 400px;
    height: 400px;
    border-radius: 200px;
    border: 60px solid rgba(102, 16, 242, 0.05);
    background: transparent;
    animation: ContactMoveRight 50s linear infinite;
    z-index: 1;
}

@keyframes ContactMoveRight {
    0%   {right: 0px;}
    25%   {top: 100px;}
    50%   {right: 90%;}
    75%   {top: 80%;}
    100%  {right: 0px;}
}
/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: linear-gradient(rgba(102, 16, 242, 0.05), rgba(102, 16, 242, 0.05));
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-dark);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-primary);
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark) !important;
}
/*** copyright end ***/

.error-404-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* full height of the viewport */
  background-color: #f8f9fa; /* optional */
}

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







/**** Home Page -1  ****/
.composition-4 {
  position:relative
}
.composition-4 img {
  width:100%
}
.composition-4-image-1 {
  position:relative;
  width:86.0084%;
  margin-left:auto;
  overflow:hidden;
  border:1px solid rgba(0,0,0,.15);
  border-top-left-radius:100%;
  border-top-right-radius:100%
}
.composition-4-image-1-inner {
  overflow:hidden;
  border:10px solid #fff;
  border-top-left-radius:100%;
  border-top-right-radius:100%
}
.composition-4-image-2 {
  position:relative;
  width:59.7738%;
  margin-top:-36.672%;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(0,0,0,.15);
  border-bottom-left-radius:75%
}
.composition-4-image-2-inner {
  border:10px solid #fff;
  overflow:hidden;
  border-bottom-left-radius:75%
}
.composition-4-decoration {
  position:absolute;
  bottom:7%;
  right:15.6704%;
  width:36.8336%;
  opacity:.95;
  z-index:-1
}
.composition-4-decoration-1 {
  position:absolute;
  bottom:6.025%;
  right:7.97%;
  width:25.1042%;
  opacity:.95;
  z-index:-1
}
.light-content .composition-4-image-1 {
  background:var(--color-dark-1);
  border-color:hsla(0,0%,100%,.2)
}
.light-content .composition-4-image-1-inner {
  border-color:var(--color-dark-1)
}
.light-content .composition-4-image-2 {
  background:var(--color-dark-1);
  border-color:hsla(0,0%,100%,.2)
}
.light-content .composition-4-image-2-inner {
  border-color:var(--color-dark-1)
}



.composition-5 {
  position:relative
}
.composition-5 img {
  width:100%
}
.composition-5-image-1 {
  position:relative;
  width:91.0683%;
  background:#fff;
  border:1px solid rgba(0,0,0,.15);
  border-top-left-radius:100%;
  border-top-right-radius:100%
}
.composition-5-image-1,
.composition-5-image-1-inner {
  overflow:hidden;
  isolation:isolate;
  transform:translateZ(0)
}
.composition-5-image-1-inner {
  border:10px solid #fff;
  border-top-left-radius:100%;
  border-top-right-radius:100%
}
.composition-5-image-2 {
  position:relative;
  width:49.387%;
  margin-top:-24.3432%;
  margin-left:auto;
  border:1px solid rgba(0,0,0,.15);
  border-bottom-right-radius:75%
}
.composition-5-image-2,
.composition-5-image-2-inner {
  overflow:hidden;
  isolation:isolate;
  transform:translateZ(0)
}
.composition-5-image-2-inner {
  border:10px solid #fff;
  border-bottom-right-radius:75%
}
.composition-5-decoration {
  position:absolute;
  bottom:9.25%;
  left:-6.8%;
  width:39.9299%;
  opacity:.95;
  z-index:-1
}
.light-content .composition-5-image-1 {
  background:var(--color-dark-1);
  border-color:hsla(0,0%,100%,.2)
}
.light-content .composition-5-image-1-inner {
  border-color:var(--color-dark-1)
}
.light-content .composition-5-image-2 {
  background:var(--color-dark-1);
  border-color:hsla(0,0%,100%,.2)
}
.light-content .composition-5-image-2-inner {
  border-color:var(--color-dark-1)
}


.parllax-quaot {
    background: linear-gradient(hsla(0, 0%, 99%, 0.9), hsla(0, 0%, 99%, 0.9)), url(../images/section-bg-1.jpg) center center no-repeat;
    background-position-x: 0%, center;
    background-position-y: 0%, center;
    background-attachment: scroll, scroll;
    background-size: auto, auto;
    background-position: center center;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
    padding-top :130px;
    padding-bottom :130px;
}

.number-title {
  font-size:80px;
  font-weight:500;
  line-height:1
}
.number-box {
    width:100%;
    padding:50px 30px;
    background:#fff;
    border-radius: 10px;
    border: 1px solid #f2f2f2;
    /*box-shadow:0px 5px 10px 0px rgba(0, 0, 0, .05),0px 1px 1px 0px rgba(0,0,0,.03),0px 3px 5px 0px rgba(0,0,0,.03);
    border-image: linear-gradient(to right, #2979ff, #000000);
    border-image-slice: 1; /* Border gradient ko poori tarah apply karega */
}
.number-title {
  margin-bottom:15px;
  font-size:60px;
  font-weight:500;
  line-height:1;
  letter-spacing:-.05em
}
.number-descr {
  font-size:16px;
  color:var(--text-gray);
}

.services-6-caption {
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #1872e8;
}
.services-6-title {
  margin-bottom: 15px;
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -.01em;
}
.services-6-text {
  font-size: 16px;
  line-height: 1.6875;
  color: var(--text-gray);
}
.services-6-separator {
  position: relative;
  width: 100%;
  height: 1px;
  margin-bottom: 22px;
  background: #f3f3f3;
}
.services-6-separator::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 40px;
  height: 1px;
  background: #1872e8;
}



.small-title {
    padding: 9px 12px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: .1em;
    display: inline-block;
    padding: 7px 12px;
    font-size: 14px;
    font-weight: 500;
    color: #1872f8;
    text-transform: uppercase;
    letter-spacing: .037em;
    background-image: linear-gradient(45deg,#e3effe 0,transparent 100%);
    border-radius: 100px;
}
.section-title {
  font-size: 48px !important;
  font-weight: 500 !important;
  line-height: 1.25 !important;
}
.section-descr {
  font-size: 23px !important;
  font-weight: 300 !important;
  line-height: 1.7 !important;
  letter-spacing: -.005em !important;
}




/* creative work scetion*/
.bg-gray-light-1 {
  background-color: #f5f7fa;
}
.decoration-13 {
  position:absolute;
  bottom:100%;
  right:0;
  margin-bottom:-8.217%;
  margin-right:-10.4651%;
  width:27.7519%;
  padding-top:27.7519%;
    background:#1e2432;
  border-radius:100%;
  opacity:.037;
  pointer-events:none
}
.light-content .decoration-13 {
  background:#fff
}
.small-section {
    padding: 100px 0;
    padding-right: 0px;
    padding-left: 0px;
}
.decoration-12 {
  position:absolute;
  left:0;
  pointer-events:none
}
.decoration-12 {
  top:100%;
  margin-top:-8.217%;
  margin-left:-10.4651%;
  width:27.7519%;
  padding-top:27.7519%;
  background:#1e2432;
  border-radius:100%;
  opacity:.037
}
.light-content .decoration-12 {
  background:#fff
}


/* Testimonials */
.testimonials-4-item {
  position:relative;
  padding:30px;
  background:#fff;
  border-radius:10px;
  box-shadow:0px 3px 50px 0px rgba(0,0,0, .05);
}

.testimonials-4-icon {
  position:absolute;
  top:10px;
  left:10px;
  font-size:50px;
  line-height:1;
  opacity:.075
}




/* Home page Logo Silder */
section.slide-option {
  margin: 25px 0 25px 0;
}

div.logo-slider {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 150px;
}

div.logo-slider div.logo-slide {
  overflow: hidden;
  position: relative;
}

div.logo-slider ul {
  display: flex;
  height: 100%;
}

div.logo-slider ul li {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  color: #343434;
}

@keyframes translatestf {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-500%);
  }
}

@keyframes translateinfinite {
  100% {
    transform: translateX(calc(-180px * 12));
  }
}


#infinite div.logo-slide::before,
#infinite div.logo-slide::after {
  content: " ";
  position: absolute;
  z-index: 9;
  width: 180px;
  height: 100%;
}

#infinite div.logo-slide::before {
  top: 0;
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

#infinite div.logo-slide::after {
  top: 0;
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

#infinite ul {
  width: calc(130px * 15);
}

#infinite ul li {
  width: 180px;
  animation: translateinfinite 40s linear infinite;
}

.section-one.section-one-image img{
    border-radius: 30px;
}

/* Home page features */
.features .accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  font-size: 24px;
  font-weight: 900;
  text-align: left;
  background-color: var(--bs-accordion-btn-bg);
  border: 0;
  border-radius: 0;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
  overflow-anchor: none;
  transition: var(--bs-accordion-transition);
}
.features .accordion-item {
    border: none;
}
.features .accordion-header button:hover {
    background-color: #2979ff0a;
    border-radius: 10px;
}

.features .accordion-button:not(.collapsed) {
  color: none;
  background-color: none;
  box-shadow: none;
  border-left: 1px solid #2979ff;
}
.features .accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: none;
}
.features .accordion-button::after {
  background-image: none;
}







.diagram-container {
    position: relative;
    height: 300px;
    margin: auto;
}
.diagram-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.diagram-circle svg {
    width: 100%;
    height: 100%;
}
.text-item {
    position: absolute;
    font-size: 20px;
    padding: 5px 20px;
    background-color: #fff;
    border-radius: 20px;
}
.center-text {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.top-text {
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
}
.right-text {
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
}
.bottom-text {
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
}
.left-text {
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
}
.corner-text {
    transform: translate(-50%, -50%);
}
.top-left {
    top: 10%;
    left: 10%;
}
.top-right {
    top: 10%;
    left: 85%;
}
.bottom-left {
    bottom: 10%;
    left: 10%;
}
.bottom-right {
    bottom: 5%;
    right: 0%;
}


/* chart-section */
.legend {
    font-size: 12px;
    padding-bottom: 110px;
}
.legend-item {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}
.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 5px;
}
.dot-blue {
    background-color: #6fdcff;
}
.dot-green {
    background-color: #58edc9;
}
.dot-pink {
    background-color: #ff5ea3;
}
.chart-container {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    width: 280px;
    height: 300px;
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
}
.bar {
    width: 20px;
    border-radius: 4px;
}
.bar-1 {
    height: 80%;
    background-color: #6fdcff;
}
.bar-2 {
    height: 60%;
    background-color: #58edc9;
}
.bar-3 {
    height: 40%;
    background-color: #ff5ea3;
}
.bar-4 {
    height: 90%;
    background-color: #6fdcff;
}
.bar-5 {
    height: 70%;
    background-color: #58edc9;
}
.bar-6 {
    height: 50%;
    background-color: #ff5ea3;
}
/* chart-section */


/* pricing */
.pricing-section .card {
    border:none;
    border-radius: 20px;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, .05),0px 1px 1px 0px rgba(0,0,0,.03),0px 3px 5px 0px rgba(0,0,0,.03);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.pricing-section .card:hover {
    transform: scale(1.05);
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, .1), 0px 3px 5px 0px rgba(0, 0, 0, .08);
}



/* Icone section */
.multiicone {
    height: 90vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.container1 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.center-icon {
    position: absolute;
    z-index: 10;
    font-size: 40px;
}
.layer {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transform-origin: center;
}
.layer-1 {
    width: 150px;
    height: 150px;
    z-index: 10;
}
.layer-2 {
    width: 300px;
    height: 300px;
    animation: rotateRight 60s linear infinite;
    z-index: 5;
}
.layer-3 {
    width: 450px;
    height: 450px;
    animation: rotateLeft 80s linear infinite;
    z-index: 1;
}
.icon {
    position: absolute;
    background-color: white;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
/* For the 1st layer icons (largest) */
.layer-1 .icon {
    font-size: 50px; /* Largest icons */
}
/* For the 1st layer icons (largest) */
.layer-2 .icon {
    padding:25px;
}


/* Spacing icons evenly in a circle for layer-1 */
.layer-1 .icon {
    transform: rotate(0deg) translateX(0px) rotate(0deg);
}

/* Spacing icons evenly in a circle for layer-2 */
.layer-2 .icon:nth-child(1) {
    transform: rotate(0deg) translateX(150px) rotate(0deg);
}
.layer-2 .icon:nth-child(2) {
    transform: rotate(60deg) translateX(150px) rotate(-60deg);
}
.layer-2 .icon:nth-child(3) {
    transform: rotate(120deg) translateX(150px) rotate(-120deg);
}
.layer-2 .icon:nth-child(4) {
    transform: rotate(180deg) translateX(150px) rotate(-180deg);
}
.layer-2 .icon:nth-child(5) {
    transform: rotate(240deg) translateX(150px) rotate(-240deg);
}
.layer-2 .icon:nth-child(6) {
    transform: rotate(300deg) translateX(150px) rotate(-300deg);
}

/* Spacing icons evenly in a circle for layer-3 with 10 icons */
.layer-3 .icon:nth-child(1) {
    transform: rotate(0deg) translateX(225px) rotate(0deg);
}
.layer-3 .icon:nth-child(2) {
    transform: rotate(36deg) translateX(225px) rotate(-36deg);
}
.layer-3 .icon:nth-child(3) {
    transform: rotate(72deg) translateX(225px) rotate(-72deg);
}
.layer-3 .icon:nth-child(4) {
    transform: rotate(108deg) translateX(225px) rotate(-108deg);
}
.layer-3 .icon:nth-child(5) {
    transform: rotate(144deg) translateX(225px) rotate(-144deg);
}
.layer-3 .icon:nth-child(6) {
    transform: rotate(180deg) translateX(225px) rotate(-180deg);
}
.layer-3 .icon:nth-child(7) {
    transform: rotate(216deg) translateX(225px) rotate(-216deg);
}
.layer-3 .icon:nth-child(8) {
    transform: rotate(252deg) translateX(225px) rotate(-252deg);
}
.layer-3 .icon:nth-child(9) {
    transform: rotate(288deg) translateX(225px) rotate(-288deg);
}
.layer-3 .icon:nth-child(10) {
    transform: rotate(324deg) translateX(225px) rotate(-324deg);
}

@keyframes rotateRight {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@keyframes rotateLeft {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-360deg);
    }
}


.veritasIdentify .sticky-top {
    top: 100px; /* Ya jitna aapko sahi lage */
}

.home-section .card{
    background-color: transparent;
}

/* Main Section */
    .home-section {
        max-width: 450px;
        /*background: rgba(221, 221, 221, 0.15);*/
        background: rgba(0, 0, 0, 0.15);
        border-radius: 15px;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    /* Card Style */
    .card {
        border: none;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(0px);
        border-radius: 15px;
    }

    /* Nav Tabs */
    .nav-tabs {
        border-bottom: none;
    }

    .nav-tabs .nav-link {
        color: #fff;
        font-weight: bold;
        transition: all 0.3s;
    }

    .nav-tabs .nav-link.active {
        background: rgba(0, 0, 0, 0.5);
        color: #fff;
        border-radius: 25px;
        padding: 10px 20px;
        border: 1px solid #8c8c8c;
    }
    .nav-link:hover {
      border-color: transparent  !important;
    }

    /* Form Fields */
    .lsForm .form-control {
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: #000;
    }

    .lsForm .form-control:focus {
        background: rgba(255, 255, 255, 0.3);
        border: none;
        box-shadow: none;
    }

    /* Submit Button */
    .btn-primary {
        background: linear-gradient(135deg, #1e3c72, #000000);
        border: none;
        border-radius: 25px;
        padding: 10px 20px;
        font-weight: bold;
        transition: all 0.3s;
    }

    .btn-primary:hover {
        background: linear-gradient(135deg, #000000, #1e3c72);
    }

    /* Tab Content */
    .tab-content {
        padding-top: 15px;
    }

.signup-pass{
    position: absolute;
    top: 20px;
    right: 25px;
    cursor: pointer;
}
