/* custom CSS  */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Rubik', sans-serif;
}

body {
    font-family: 'Rubik', sans-serif;
}

:root {
    --white: #fff;
    --light-White : #F5F5F8;
    --Gray-Dark: #1E1E1E;
    --Gradient: linear-gradient(136deg, #FF4B4B -34.99%, #5675E1 -11.43%, #3C8EEE 13.59%, #348DF6 33.47%, #2C70F5 51.13%, #728CEB 67.32%, #6FADF6 86.46%, #1774FF 106.33%);
    --GradientHover: linear-gradient(136deg, #ff2c2c -34.99%, #375be0 -11.43%, #2072cf 13.59%, #1573de 33.47%, #0e50d3 51.13%, #2c49b1 67.32%, #2061ab 86.46%, #074bb0 106.33%);
}

li {
    list-style: none;
}

ul {
    margin: 0 !important;
    padding: 0 !important;
}

.right-header {
    display: flex;
    gap: 23px;
    align-items: center;
}

a {
    text-decoration: none !important;
}

.main {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* mobile menu  */
.mobile-menue {
    display: none;
}

.sidepanel {
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: #001e41f2;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidepanel a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: var(--white);
    display: block;
    transition: 0.3s;
}
.sidepanel a:hover {
    color: #267dfd;
}

.sidepanel .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 30px;
}

.openbtn {
    display: none;
    cursor: pointer;
    border: none;
    background: none;
}

.openbtn:hover {
    background: none;
}

/* mobile menu end  */
/* custom CSS  */


/* ----------------------------------------------------------------------------------------------------------------------------------------
/* ----------------------------------------------------------------------------------------------------------------------------------------

INDEX PAGE CSS START

/* ----------------------------------------------------------------------------------------------------------------------------------------
/* ---------------------------------------------------------------------------------------------------------------------------------------- */

/* Header CSS  */

.header {
    position: fixed;
    background: var(--white);
    width: 100%;
    height: auto;
    z-index: 999;
    box-shadow: 1px 1px 5px #cec9c9;
}

.header-logo img {
    width: 170px;
    height: auto;
    padding: 15px 0;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-text {
    display: flex;
    align-items: flex-start;
}

.header-text li a {
    border: 1px solid transparent;
    padding: 5px 15px;
}

.header-text li a:hover {
    border-bottom: 1px solid #267dfd;
    box-shadow: 0 1px 0 #0000004d;
    transition: transform 0.5s ease-in-out;
}

.mobile-menu img {
    display: none;
}

.try-btn {
    color: var(--white);
    font-family: 'Rubik', sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display: flex;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 26px;
    background: var(--Gradient);
    transition: 0.5s;
}

.try-btn:hover {
    transition: 0.5s;
    box-shadow: 2px 3px 3px #0000004f;
    background: var(--GradientHover)
}

/* Header CSS  */
/* home Wallpaper Start  */
.ab{
    position: absolute;
}
.wall-title {
    top: 50%;
    width: 50%;
    transform: translate(0, -50%);
    color: var(--white);
    line-height: normal;
}

.wall-title h2 {
    font-size: 40px;
    margin-bottom: 15px;
    font-family: 'Rubik', sans-serif;
}

.try-btn-wall {
    color: var(--white);
    border-radius: 26px;
    padding: 10px 40px;
    background: var(--Gradient);
    top: 105%;
}

.try-btn-wall:hover {
    transition: 0.5s;
    background: var(--GradientHover);
}

.image-container {
    width: 100%;
    display: block;
}

.section-title p {
    text-align: center;
    cursor: default;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    background: var(--Gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 70px 0 5px 0;
}

.section-title h4 {
    color: var(--Gray-Dark);
    font-size: 45px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
}

/* home Wallpaper End  */
/* about section start  */

.about-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
    font-size: 0;
    gap: 20px;
    margin-top: 50px;
}

.about-box {
    display: inline-block;
    vertical-align: top;
    border: 1px solid transparent;
    width: 100%;
    padding: 20px;
    background: var(--light-White);
    border-radius: 20px;
    font-size: 14px;
}

.about-box:hover {
    border: 1px solid #DBDBDB;
    background: var(--white);
    box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
}

.about-box h4 {
    margin: 15px 0;
    font-size: 22px;
    cursor: default;
}

.about-box p {
    margin-bottom: 50px;
    cursor: default;
}

.about-box a {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration-line: underline;
}

/* about section end */

/* pricing section start  */
.pricing-section {
    background: #001E41;
    margin-top: 70px;
    padding: 1px 0 80px 0;
}


.pricing-box h5 strong {
    background: var(--Gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 45px;
    font-weight: 700;
    line-height: normal;
}

.pricing-box h5 {
    color: #9098A6;
    font-size: 18px;
    line-height: normal;
    font-weight: 400;
    margin-bottom: 35px;
}

.section-title h3 {
    background: var(--Gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    font-size: 45px;
    margin-bottom: 40px;
    line-height: normal;
    cursor: default;
}

.pricing-box {
    background: #071737;
    border-radius: 20px;
    padding: 25px;
    transition: 0.5s;
}

.pricing-box:hover {
    background: var(--white);
    transition: 0.5s;
}

.pricing-box ul li {
    display: flex;
    gap: 10px;
}

.price-icon {
    width: 24px !important;
}

.pricing-box p {
    color: #9098A6;
    font-size: 20px;
    line-height: normal;
    font-weight: 400;
}

.pricing-box ul li {
    display: flex;
    gap: 10px;
    color: #9098A6;
    margin-bottom: 8px;
}

.add-to-cart {
    border-radius: 26px;
    background: var(--Gradient);
    display: flex;
    padding: 10px 40px;
    justify-content: center;
    margin-top: 35px;
    align-items: center;
    gap: 10px;
    color: var(--white);
    margin-bottom: 20px;
}

.add-to-cart:hover {
    background: var(--GradientHover);
}


/* pricing section End  */

/* compny logos start  */

.company-parter {
    padding: 70px 0;
}

.compny-title p {
    background: var(--Gradient);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    background-clip: text;
    margin-bottom: 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.compny-title h3 {
    color: var(--Gray-Dark, #1E1E1E);
    font-size: 45px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.compny-title h4 {
    color: #4A4A4A;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 45px;
}

.compnay-logos ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18%, 1fr));
    font-size: 0;
    gap: 10px;
    margin-top: 50px;
}

.compnay-logos ul li a img {
    width: 150px;
    display: inline-block;
    vertical-align: middle;
}

/* compny logos End  */
/* succses section start */
.sucsses {
    background: var(--light-White);
    padding: 70px 0;
}

.persentage {
    justify-content: left !important;
}

.compny-title h3 span {
    background: var(--Gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 45px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.goal {
    display: block;
    font-size: 0;
    width: 100%;
}

.sussces-ratio {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    width: 70%;
}

.sussces-btn {
    font-size: 14px;
    display: inline-block;
    width: 30%;
    vertical-align: middle;
    text-align: right;
}

.sussces-ratio ul {
    display: flex;
    justify-content: space-between;
}

.sussces-ratio ul li p {
    background: var(--Gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 60px;
}

.sussces-ratio ul li h4 {
    color: #1E1E1E;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 0;
}

.sussces-btn a {
    border-radius: 48px;
    padding: 10px 60px;
    border: 1px solid #388ef3;
    color: #388ef3;
    background: var(--Gradient);
    background-clip: text;
    -webkit-background-clip: text;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 126%;
    transition: 0.5s;
    z-index: -1;
}

.sussces-btn a:hover {
    color: var(--white);
    background-clip: text;
    -webkit-background-clip: text;
    transition: 0.5s;
    z-index: 1;
    box-shadow: 2px 3px 3px #0000004f;
    background: var(--Gradient);
}

/* succses section End */
/* Blog Section Start  */

.Blog-box {
    background: var(--light-White);
    height: 400px;
    border-radius: 25px;
}

.image-box {
    width: auto;
    height: 287px;
    overflow: hidden;
    border-radius: 25px 25px 0 0;
}

.blog-section {
    padding-top: 70px;
}

.blog-section-hover {
    position: relative;
    overflow: hidden;
}

.Blog-box p {
    font-size: 20px;
    padding: 0 10px;
    color: #000;
    margin-top: 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 387px;
}


.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
    background-color: transparent;
}

.blog-info {
    display: flex;
    justify-content: space-between;
    margin: 0 10px !important;
}

.blog-info li {
    color: #292D32;
    text-transform: capitalize;
}

.blog-info li img {
    width: 20px !important;
    height: auto;
    display: inline-block !important;
    vertical-align: middle;
}

.blog-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-section-hover:hover .image-box img {
    transform: scale(1.05);
    background-color: rgba(0, 0, 0, 0.4) !important;
    transition: 0.5s;

}

.Blog-box:hover {
    background: var(--Gradient)
}

.Blog-box:hover p {
    color: var(--white);
}

.read-more-btn {
    border-radius: 26px;
    background: var(--Gradient);
    display: block;
    padding: 10px 0;
    margin: 30px auto;
    color: var(--white);
    width: 200px;
    text-align: center;
    transition: transform 1s ease-in-out;
}

.read-more-btn:hover {
    background: var(--GradientHover);
    box-shadow: 2px 3px 3px #0000004f;
    transition: transform 1s ease-in-out;

}

/* Blog Section End  */
/* ----------------------------------------------------------------------------------------------------------------------------------------
/* ----------------------------------------------------------------------------------------------------------------------------------------



/* Testimonial Start  */
/* ----------------------------------------------------------------------------------------------------------------------------------------
/* ----------------------------------------------------------------------------------------------------------------------------------------*/

.test-box {
    background: var(--light-White);
    padding: 35px;
    border-radius: 25px;
}

.test-box .test-image {
    width: 55px !important;
    height: auto;
}

.test-name {
    display: block !important;
}

.test-box ul {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 20px;
}

.test-reting {
    width: 120px !important;
    height: auto;
    position: absolute;
    right: 25px;
    top: 50px;
}

.test-name li a {
    color: #1E1E1E;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.test-name li p {
    color: #4A4A4A;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin: 0;
}

.testimonial-slid {
    margin-top: 50px;
    padding-bottom: 70px;
}

.testimonial-comment {
    color: #4A4A4A;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin: 0;
    margin-top: 30px;
}

/* Testimonial END  */
/* ----------------------------------------------------------------------------------------------------------------------------------------
/* ----------------------------------------------------------------------------------------------------------------------------------------*/
/* FAQs Start  */
/* ----------------------------------------------------------------------------------------------------------------------------------------
/* ----------------------------------------------------------------------------------------------------------------------------------------*/

.section-title h6 {
    color: rgb(74, 74, 74);
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: auto;
    padding: 00 5%;
    margin-bottom: 50px;
}

.faq-item {
    margin: 20px 170px;
    padding: 20px;
    border: 1px solid #E8EAED;
    border-radius: 10px;
    background: var(--light-White);
}

.question {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.question li {
    color: #1E1E1E;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.faq-plus:hover,
.faq-minus:hover {
    cursor: pointer;
}

.faq-minus {
    display: none;
}

.answer {
    display: none;
}

.answer p {
    margin: 0;
    margin-top: 10px;
    color: #4A4A4A;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}


/* FAQs END  */
/* ----------------------------------------------------------------------------------------------------------------------------------------
/* ----------------------------------------------------------------------------------------------------------------------------------------*/

/* Contact-Section Start  */
/* ----------------------------------------------------------------------------------------------------------------------------------------
/* ----------------------------------------------------------------------------------------------------------------------------------------*/
.contact-section {
    margin-top: 70px;
    display: flex;
    gap: 20px;
}

.contact-info {
    width: 50%;
    background: #001E41;
    border-radius: 25px;
    padding: 15px;
}

.contact-info h2 {
    color: var(--white);
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.contact-info ul li {
    margin: 10px 0;
}

.contact-info ul li img {
    width: 22px;
    margin-right: 15px;
}

.contact-info ul li a {
    transition: 0.5s;
    color: var(--white);
}

.contact-info ul li a:hover {
    color: #0d6efd;
    transition: 0.5s
}

.sosial-icon {
    display: flex;
    gap: 15px;
    margin-top: 100px !important;
}

.contact-icon {
    color: var(--white);
    font-size: 20px;
    transition: 0.5s
}

.contact-icon:hover {
    color: #0d6efd;
    font-size: 20px;
    cursor: pointer;
    transition: 0.5s;
}

.contact-user {
    width: 100%;
}

.contact-user h4 {
    color: #9098A6;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}

.contact-table {
    width: 100%;
    margin-top: 30px;
}

.contact-input {
    width: 96%;
    border: none;
    border-bottom: 1px solid #9098A6;
    margin-bottom: 15px;
    outline: none;
    color: #001e41;
    text-transform: capitalize;
}

.input-width {
    width: 98%;
}

.contact-submit {
    color: var(--white);
    font-family: Rubik, sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 6px 20px;
    border-radius: 10px;
    background: var(--Gradient);
    transition: all 0.5s ease 0s;
    border: none;
}

.contact-submit:hover {
    transition: all 0.5s ease 0s;
    background: var(--GradientHover);
}

/* Contact-Section END  */
/* ----------------------------------------------------------------------------------------------------------------------------------------
/* ----------------------------------------------------------------------------------------------------------------------------------------*/

/* Project-line Start  */
/* ----------------------------------------------------------------------------------------------------------------------------------------
/* ----------------------------------------------------------------------------------------------------------------------------------------*/
.project-sec {
    background: var(--light-White);
    border-radius: 25px;
    padding: 40px;
    margin: 70px 0;
}

.project-sec ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-text {
    width: 70%;
}

.project-sec ul li p {
    margin: 0;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    background: var(--Gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.project-sec ul li h6 {
    color: #9098A6;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    margin: 20px 0 0 0;
}


.project-btn a {
    padding: 15px 35px;
    border-radius: 48px;
    color: var(--white);
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 0;
    background: var(--Gradient);
    color: var(--white);
}

.project-btn a:hover {
    background: var(--GradientHover);
    transition: all 0.5s ease 0s;
    box-shadow: rgba(0, 0, 0, 0.31) 2px 3px 3px;
}


/* Project-line End  */
/* ----------------------------------------------------------------------------------------------------------------------------------------
/* ----------------------------------------------------------------------------------------------------------------------------------------*/


/* Footer strat  */
.main-footer-section {
    background: var(--light-White);
    padding-top: 40px;
}

.main-footer {
    border-bottom: 0.5px solid #0000002b;
    padding-bottom: 40px;
}

.footer-logo {
    width: 150px;
    height: auto;
}

.footer-info {
    color: #9098A6;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize;
}

.footer-icon {
    margin-top: 30px;
    display: flex;
    gap: 6px;
}

.footer-icons {
    color: var(--white);
}

.footer-icon li {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    z-index: 0;
    transition: all 0.3s ease-in-out;
}

.footer-icons {
    color: #001E41;
    text-align: center;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    font-size: 14px;
}

.footer-icon li a::after {
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    background-color: #001E41;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.06;
    transition: all 0.3s ease-in-out;
}

.footer-icon li a:hover:after {
    opacity: 0.25;
    transition: all 0.3s ease-in-out;
}

.footer-title {
    color: var(--white);
}

.footer-title {
    font-size: 20px;
    color: #000000;
    cursor: default;
    font-weight: 600;
    margin-bottom: 30px;
}

.footer-ul-text li {
    margin-bottom: 10px;
}

.light-text {
    color: #001E41;
    transition: 0.5s ease;
    position: relative;
}

.light-text::before {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 100%;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    background-color: #000000;
    left: -20px;
}

.light-text:hover {
    padding-left: 15px;
    transition: 0.5s ease;
    color: #267dfd;

}

.footer-ul-text li a:hover::before {
    opacity: 0.7;
    left: 0;
}

.light-texts {
    color: black;
    transition: 0.5s ease;
    display: block;
    width: 100%;
    font-size: 0;
}

.light-texts:hover {
    color: #267dfd;
    transition: 0.5s ease;
}

.light-texts p {
    font-size: 16px;
    display: inline-block;
    vertical-align: middle;
    width: 90%;
    position: relative;
    bottom: 5px;
    margin-left: 5px;
}

.footer-add {
    width: 6%;
    display: inline-block !important;
    font-size: 16px !important;
    vertical-align: top;
}

.sub-footer {
    padding: 40px 0;
    display: flex;
    -webkit-box-align: center;
    justify-content: space-between;
    align-items: center;
}

.left-sub-footer p {
    color: #000000;
}

.paymentbox-footer {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: end;
    justify-content: flex-end;
}

.paymentbox-footer li {
    margin: 0 5px;
}

.paymentbox-footer li a img {
    width: 40px;
    height: auto;
}

.bottom-top {
    font-size: 25px;
    color: var(--white);
    background: var(--Gradient);
    border-radius: 10px;
    padding: 5px 10px;
    position: relative;
    left: 95%;
    bottom: 75px;
    transition: 1s;
}

.bottom-top:hover {
    background: var(--GradientHover);
    transition: 1s;
}

/* Footer End  */
/* Footer Section End  */
/* INDEX PAGE CSS END */

/* ----------------------------------------------------------------------------------------------------------------------------------------
/* ---------------------------------------------------------------------------------------------------------------------------------------- */
/* animation CSS  */
/* ----------------------------------------------------------------------------------------------------------*/


.hidden {
    opacity: 0;
    filter: blur(2px);
    transform: translateY(5%);
    transition: all 1s;
}

@media(prefers-reduced-motion) {
    .hidden {
        transition: none;
    }

}

.show {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
    transition: 1s;
}