body {
    color: #1119;
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: 300;
    letter-spacing: .2px;
    background-color: white;
}

html,
body {
    height: 100%;
    scroll-behavior: smooth;
}

.btn:focus {
    border: none !important;
    box-shadow: none !important;
}

.section-animate {
    transform: translateY(40px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

.section-animate.active {
    transform: translateY(0);
}


.scroll-move {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease-out;
}

.scroll-move.active {
    opacity: 1;
    transform: translateY(0);
}


.scroll-wrapper {
    scroll-snap-type: y mandatory;
}

section {
    scroll-snap-align: start;
    scroll-snap-stop: always;

}

section {
    scroll-margin-top: 120px;
}


.navbar-brand {
    font-size: 1.5rem;
}

.navbar-brand:hover {
    color: #000;
}

.hero-wrapper {
    position: relative;
    /* background-size: 24px 24px, cover; */
    overflow: visible;
}

.box-gradient {
    position: absolute;
    top: 2%;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px, rgba(0, 0, 0, 0.09) 0px 4px 2px, rgba(0, 0, 0, 0.09) 0px 8px 4px, rgba(0, 0, 0, 0.09) 0px 16px 8px, rgba(0, 0, 0, 0.09) 0px 32px 16px;
    margin: auto;
    max-height: 920px;
    height: 100%;
    border-radius: 40px;
    background-color: #e3e4ea;
    width: 95%;
    z-index: -1;
}





.hero-img {
    /* box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important; */
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin-top: 157px;
    border-radius: 40px;
    position: relative;
}


.hero-navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    z-index: 999;
    padding: 12px 30px;
    border-radius: 50px;

    background: rgba(227, 228, 234, 0.45);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border: 1px solid rgba(255, 255, 255, 0.25);

    box-shadow:
        rgba(0, 0, 0, 0.18) 0px 6px 18px,
        rgba(255, 255, 255, 0.15) 0px 0px 0px 1px inset;
}

.hero-navbar {
    transition:
        transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.35s ease;
}

.hero-navbar.nav-hidden {
    transform: translate(-50%, -120%);
    opacity: 0;
}

.hero-navbar .nav-link {
    color: #000000;
    margin-left: 0;
    margin-right: 0;
    padding: .5rem 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;

}

.hero-navbar .nav-link:hover {
    color: #2f80ff;
}


.hero-content {
    max-width: 900px;
    margin-top: 130px;
}

.hero-content h1 {
    color: #111;
    letter-spacing: -1px;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.2;
}

@media screen and (max-width: 767px) {
    .hero-content h1 {
        font-size: 2rem;
        padding-top: 45px;
    }

    .hero-img {
        height: 364px;
        margin-top: 38px;
    }
}

@media (min-width: 556px) and (max-width: 767px) {

    .hero-img {
        height: 379px
    }
}



.hero-content h1 span {
    color: #2f80ff;
}

.hero-desc {
    font-size: 16px;
    margin-top: 20px;
    line-height: 1.4;
}

.box-shadow {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.btn-order {
    border-radius: 50px !important;
    padding: 8px 22px !important;
    font-size: 15px !important;
}

.btn-order:hover {
    background-position: right center;
    color: #fff;
    text-decoration: none;
}



.hero-actions {
    background-image: linear-gradient(to right, #ee0979 0%, #ff6a00 51%, #ee0979 100%)
}

.hero-actions {
    margin: 10px;
    padding: 15px 45px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    box-shadow: 0 0 20px #eee;
    border-radius: 100px;
    display: block;
    border: 1px solid #fff0;
    display: block;
}

.hero-actions:hover {
    background-position: right center;
    color: #fff;
    text-decoration: none;
}




.parallax-text,
.parallax-image {
    will-change: transform;
}

.parallax-text,
.parallax-image {
    transition: transform 0.05s linear;
}


.hero-watermark {
    font-size: 180px;
    font-weight: 800;
    color: rgba(47, 128, 255, 0.15);
    margin-bottom: -80px;
    pointer-events: none;
}



.hero-image-box-img {
    width: 100%;
    border-radius: 40px;
}

.hero-image-box3::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.55) 35%,
            rgba(0, 0, 0, 0.25) 65%,
            rgba(0, 0, 0, 0.05) 100%);
    z-index: 1;pointer-events: none; 
}

