

/* style_index.css */


/* =====================================================
GLOBAL & NAVIGATION
===================================================== */

*{
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
	background:#fcfcfc;
    padding-top:2px;
}
/* HEADER */

.header-container{
    max-width:1200px;
    margin:auto;
    padding:10px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.site-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#1200ff;
	
    box-shadow:0 3px 10px rgba(0,0,0,.15);
    z-index:9999;
}


.logo-area h2{
    margin:0;
    font-size:27px;
    color:#fff;
    font-weight:700;
    line-height:1.1;
}
.logo-area{
    display:flex;
    flex-direction:column;
    justify-content:center;
}
.logo-area p{
    margin:4px 0 0;
    font-size:14px;
    color:#fff;
    line-height:1.2;
}
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.main-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: .3s;
}

.main-nav a:hover::after {
    width: 100%;
}


.page-wrapper{
    margin:0 20px;
}
/* =====================================================
HERO SECTION
===================================================== */
.hero-section{
    margin-top:78px;
    padding:2px 10px 1px 10px;
	background:linear-gradient(135deg,#fac0fa,#f7dcf7);  
	border-radius:25px;
}

.hero-title{
    font-size:36px;
    font-weight:600;
    line-height:1;
    color: #d93c1c;
    margin-top:-30px;
    margin-bottom:15px;
    text-align: center;
}





.hero-description {
    font-size: 17px;
    color: #0334ad;
    font-weight:500;
    margin: 16px 0;
}


.hero-description1{
    font-size:19px;
    font-weight:600;
    background:linear-gradient(90deg,#dc3545,#0d6efd);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    text-align:center;
}

.hero-badge{
    display:block;
    width:fit-content;
    margin:15px auto 15px auto;
    padding:5px 25px;
    background:linear-gradient(135deg,#0d6efd,#1200ff);
    color:#fff;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    box-shadow:0 8px 5px rgba(13,110,253,.30);
    text-align:center;
}

.hero-container{
    width:97%;
    max-width:100%;
    margin:0;
   padding: 5px 15px 5px 25px;
}
.hero-download-btn{
    display:inline-block;
    background:linear-gradient(135deg,#6f42c1,#0d6efd);  /* Orange gradient */
    color:#fff;
    padding:4px 22px;
    font-size:16px;
    font-weight:700;
    text-decoration:none;
    border-radius:22px;
    
    transition:all .3s ease;
    margin-bottom:10px;      /* Increase space below button */
}

.hero-download-btn:hover{
   background:linear-gradient(135deg,#ff6a00,#ff9800); 
    transform:translateY(-3px);
    color:#fff;
}
.hero-image{
    width:100%;
    max-width:700px;
    height:auto;
    display:block;
    margin:20px 10px 10px 1px;
    border-radius: 20px;
	border:2px solid #7c3aed;
}

/* Hero Feature Table */

.features-table{

    display:grid;
    grid-template-columns:repeat(4,1fr);

    column-gap:20px;
    row-gap:7px;

    margin-top:15px;

    color:#002b8f;

    font-size:16px;
    font-weight:600;
    line-height:1.4;
}

.features-table div{

    white-space:nowrap;
    transition:.25s;
}

.features-table div:hover{

    color:#ed5d5a;
    transform:translateX(4px);
}

/* =====================================================
BANK and video-section SECTION
===================================================== */

.bank-showcase .container{ 
	max-width:100%;
   	 background:linear-gradient(135deg,#e6fff4,#93f5cc);  /* Orange gradient */  
    color:#222;
    border-radius:25px;
    padding:10px;
    margin-top: 8px;
    box-shadow:0 15px 40px rgba(0,0,0,.20);
}


.bank-features {
    list-style: none;
    padding: 10px;
    margin-top: 4px;
}

.bank-features li {
    padding: 4px 0;
    font-size: 18px;
}

.bank-features li:before {
    content: "✔";
    color: #28d17c;
    margin-right: 12px;
	margin-left: 27px;
    font-weight: bold;
}


.bank-subtitle{
    font-size:16px;
    font-weight:600;
    color:#de3333;
    margin-bottom:3px;
    line-height:1.6;
    text-align: center;
    margin-right: 22px;
    margin-left: 22px;
}

.bank-content{
    padding-left:15px;
	padding-right:5px;
	  line-height:1.1;
}

.bank-title-left{
    font-size:27px;
    font-weight:700;
    color:#0d6efd;
    margin-top:-18px;
     margin-bottom:18px;
    text-align: center;
}

.bank-sub-heading{
    font-size:18px;
    font-weight:700;
    margin-bottom:18px;
    color:#222;
    text-align: center;
}

.video-title{
    text-align:center;
    font-size:30px;
    font-weight:800;
    color:#0d6efd;
    margin-bottom:12px;
}
.video-section{
    text-align:center;
    padding:2px 2px 5px 10px;
}

.video-heading{
    font-size:2rem;
    font-weight:700;
    color:#1d3557;
    margin-bottom:10px;
    letter-spacing:0.5px;
}

.intro-video{
    width: 85%;      /* Reduce video width */
    margin: 0 auto;  /* Center the video */
}
.video-wrapper{
    border-radius:25px;
    overflow:hidden;
}

.bank-showcase .col-lg-6:last-child{
    padding-left: 5px;      /* Reduce from Bootstrap's default */
    margin-left: -20px;     /* Move video to the left */
     margin-top: -15px;
}
/* =====================================================
SMART FEATURES SECTION
===================================================== */
.section-tag{
    background:#e7f1ff;
    color:#0d6efd;
   
    border-radius:25px;
    font-weight:700;
}

.smart-features-section{
    padding:10px 10px 15px 10px;
    background:#f1f74f;
	background:linear-gradient(90deg,#f4f799,#f1f74f);
	border-radius: 25px;
}
.smart-card {
    background: #93dbf5;
    border-radius: 20px;
    padding: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(10,110,0,.08);
    transition: .4s;
    border: 1px solid #eef2f7;
}

.smart-icon {
    font-size: 22px;
    margin-bottom: 4px;
}

.smart-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,.12);
}

.smart-card h5 {
    margin: 10px 0;
    font-weight: 700;
    min-height:60px;
}

.smart-card p {
    margin: 0;
    color: #666;
    font-size: 14px;
    min-height:60px;
}

/* =====================================================
COMPARISON SECTION
===================================================== */

  .comparison-section{
    padding:10px 10px 15px 10px;
    background:linear-gradient(135deg,#8ab3ff,#ffffff);
    border-radius:25px;
}


.comparison-wrapper {
    max-width: 700px;
    margin: auto;
border:2px solid #7c3aed;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    background: #fff;
}

.comparison-header {
    display: flex;
    background: #222;
    color: #fff;
    text-align: left;
}

.comparison-row {
    display: flex;
    border-bottom: 1px solid #fc6d6d;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-col {
    width: 50%;
    padding: 9px 50px;
    font-size: 15px;
	 line-height:1.3;
}

.comparison-header .left-side{
    background:linear-gradient(135deg,#ff6b6b,#dc3545);
    color:#fff;
    border-right: 1px solid #eaeaea;
}

.comparison-header .right-side{
    background:linear-gradient(135deg,#28a745,#0d6efd);
    color:#fff;
}
.comparison-header .comparison-col{
    font-size:18px;
    font-weight:700;
    text-align:center;
    padding:15px;
}
.font-highlight {
    font-weight: 600;
    color: #198754;
}

/* =====================================================
PROCESS SECTION
===================================================== */

 .process-section{
    padding:10px 0;
 background:linear-gradient(135deg,#ffffff,#fab6f8);
	border-radius: 25px;
}

.process-card {
    background: #e3d2fa;
    border-radius: 25px;
	 border:2px solid #fc6df5;
    padding: 10px 5px;
    text-align: center;
    height: 100%;
    position: relative;
    box-shadow: 0 10px 35px rgba(0,0,0,.08);
}

.step-number {
    font-size: 24px;
    font-weight: 800;
    color: rgba(113, 110, 253, .4);
    position: absolute;
    top: 15px;
    right: 25px;
}

.step-icon {
    font-size: 40px;
    color: #0d6efd;
    margin-bottom: 20px;
}

.process-card h4 {
    font-weight: 600;
    margin-bottom: 2px;
}

/* =====================================================
VERSIONS SECTION
===================================================== */
.versions-section {
    padding: 10px 0;
	background: #faf9af;
	background:linear-gradient(135deg,#69cdff,#fab6f8);
    border-radius: 25px;
}
.versions-section .container{
    max-width:90%;
}
.version-card {
    background: #faf9af;
    border-radius: 25px;
    padding: 0px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .4s;
	 border:2px solid #0d6efd;
}
.versions-section .row{
    --bs-gutter-x: 6px;
    --bs-gutter-y: 6px;
}
.version-card:hover {
    transform: translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #0d6efd;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.version-header {
    margin-bottom: 25px;
    text-align: center;
}

.version-header h3 {
    font-weight: 600;
    margin-bottom: 5px;
}

.version-list, .version-list-two-col {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.version-list li, .version-list-two-col li {
    padding: 2px 0;
    font-size: 16px;
    color: #0a0a0a;
}

 .version-list-two-col li::before {
    content: "•";
    color: #0d6efd;
    font-weight: bold;
    display: inline-block; 
    width: 1em;	
    margin-left: 1em;
}

.version-list-two-col{
    display:grid;
    grid-template-columns:1fr;
    gap:6px;
}
 .version-list-4-col {
    list-style: none;
    padding: 0;
    margin-bottom: 10px;
}

.version-list-4-col li {
    padding: 1px 0;
    font-size: 16px;
    color: #0a0a0a;
}

.version-list li::before, .version-list-4-col li::before {
    content: "•";
    color: #0d6efd;
    font-weight: bold;
    display: inline-block; 
    width: 1em;
    margin-left: 2em;
}

.version-list-4-col{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:5px 2px;
}

.text-warning-dark {
    color: #b58100;
}

.version-card .btn{
    width:200px;
    margin-top:auto;
    margin-left:auto;
    margin-right:auto;
	margin-bottom:20px;  
    display:block;
}


/* =====================================================
VIDEO GALLERY SECTION
===================================================== */
.video-gallery-section {
    padding: 25px 0;
	border-radius: 25px;
	background: #f2c468;
	background: linear-gradient(135deg, #ffffff, #f2c468);
}

.video-card {
    display: block;
    text-decoration: none;
    color: #222;
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .4s;
    height: 100%;
    cursor: pointer;
}

/* =====================================================
VIDEO MODAL
===================================================== */
.video-modal-content {
    border: none;
    border-radius: 16px;
    overflow: hidden;
}

.video-modal-header {
    background: linear-gradient(135deg, #0d6efd, #1200ff);
    border-bottom: none;
    padding: 4px 10px;
}

.video-card:hover {
    transform: translateY(-10px);
}

.video-thumbnail {
    position: relative;
     width:100%;
     height: 200px;
    overflow: hidden;
    
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.max-width-600 { max-width: 600px; 
    
}

.play-button{
    position:absolute;
    top:50%;
    right:15px;
    left:auto;
    transform:translateY(-50%);
    width:55px;
    height:55px;
    background:rgba(13,110,253,.9);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:20px;
    transition:.3s;
}

.video-card:hover .play-button {
    background: #222;
    scale: 1.1;
}

.video-content {
    padding: 4px;
    
}

.video-content h4 {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 1px;
}

.video-modal-header{
    position:relative !important;
}

.video-close-btn{
    position:absolute !important;
    top:8px !important;
    right:10px !important;
    z-index:99999;
}


/* =========================
   POPUP
========================= */
.popup-overlay{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.7);
    z-index:99999;
}

.popup-box{
    position:absolute;
    top:40%;
    left:50%;
    transform:translate(-50%,-50%);
    width:400px;
    background:#fff;
    border-radius:12px;
    padding:14px;
    box-shadow:0 15px 40px rgba(0,0,0,.25);
}

.popup-box h2{
    text-align:center;
    color:#1200ff;
    margin-top:10px;
     margin-bottom:10px;
}

.popup-box input{
    width:95%;
    padding:12px;
   
   margin-left:10px;
   
    margin-bottom:7px;
    border:1px solid #ddd;
    border-radius:8px;
}

.submit-btn{
    width:50%;
    display:block;
    margin:10px auto 0;
    background:#28a745;
    color:#fff;
    border:none;
    padding:11px;
    border-radius:8px;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
}

.submit-btn:hover{
    background:#218838;
}

.close-btn{
    position:absolute;
    top:10px;
    right:15px;
    font-size:28px;
    cursor:pointer;
    color:#666;
}

.captcha-row{
    margin-bottom:15px;
}

.captcha-row label{
    display:block;
    margin-bottom:8px;
    font-weight:bold;
}


.footer-blue{
    background:linear-gradient(90deg,#1200ff,#fa6b6b);
    border-radius:25px;
}


.hero-section,
.bank-showcase .container,
.smart-features-section,
.comparison-section,
.process-section,
.versions-section,
.video-gallery-section,
.footer-blue{
    border-radius:20px;
    margin-bottom:4px;
}