/* Code For header section */
/* nav bar section */
nav {
    font-family: "Montserrat", sans-serif;
    width: 100%;

}

nav a {
    text-decoration: none !important;
    list-style: none !important;
    font-size: 0.8vw;
    font-weight: 600;
    text-transform: uppercase;
    color: #dddcdc;
    transition: 1s all ease-in-out;
    padding: 15px 30px;
    border-radius: 8px;
    background: transparent;
    transition: 1s all ease-in-out;


}

nav .ics-nav-ul a:hover {
    background-image: linear-gradient(to right top, #ffde59, #fdd94e, #fcd442, #face34, #f9c925, #f8c71d, #f7c512, #f6c302, #f5c302, #f4c403, #f4c403, #f3c404);
    color: #121212;

}

.ics-nav {
    position: fixed;
    background: #121212;
    z-index: 1000;
    transition: background 300ms ease-in;
}

.nav-wrapper {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* height: 100px; */
}

.company-name {
    font-size: 0.8vw;
    text-transform: uppercase;
}

.text-20 {
    font-size: 1.5vw;
}

/* .company-name span{
    color: #474747;
} */

nav ul {
    display: flex;
    justify-content: space-between;
    /* width: 50%; */
}

nav ul li {
    margin: 0 5px;
    /* width: 50%; */
}

.nav-contact {
    padding: 15px 30px !important;
    border-radius: 8px;
    background-image: linear-gradient(to right top, #ffde59, #fdd94e, #fcd442, #face34, #f9c925, #f8c71d, #f7c512, #f6c302, #f5c302, #f4c403, #f4c403, #f3c404);
    color: #fff;
}

.nav-contact:hover {
    padding: 15px 30px !important;
    border-radius: 8px;
    background-image: linear-gradient(to right top, #ffde59, #fdd94e, #fcd442, #face34, #f9c925, #f8c71d, #f7c512, #f6c302, #f5c302, #f4c403, #f4c403, #f3c404);
    color: #fff;
    box-shadow: 0px 0px 15px #fff;
}

.logo h3 {
    font-size: 3rem;
    color: #fff;
    font-weight: 600;
    letter-spacing: 8px;
    font-family: "Montserrat", sans-serif;
}

.logo img {
    width: 3vw;
    margin-right: 5px;
}


#hero {
    /*background: linear-gradient(to right, rgba(18, 18, 18, 0.8) 50%, rgba(18, 18, 18, 0)), url('../img/banner-img.png');*/
    background: linear-gradient(to right, rgba(18, 18, 18, 0.8) 50%, rgba(18, 18, 18, 0)), url('../img/products.jpeg');
    background-size: cover;
    height: 100vh;
    width: 100%;
}

#hero .header-tagline {
    font-size: 3.5vw;
    font-weight: 600;
    color: #dddcdc;
    /* font-family: "Ubuntu", sans-serif; */

}

.theme-tagline {
    background: linear-gradient(to right top, #ffde59, #fdd94e, #fcd442, #face34, #f9c925, #f8c71d, #f7c512, #f6c302, #f5c302, #f4c403, #f4c403, #f3c404);
    -webkit-background-clip: text;
    color: transparent;
}

#hero .subtext-wrapper {
    transform: translateX(10%);
}

#hero .header-subtext {
    font-size: 1.1vw;
    width: 50%;
    color: #dddcdc;
    margin-bottom: 50px !important;
    margin-top: 35px;
    text-align: justify;
}

#hero .btn-solution {
    text-decoration: none;
    color: #fff;
    background: #121212;
    font-size: 0.8vw;
    padding: 15px 30px;
    border-radius: 8px;
    /* border: 1px solid #dddcdc; */
    box-shadow: 0px 0px 15px #F3C404;
    margin-top: 25px !important;
    transition: all 1s ease-in-out;
    text-transform: uppercase;
}

#hero .btn-solution:hover {
    padding: 15px 30px !important;
    border-radius: 8px;
    background-image: linear-gradient(to right top, #ffde59, #fdd94e, #fcd442, #face34, #f9c925, #f8c71d, #f7c512, #f6c302, #f5c302, #f4c403, #f4c403, #f3c404);
    color: #121212;

}

.client-slider {
    padding: 15px 0;
}

.client-wrapper {
    width: 90%;
    margin: 0 auto;
    border-radius: 150px;
    overflow: hidden;
}

