/* Section Tag */
.section-tag {
    color: #ff3b30;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-heading {
    font-size: 46px;
    font-weight: 600;
    color: #002964;
    margin: 15px 0;
    line-height: 1.3;
}

.section-heading span {
    color: #ff3b30;
}

/* Banner Section Start */

/* Banner Section */
.banner-section {
    padding: 70px 0;
    display: flex;
    align-items: center;
    background-image: url('/assets/images/banner-image.png');
    /* change path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Subtitle */
.banner-sub-heading {
    font-size: 14px;
    font-weight: 700;
    color: #ff3b30;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* Main Heading */
.banner-heading {
    font-size: 52px;
    line-height: 1.3;
    font-weight: 600;
    color: #002964;
}

.banner-heading span {
    color: #ff3b30;
}

/* Content */
.banner-content {
    font-size: 18px;
    line-height: 1.5;
    color: #646F88;
    max-width: 500px;
    margin-bottom: 10px;
}

/* Buttons */
.banner-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.banner-buttons a {
    padding: 14px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.explore-btn {
    background: #ff3b30;
    color: #fff;
}

.quote-btn {
    border: 1px solid #ff3b30;
    color: #ff3b30;
    background: transparent;
}

/* Banner Section End */


/* Product Showcase Section Start */
.product-showcase {
    padding: 90px 0;
    background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
    overflow: hidden;
}

.product-showcase .device-wrapper {
    position: relative;
    text-align: center;
}

.product-showcase .device-wrapper .glow-circle {
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(6, 46, 130, 0.08);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    filter: blur(20px);
}

.product-showcase .device-wrapper .device-img {
    width: 480px;
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}

.product-showcase .product-content p {
    color: #646F88;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.product-showcase .feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 35px;
}

.product-showcase .feature-grid .feature-box {
    background: #fff;
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    font-size: 15px;
    font-weight: 500;
}

.product-showcase .feature-grid .feature-box span {
    color: #002964;
    font-weight: 600;
}


.product-showcase .feature-grid .feature-box i {
    color: #002964;
    font-weight: 600;
    font-size: 18px;
}

/* Product Showcase Section End */


/*====================================
Simple Interface Section
====================================*/

.simple-interface-section {
    padding: 90px 0;
    background: #f8fbff;
}

.simple-interface-section .section-heading h2 {
    font-size: 46px;
    font-weight: 600;
    color: #002964;
    margin: 15px 0;
    line-height: 1.3;
}

.simple-interface-section .section-heading h2 span {
    color: #ff3b30;
}


.simple-interface-section .section-heading p {
    color: #646F88;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Card */
.simple-interface-section .interface-card {
    background: #fff;
    border: 1px solid #dfe7f3;
    border-radius: 18px;
    padding: 45px 35px;
    text-align: center;
    height: 100%;
    transition: .35s ease;
    position: relative;
    overflow: hidden;
}

/* Hover Line */
.simple-interface-section .interface-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2px;
    background: #ff3b30;
    transform: scaleX(0);
    transition: .35s;
}

.simple-interface-section .interface-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(6, 46, 130, .08);
    border-color: #002964;
}

.simple-interface-section .interface-card:hover::before {
    transform: scaleX(1);
}

/* Icon */

.simple-interface-section .interface-card .icon-box {
    width: 60px;
    height: 60px;
    margin: 0 auto 30px;
    border-radius: 18px;
    background: #edf4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .35s;
}

.simple-interface-section .interface-card .icon-box i {
    font-size: 24px;
    color: #0B4EA2;
}

.simple-interface-section .interface-card:hover .icon-box {
    background: #062E82;
    transform: rotate(-8deg);
}

.simple-interface-section .interface-card:hover .icon-box i {
    color: #fff;
}

/* Text */
.simple-interface-section .interface-card h4 {
    font-size: 26px;
    color: #062E82;
    margin-bottom: 18px;
    font-weight: 500;
}

.simple-interface-section .interface-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #646F88;
    margin: 0;
}

/*====================================
Industries Section
====================================*/

.industries-section {
    padding: 90px 0;
    background: #ffffff;
}

.industries-section .section-heading h2 {
    font-size: 46px;
    font-weight: 600;
    color: #002964;
    margin: 15px 0;
    line-height: 1.3;
}

.industries-section .section-heading h2 span {
    color: #ff3b30;
}

.industries-section .section-heading p {
    color: #646F88;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Card */

/* Card */

.industries-section .industry-card {
    background: #fff;
    border: 1px solid #dfe7f3;
    border-radius: 18px;
    padding: 40px 25px;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: .45s ease;
    z-index: 1;
}

.industries-section .industry-card::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, #edf4ff 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: .45s ease;
    z-index: -1;
}

.industries-section .industry-card:hover {
    border-color: #0B4EA2;
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(6, 46, 130, .10);
}

.industries-section .industry-card:hover::before {
    width: 320px;
    height: 320px;
}

/* Icon */

.industries-section .industry-card .icon-box {
    width: 65px;
    height: 65px;
    margin: 0 auto 25px;
    border-radius: 18px;
    background: #edf4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s;
}

.industries-section .industry-card .icon-box i {
    font-size: 26px;
    color: #0B4EA2;
    transition: .4s;
}

.industries-section .industry-card:hover .icon-box {
    background: #062E82;
    transform: scale(1.15);
    box-shadow: 0 0 0 8px rgba(6, 46, 130, .08);
}

.industries-section .industry-card:hover .icon-box i {
    color: #fff;
    transform: scale(1.1);
}

/* Text */

.industries-section .industry-card h4 {
    font-size: 18px;
    font-weight: 500;
    color: #062E82;
    line-height: 1.5;
    margin: 0;
    transition: .35s;
}

.industries-section .industry-card:hover h4 {
    color: #002964;
}

/*====================================
Timeline Section
====================================*/

.timeline-section {
    padding: 70px 0;
    background:
        radial-gradient(circle at top left, #0d3c8d 0%, transparent 45%),
        linear-gradient(135deg, #041d49, #062e82);
    position: relative;
    overflow: hidden;
}

.timeline-section::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 255, 255, .08) 0%, transparent 70%);
    top: -250px;
    right: -250px;
}

