@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');


/* #310d56   #4A1145  #efa46f */

:root {
    --danger: #420f7b;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
}

.marqu {
    text-align: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    padding: 10px;
    text-decoration: none;
}

.marqu a {
    color: #ffffff;
}

/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--danger);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }

    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }

    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }

    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }

    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#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;
}

/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700;
}

h5,
h6,
.fw-medium {
    font-weight: 600;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-segiz;
    font-weight: 600;
    transition: .5s;
}

.btn-danger,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-danger:hover {
    box-shadow: inset 0 0 0 0 var(--danger);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

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

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

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

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Nunito', sans-segiz;
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: #ddbbbf;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #C03E9B;
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: var(--danger);
    border-color: var(--danger);
}

    .navbar-dark {
        position: sticky;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }

    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: #C03E9B;
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--danger);
    }



/*** Carousel ***/

.hero-image{
    opacity: 0.8;
}
@media (max-width: 576px) {
    .hero-image{
        opacity: 0.7;
    }
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgba(9, 30, 62, .7); */
    z-index: 1;
}


.header.static-header {
    background-image: url('img/jkki3.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh; /* Adjust height as needed */
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.display-1 {
    color: transparent;
    -webkit-text-stroke: .1px #fdf8f9;
    background: url(../img/heroTextBackground.png);
    -webkit-background-clip: text;
    background-position: 0 0;
    text-shadow: 2px 2px 5px rgba(245, 245, 245, 0.3);
    animation: back 20s linear infinite;
}

.display-color {
    color: #febc68;
    margin: auto;
}

@keyframes back {
    100% {
        background-position: 2000px 0;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

.glow-on-hover {
    width: 220px;
    height: 50px;
    border: none;
    outline: none;
    color: #fff;
    background: #AFEEEE;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #294fb8, #AFEEEE, #227fe2, #AFEEEE);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .1s ease-in-out;
    border-radius: 10px;
}

.glow-on-hover:active {
    color: #ffffff
}

.glow-on-hover:active:after {
    background: transparent   ;
}

.glow-on-hover:hover:before {
    opacity: 1;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #5db6d6 ,#84b4b4);
    box-shadow: 0px 0px 10px #ffffff;
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--danger);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {
        left: 0;
    }

    50% {
        left: 145px;
    }

    100% {
        left: 0;
    }
}

@-webkit-keyframes section-title-run-center {
    0% {
        left: 50%;
        margin-left: -75px;
    }

    50% {
        left: 50%;
        margin-left: 45px;
    }

    100% {
        left: 50%;
        margin-left: -75px;
    }
}

@-webkit-keyframes section-title-run-sm {
    0% {
        left: 0;
    }

    50% {
        left: 85px;
    }

    100% {
        left: 0;
    }
}

/*** Service ***/

.industies-served{
    background-color: rgba(129, 126, 126, 0.151);
}
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
    background-color: rgba(129, 126, 126, 0.151);
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    rotate: 45deg;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--danger);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
    /* rotate: 45deg; */
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--danger);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #2f26264c;
    box-shadow: 0 0 2rem #DDDDDD;
    color: white;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}

/*** Competitive Advantages***/
.competitive-item {
    background-color: rgba(129, 126, 126, 0.163);
  }


@media (max-width: 767px) {
    .competitive-item-surroundings{
      background-color: rgba(129, 126, 126, 0.163);
    }
  }
/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 10px;
    bottom: 10px;
    z-index: 99;
}

.bg-header {
    background: #310d56;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: 1px;
    }
}

.marqu ul {
    display: flex;
    list-style: none;
    margin: 0;
    animation: scroll 50s infinite linear;
}

.marqu ul li {
    white-space: nowrap;
    padding: 10px 24px;
    color: #494949;
    position: relative;
}

.marqu ul li::after {
    content: "";
    width: 1px;
    height: 100%;
    background: #b8b8b8;
    position: absolute;
    top: 0;
    right: 0;
}




.fixed-btn {
    position: fixed;
    bottom: 2%;
    left: .5%;
    background-image: linear-gradient(83.2deg, #420f7b 10.8%, #4A1145 94.3%);
    width: 180px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 3px;
    box-shadow: 4px 4px 4px #420f7b;
    cursor: pointer;
    z-index: 1;
}

.fixed-btn a {
    text-transform: uppercase;
    font-family: arial;
    font-weight: 900;
    color: #fff;
}

.fixed-btn:active {
    box-shadow: 0 0;
}

.my-xxl-7 {
    margin-top: 7rem;
}

.marginlow {
    margin-top: 0;
    padding-bottom: 0;
}

.page-header h1, .page-header h3 {
    text-align: center;
    font-size: 50px;
    text-transform: uppercase;
    color: #fdfdfd;
    letter-spacing: 1px;
    font-family: "Playfair Display", segiz;
    font-weight: 400;
}

.page-header h1 {
    font-size: 50px;
    font-weight: 400;
}

.page-header h3 {
    font-size: 35px; /* Adjusted to be smaller than h1 */
    font-weight: 400; /* Assuming you want the same font-weight, adjust if needed */
}

.page-header h1 span, .page-header h3 span {
    margin-top: 5px;
    font-size: 15px;
    color: #444;
    word-spacing: 1px;
    font-weight: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: "Raleway", sans-segiz;
    font-weight: 500;

    display: grid;
    grid-template-columns: 1fr max-content 1fr;
    grid-template-rows: 27px 0;
    grid-gap: 20px;
    align-items: center;
}

.page-header h3 span {
    font-size: 15px;
}

.page-header h3 span {
    font-size: 12px; /* Slightly smaller than h1 span */
}

.page-header h1 span:after, .page-header h1 span:before,
.page-header h3 span:after, .page-header h3 span:before {
    content: " ";
    display: block;
    height: 5px;
    background-color: #420f7b;
}


@keyframes rotateLetter {
    0% { transform: translateX(0px); }
    25% { transform: translateX(10px) rotate(360deg); }
    50% { transform: translateX(0px); }
    75% { transform: translateX(-10px) rotate(-360deg); }
    100% { transform: translateX(0px); }
}

.letter-animate {
    display: inline-block;
    animation: rotateLetter 5s infinite linear;
    color: white;
}

.voice-waves {
    display: flex;
    align-items: center;
    justify-content: space-between  ;
    width: 200px; /* Adjust size as needed */
    height: 50px; /* Adjust size as needed */
}

.bar {
    width: 1px; /* Adjust thickness of each bar */
    height: 5px; /* Initial height of each bar */
    background-color: #ffffff; /* Color of the bars */
    animation: pulse 1s ease-in-out infinite;
}

/* Define the keyframes for the pulse animation */
@keyframes pulse {
    0%, 100% {
        height: 5px; /* Minimum height of the bars */
    }
    50% {
        height: 60%; /* Maximum height of the bars */
    }
}

/* Generic animation delay using :nth-child */
.bar {
    animation-delay: calc(0.2s * (var(--n) - 1));
}

.animated-subtitle {
    animation: fadeInOut 5s linear infinite;
}

.subtitle {
    color: white; /* Ensures high contrast and visibility */

    
}

/* Define the keyframes for the fade in and fade out animation */
@keyframes fadeInOut {
    0%, 100% {
        opacity: 0; /* Container is fully transparent at start and end */
    }
    25%, 75% {
        opacity: 1; /* Container is fully visible in the middle */
    }
}