.client-logo {
    width: 180px;
    height: 100px;
    text-align: center;
    object-fit: contain;
    mix-blend-mode: color-burn;
    margin: 0 30px;
}


/* About us section start */
#about-us {
    /* background-color: #dddcdc; */
    margin-top: 4vw;
    padding: 20px 0px;
    position: relative;
}

.section-subheading {
    animation: textshadow 3000ms ease-in-out infinite !important;
    /* Apply the animation to the text-shadow property */
}

/* Define the keyframes for the textshadow animation */
@keyframes textshadow {
    0% {
        text-shadow: 0 0 15px #fdd94e;
        /* Start with a white text shadow */
    }

    50% {
        text-shadow: 0 0 15px #fff;
        /* End with a purple text shadow */
    }

    100% {
        text-shadow: 0 0 15px #fdd94e;
        /* Start with a white text shadow */
    }
}

.about-text {
    margin-top: 3vw;
    margin-bottom: 3vw;
    font-size: 1vw;
    width: 88%;
    font-weight: 500;
}

/* .about-text p{
    margin-bottom: 25rem;
} */
.about-us-btn {
    text-decoration: none;
    color: #fff;
    background: #121212;
    padding: 15px 30px;
    border-radius: 8px;
    /* border: 1px solid #dddcdc; */
    box-shadow: 0px 0px 15px #fdd94e;
    transition: all 500ms ease-in;
    text-transform: uppercase;
}

.about-us-btn:hover {
    padding: 15px 30px !important;
    border-radius: 8px;
    background: linear-gradient(to right top, #ffde59, #fdd94e, #fcd442, #face34, #f9c925, #f8c71d, #f7c512, #f6c302, #f5c302, #f4c403, #f4c403, #f3c404);
    color: #121212;

}



.why-us-wrapper .card::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right top, #ffde59, #fdd94e, #fcd442, #face34, #f9c925, #f8c71d, #f7c512, #f6c302, #f5c302, #f4c403, #f4c403, #f3c404);
    z-index: -1;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: 500ms all ease-in;

}
.why-us-wrapper .card{
    position: relative;
    z-index: 1;
    transition: 500ms all ease-in;
}
.why-us-wrapper .card:hover::after {
    transform: scaleY(1);
}

.why-us-wrapper .card:hover *{
    transition-delay: 500ms;
    color: #121212;
}
.why-us-wrapper .card:hover .number {
    transition-delay: 500ms;
    color: #121212 !important;
}
.why-us-wrapper .card:hover p {
    transition-delay: 200ms;
    transition: 500ms all ease;
    color: #121212 !important;
}
.experience p {
    color: #474747;

}

.number {
    font-size: 3.5vw;
    color: #121212;

    font-family: "Montserrat", sans-serif !important;
}

.experience .number::before {
    display: inline-block;
    content: "";
    border-top: 0.2rem solid #121212;
    width: 2rem;
    margin: 0 1rem 0 0;
    transform: translateY(-1vw);

}


/* Why Ics Section  */
#why-ics {
    margin: 35px auto;
    width: 90%;
}

.why-us-header p {
    font-size: 1.8vw;
    font-family: "Montserrat", sans-serif !important;
    font-weight: 400;
}

.why-us-wrapper .card:hover {
    transform: scale(1.1);
    transition: 0.5s all ease-in-out;
}



/* News Section style starts here */
#news {
    padding: 50px 0;
    /* background-image: linear-gradient(to left bottom, #ffffff, #f6f6f6, #eeedee, #e5e5e5, #dddcdc); */
}

#news .news-header {
    height: 30vh;
    /* background-image: linear-gradient(to left bottom, #ffffff, #f6f6f6, #eeedee, #e5e5e5, #dddcdc); */
}

#news .news-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#news .news-heading {
    font-size: 1.8vw;
    font-weight: 300;
    color: transparent !important;
    font-family: "Montserrat", sans-serif;
}

#news .card-body p {
    color: #dddcdc;
    text-align: justify;
}

#news .news-btn {
    color: #dddcdc;
    text-decoration: none;
    padding: 15px 30px;
    border: 1px solid #dddcdc;
    margin-top: 20px;
    transition: 500ms ease;
}

#news .news-btn:hover {
    background-color: #dddcdc;
    color: #121212;
    text-decoration: none;
    padding: 15px 30px;
    border: 1px solid #121212;
    margin-top: 20px;
}