.timeline-section::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, .05) 0%, transparent 70%);
    bottom: -200px;
    left: -200px;
}

.timeline-section .section-heading h2 {
    font-size: 46px;
    font-weight: 600;
    color: #fff;
    margin: 15px 0;
    line-height: 1.3;
}

.timeline-section .section-heading p {
    color: rgba(255, 255, 255, .85);
    max-width: 650px;
    margin: 0 auto 40px;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 500;
}

.timeline-section .timeline {
    position: relative;
}

.timeline-section .timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, .15);
}

.timeline-section .timeline-item {
    display: grid;
    grid-template-columns: 1fr 40px 1fr;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
}

.timeline-section .timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-section .timeline-item.right .timeline-card {
    order: 1;
}

.timeline-section .timeline-item.right .timeline-dot {
    order: 2;
}

.timeline-section .timeline-item.right .timeline-content {
    order: 3;
}

.timeline-section .timeline-item.left .timeline-content {
    text-align: right;
    padding-right: 40px;
}

.timeline-section .timeline-item.right .timeline-content {
    text-align: left;
    padding-left: 40px;
}

.timeline-section .timeline-content .year {
    display: block;
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
}

.timeline-section .timeline-content h3 {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 18px;
}

.timeline-section .timeline-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, .75);
    line-height: 1.8;
    margin: 0;
}

.timeline-section .timeline-dot {
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    margin: auto;
    position: relative;
    z-index: 2;
}

.timeline-section .timeline-dot::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .25);
    animation: timelinePulse 2.5s infinite;
}

.timeline-section .timeline-card {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 18px;
    padding: 35px;
    backdrop-filter: blur(12px);
    transition: .4s;
    position: relative;
    overflow: hidden;
}

.timeline-section .timeline-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, .08), transparent);
    transition: .5s;
}

.timeline-section .timeline-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, .35);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .18);
}

.timeline-section .timeline-card:hover::before {
    width: 100%;
}