.rounded-card {
    border-radius: 1.5rem;

}


.card_white {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;

}

.badge1 {
    color: #2997fb;
    background-image: linear-gradient(#2997fb1a, #2997fb1a);
}

.badge {
    box-shadow: none;
    border: 1px #000;
    border-radius: 2rem;
    align-self: flex-start;
    padding: 0.7rem .75rem;
    font-size: .875rem;
    font-weight: 300;
}

.badge2 {
    color: #00a656;
    background-image: linear-gradient(#29fbc31a, #29fbc31a);
}

.badge3 {
    background-image: linear-gradient(180deg, #3e29fb1a, #3e29fb1a);
    color: #2d62ff;
}

.hero-image h1 {
    position: absolute;
    /* transform: translateX(-11%); */
    font-size: 189px;
    text-transform: uppercase;
    width: max-content;
    color: #047bff;
    z-index: 0;
    font-weight: 800;
}



.hero-image-box2 {
    width: 100%;
    max-width: 547px;
    position: relative;
}

.feature-card {
    height: 100%;
    padding: 3.75rem 3.5rem;
    border-radius: 40px;
}

.colum-Grad {
    background: linear-gradient(180deg, #2997fb33, #2997fb0a),
        linear-gradient(to bottom, #c1c1c11a, #c1c1c11a);
}

.colum-Grad2 {
    background: linear-gradient(180deg, #29fbc333, #29fbc30a),
        linear-gradient(to bottom, #c1c1c11a, #c1c1c11a);
}

.colum-Grad3 {
    background: linear-gradient(180deg, #29fbc333, #29fbc30a), linear-gradient(to bottom, #c1c1c11a, #c1c1c11a)
}

.colum-Grad4 {
    background: linear-gradient(180deg, #3e29fb33, #3e29fb0a), linear-gradient(to bottom, #c1c1c11a, #c1c1c11a)
}

.colum-Grad5 {
    background: linear-gradient(rgba(41, 151, 251, 0.40), rgba(41, 151, 251, 0.10));
}




.feature_card-title h1 {
    font-weight: 500;
    line-height: 1.2;
    font-size: 1.625rem;
    color: #000;
}

.hero-image-phone img {
    max-width: 100%;
    height: auto;
    display: block;
}

@media (min-width: 768px) {
    .hero-image-phone {
        margin-left: auto;
       
    }
}





.welcome_content {
    margin-top: 15rem;
}

.welcome_content2 {
    margin-top: 2rem;
}

.hero-overlay {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
}

.hero-image-box-img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-overlay-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    padding: 60px;
   
}

.hero-overlay-content2 {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 550px;
    color: #fff;
}

.hero-overlay-content2 h1 {
    font-size: 3rem;
    font-weight: 700;
}

.hero-overlay-content2 p {
    font-size: 1.1rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .hero-overlay-content {
        padding: 30px;
    }

    .hero-overlay-content h1 {
        font-size: 1.9rem;
    }

    .hero-image h1 {
        font-size: 5rem;
    }

    .feature-cardRow {
        gap: 24px;
    }
 .hero-overlay-content2 {
        padding: 10px;
    }
    .hero-overlay-content2 h1 {
        font-size: 1rem;
    }

    .hero-overlay-content2 p {
        font-size: .9rem;
    }
    .btn-samll{
            margin: 10px;
    padding: 8px 22px;
 
    font-size: 11px;
    }
}

.industry-section {
    background: #fff;
}



.industry-tabs {
    gap: 16px;
}

.industry-pill {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 14px 22px;
    border-radius: 14px;

    background: #fff;
    border: 1px solid #eee;

    font-size: 14px;
    font-weight: 500;
    cursor: pointer;

}


.industry-pill:hover {
    border: 1px solid #2f80ff;
    color: #2f80ff;
}


@media (max-width: 768px) {
    .industry-title {
        font-size: 28px;
    }

    .industry-tabs {
        justify-content: center;
    }
}



.footer {
    background: #f8f9fa;
    border-top: 1px solid #e5e5e5;
    font-size: 14px;
}

.footer-link {
    margin-left: 15px;
    color: #555;
    text-decoration: none;
}

.footer-link:hover {
    color: #000;
    text-decoration: underline;
}



.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-left: 8px;
    border-radius: 50%;
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

.footer-desc {
    font-size: 13px;
    color: #666;
    max-width: 260px;
}

@media (max-width: 767px) {
    .footer-desc {
        margin: 0 auto;
    }
}




/* ==========innovation======= */
.box-img {
    position: absolute;
    top: 2%;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: rgba(0, 0, 0, 0.09) 0px 2px 1px,
        rgba(0, 0, 0, 0.09) 0px 4px 2px,
        rgba(0, 0, 0, 0.09) 0px 8px 4px,
        rgba(0, 0, 0, 0.09) 0px 16px 8px,
        rgba(0, 0, 0, 0.09) 0px 32px 16px;

    margin: auto;
    max-height: 920px;
    height: 100%;
    width: 95%;
    border-radius: 40px;

    /* 🔽 IMAGE BACKGROUND */
    background-image: linear-gradient(#00000080, #0000 70%), url(image/innovation_bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    z-index: -1;
}

.hero-contentInnovatn {
    max-width: 900px;
    margin-top: 140px;
    height: 700px;
}



.border-radius-wrapper {
    /* background: linear-gradient(180deg, #eaf3ff, #cfe6ff); */
    border-radius: 40px;
}



.section-desc {
    max-width: 750px;
    color: #6c757d;
    /* font-size: 16px; */
}

/* Feature Cards */
.feature-box {
    background: #fff;
    border-radius: 24px;
    padding: 25px;
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.05); */
}

.feature-box h5 {
    font-weight: 600;
    margin-top: 15px;
}

.feature-box p {
    /* color: #6c757d; */
    font-size: 14px;
}

/* .feature-box h3 {
    font-weight: 700;
    margin-bottom: 10px;
} */


/* Icon */
.icon-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #edf4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2f80ff;
    /* font-size: 18px; */
}

/* Center Image */
.image-card {
    background: #fff;
    border-radius: 30px;
    padding: 15px;
    /* box-shadow: 0 15px 40px rgba(0,0,0,0.08); */
}




/* Pastel Backgrounds */
.pastel-purple {
    background: #dcd8ff;
}

.pastel-green {
    background: #d9f8df;
}

.pastel-blue {
    background: #d7ebff;
}

.pastel-peach {
    background: #f7dfd4;
}

.pastel-light {
    background: #eefbe8;
}




.table_menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: 1px solid #0000001a;
    width: 100%;
}

@media (min-width: 768px) {
    .col-md-3 {
        position: sticky;
        top: 100px;
        align-self: flex-start;
    }
   
}

@media (max-width: 767px) {
    .col-md-3 {
        position: sticky;
        top: 0; 
        z-index: 998;
        align-self: flex-start;
    }

    .table_menu {
        background: #fff;
        padding: 15px;
        border-radius: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,.1);
    }
    .hero-contentInnovatn {
    max-width: 900px;
    margin-top: 140px;
    height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
 .feature-box4{
        gap: 25px;
    }
}

.table_tab-link {
    color: #686868;
    transition: all 0.3s ease;

}

.table_tab-link:hover {

    color: #2d69eb;
    text-decoration: none;

}

.table_tab-link.active {
    color: #0d6efd;
    font-weight: 400;
}


.Leadership img {
    border-radius: 50% !important;
    height: 60px !important;
    width: 60px !important;
    object-fit: cover;
}

#leaderImg {
    border-radius: 50% !important;
    height: 60px !important;
    width: 60px !important;
    object-fit: cover;
}

.leader-card {
    cursor: pointer;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.hero-role,
#leaderRole {
    font-size: 14px;
}

.contact-outer {
    background: #eef6ff;
}

.contact-inner {
    background: #ffffff;
}

.contact-input {
    border-radius: 14px;
    padding: 20px;
    background: #f8fbff;
    border: 1px solid #cfdceb;
    font-size: 14px;
}

.contact-input:focus {
    box-shadow: none;
    border-color: #0d6efd;
}

.action-icon {
    display: flex;
    justify-content: space-between;
}