#news .shadow-theme {
    box-shadow: 0 0 25px #ffffff;
}

.line-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
    position: relative;
    overflow: hidden;
}

.line-block {
    width: .32vw;
    height: .6vw;
    background-color: var(--black);
    position: relative;
}

.line.anim.v {
    top: auto;
    bottom: auto;
}

/* leader section */
.leader-name {
    font-family: "Montserrat", sans-serif;
}

#leader .leader-container {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#leader .leader-container .leader-img {
    object-fit: contain;
    max-width: 100%;
    border-radius: 50%;
    object-position: bottom;
    transition: 500ms ease;
}

#leader .leader-container .leader-img:hover {
    transform: scale(1.1);
}

#leader .leader-name h3,
#leader .leader-name h5 {
    font-family: "Montserrat", sans-serif !important;
    font-weight: 600;

}

#leader .leader-heading {
    font-size: 1.2rem;
    text-align: center;
}

#leader .leaders-social {
    width: 80%;
    margin: 18px auto;
}

#leader .leaders-social ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#leader .leaders-social ul li {
    background-color: #121212;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #dddcdc;
    transition: 500ms;
}

#leader .leader-info p {
    text-align: justify;
    font-size: 14px;
}

#leader .leaders-social ul li:hover {
    background-image: linear-gradient(to right top, #5e5e52, #615d54, #635d56, #625d59, #615d5c) !important;
    -webkit-background-clip: text;
    color: transparent;
}

#leader .leader-more {
    margin-top: 50px;
    padding: 10px 20px;
    background-color: #121212;
    color: #dddcdc;
    text-decoration: none;
    font-size: 15px;
    transition: 500ms ease;
}

#leader .leader-more:hover {
    background: linear-gradient(to right top, #ffde59, #fdd94e, #fcd442, #face34, #f9c925, #f8c71d, #f7c512, #f6c302, #f5c302, #f4c403, #f4c403, #f3c404);
    color: #121212;
}

#leader .leader-more:hover a {
    color: #121212 !important;
}


.hidden-content {
    opacity: 0;
    transform-origin: bottom;
    max-height: 0;
    overflow: hidden;
    transition: max-height 1s ease, transform 1s ease;
    position: relative;
    font-weight: 400;
    font-size: 1rem;

}

.hidden-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: #ebeaea;
    transform: scaleY(1);
    transform-origin: top;
    width: 100%;
    height: 100%;
    transition: transform 800ms ease-in-out;
}

.content-accordian:hover .hidden-content::after {
    transform: scaleY(0);
    transform-origin: bottom;
}

.content-accordian:hover .hidden-content {
    opacity: 1;
    max-height: 500px;
    transform-origin: bottom;
}

.content-accordian:hover h2 .fa-chevron-down {
    transform: rotate(180deg);
    animation: rotate_icon 1000ms ease-in-out;
}

.theme-tagline-1{
    background-image: linear-gradient(to right top, #5e5e52, #615d54, #635d56, #625d59, #615d5c) !important;
    -webkit-background-clip: text;
    color: transparent;
}
.content-accordian:hover h2 {
    background-image: linear-gradient(to right top, #5e5e52, #615d54, #635d56, #625d59, #615d5c) !important;
    -webkit-background-clip: text;
    color: transparent;
}

.content-icon {
    background: rgba(18, 18, 18, 1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-icon i {
    font-size: 0.8rem;
}

.content-icon-outer {
    background: rgba(18, 18, 18, 0.4);
    border-radius: 50%;
    padding: 15px 5px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes rotate_icon {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(180deg);
    }

}

.content-accordian::before {
    content: '';
    position: absolute;
    top: -4%;
    width: 12px;
    height: 8px;
    background: #121212;

}

.solutions-content::before {
    content: '';
    position: absolute;
    top: -2%;
    width: 12px;
    height: 8px;
    background: #121212;
}

.content-accordian,
.solutions-content {
    position: relative;
    border-top: 1px solid #c7c6c6;
}

.content-img {
    width: 60px;
    margin: auto;
}

.content-accordian .content h2,
.solutions-content .content h2 {
    font-family: "Ubuntu", sans-serif;
    font-size: 1.5vw;
}

.team-image {
    width: 100%;
    height: 200px !important;
    aspect-ratio: 2/3;
    object-fit: cover;
    object-position: center;
}