.timeline-section .timeline-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.timeline-section .timeline-card ul li {
    color: #fff;
    font-size: 17px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.timeline-section .timeline-card ul li:last-child {
    margin-bottom: 0;
}

.timeline-section .timeline-card ul li i {
    color: #7BE495;
    font-size: 18px;
}

@keyframes timelinePulse {

    0% {
        transform: scale(.8);
        opacity: 1;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }

}

@media(max-width:991px) {

    .timeline-section .timeline::before {
        left: 25px;
    }

    .timeline-section .timeline-item {
        grid-template-columns: 50px 1fr;
        gap: 25px;
    }

    .timeline-section .timeline-card {
        order: 2 !important;
    }

    .timeline-section .timeline-dot {
        order: 1 !important;
    }

    .timeline-section .timeline-content {
        order: 2 !important;
        text-align: left !important;
        padding: 0 !important;
        margin-top: 25px;
        grid-column: 2;
    }

}

/*====================================
Easy Touch Section
====================================*/

.easy-touch-section{
    padding:70px 0;
    background:#f8fbff;
}

.easy-touch-section .section-heading{
    max-width:760px;
    margin:0 auto 70px;
}

.easy-touch-section .section-heading h2{
    font-size:46px;
    font-weight:600;
    color:#002964;
    margin:15px 0;
    line-height:1.3;
}

.easy-touch-section .section-heading h2 span{
    color:#ff3b30;
}

.easy-touch-section .section-heading p{
    color:#646F88;
    font-size:17px;
    line-height:1.7;
    margin-bottom:0;
}

/* Card */

.easy-touch-section .feature-card{
    background:#fff;
    border:1px solid #dfe7f3;
    border-radius:18px;
    padding:35px;
    height:100%;
    transition:.4s ease;
    position:relative;
    overflow:hidden;
}

.easy-touch-section .feature-card::before{
    content:"";
    position:absolute;
    left:-100%;
    top:0;
    width:100%;
    height:100%;
    background:linear-gradient(90deg,transparent,rgba(11,78,162,.05),transparent);
    transition:.6s;
}

.easy-touch-section .feature-card:hover::before{
    left:100%;
}

.easy-touch-section .feature-card:hover{
    transform:translateY(-10px);
    border-color:#0B4EA2;
    box-shadow:0 20px 45px rgba(6,46,130,.08);
}

/* Icon */

.easy-touch-section .feature-card .icon-box{
    width:65px;
    height:65px;
    border-radius:18px;
    background:#edf4ff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:30px;
    transition:.35s;
}

.easy-touch-section .feature-card .icon-box i{
    font-size:26px;
    color:#0B4EA2;
    transition:.35s;
}

.easy-touch-section .feature-card:hover .icon-box{
    background:#062E82;
    border-radius:50%;
}

.easy-touch-section .feature-card:hover .icon-box i{
    color:#fff;
    transform:scale(1.1);
}

/* Text */

.easy-touch-section .feature-card h4{
    font-size:24px;
    font-weight:500;
    color:#062E82;
    margin-bottom:18px;
    line-height:1.4;
}

.easy-touch-section .feature-card p{
    font-size:16px;
    color:#646F88;
    line-height:1.8;
    margin:0;
}

/*====================================
TView Software Section
====================================*/

.tview-section{
    padding:70px 0;
    background:#f8fbff;
}

.tview-section .tview-content h2{
    font-size:46px;
    font-weight:600;
    color:#002964;
    line-height:1.3;
    margin:15px 0 25px;
}

.tview-section .tview-content h2 span{
    color:#ff3b30;
}

.tview-section .tview-content>p{
    color:#646F88;
    font-size:17px;
    line-height:1.8;
    margin-bottom:40px;
}

/* Feature */

.tview-section .feature-item{
    display:flex;
    gap:20px;
    margin-bottom:30px;
}

.tview-section .feature-item:last-child{
    margin-bottom:0;
}

.tview-section .feature-item .icon-box{
    width:60px;
    height:60px;
    min-width:60px;
    border-radius:16px;
    background:#edf4ff;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.35s;
}

.tview-section .feature-item .icon-box i{
    font-size:22px;
    color:#0B4EA2;
}

.tview-section .feature-item:hover .icon-box{
    background:#062E82;
}

.tview-section .feature-item:hover .icon-box i{
    color:#fff;
}

.tview-section .feature-item h4{
    font-size:20px;
    color:#062E82;
    margin-bottom:5px;
    font-weight:500;
}

.tview-section .feature-item p{
    font-size:16px;
    color:#646F88;
    line-height:1.7;
    margin:0;
}

/* Image */

.tview-section .software-image{
    position:relative;
}

.tview-section .software-glow{
    width:520px;
    height:520px;
    background:rgba(11,78,162,.08);
    border-radius:50%;
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    filter:blur(30px);
}

.tview-section .software-image img{
    width:100%;
    position:relative;
    z-index:2;
    border-radius:20px;
    box-shadow:0 25px 60px rgba(0,0,0,.12);
    transition:.5s;
}

.tview-section .software-image:hover img{
    transform:translateY(-10px) scale(1.02);
}