body {
    margin: 0;
    padding: 0;
}

 .hero-section{
            background: linear-gradient(135deg,#0f172a,#1e3a8a);
            color:#fff;
            padding:100px 0;
            overflow:hidden;
        }

        .hero-title{
            font-size:40px;
            font-weight:700;
            line-height:1.2;
            color:white;
        }

        .hero-subtitle{
            font-size:18px;
            color:#dbeafe;
            margin-top:20px;
        }

        .btn-main{
            background:#2563eb;
            border:none;
            padding:14px 35px;
            border-radius:50px;
            color:#fff;
            font-weight:600;
            transition:.3s;
        }

        .btn-main:hover{
            background:#1d4ed8;
            transform:translateY(-2px);
        }

        .section-title{
            font-size:38px;
            font-weight:700;
            margin-bottom:20px;
        }

        .section-subtitle{
            color:#555;
            line-height:1.8;
            font-size:17px;
        }

        .service-card{
            background:#fff;
            border-radius:20px;
            padding:35px 25px;
            box-shadow:0 10px 30px rgba(0,0,0,0.08);
            transition:.3s;
            height:100%;
        }

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

        .service-icon{
            width:70px;
            height:70px;
            background:#eff6ff;
            border-radius:18px;
            display:flex;
            align-items:center;
            justify-content:center;
            font-size:32px;
            color:#2563eb;
            margin-bottom:20px;
        }

        .process-box{
            background:#fff;
            padding:30px;
            border-radius:18px;
            box-shadow:0 5px 20px rgba(0,0,0,0.06);
            position:relative;
            height:100%;
        }

        .step-number{
            position:absolute;
            top:-15px;
            left:25px;
            width:45px;
            height:45px;
            background:#2563eb;
            color:#fff;
            border-radius:50%;
            display:flex;
            align-items:center;
            justify-content:center;
            font-weight:bold;
        }

        .app-type{
            background:#fff;
            padding:20px;
            border-radius:16px;
            text-align:center;
            box-shadow:0 5px 20px rgba(0,0,0,0.05);
            transition:.3s;
            height:100%;
        }

        .app-type:hover{
            transform:translateY(-8px);
        }

        .app-type i{
            font-size:38px;
            color:#2563eb;
            margin-bottom:15px;
        }

        .cta-section{
            background:linear-gradient(135deg,#2563eb,#1e40af);
            color:#fff;
            border-radius:30px;
            padding:70px 40px;
        }

       
        .hero-img{
            width:100%;
            border-radius:25px;
            box-shadow:0 15px 40px rgba(0,0,0,0.3);
        }

        @media(max-width:768px){

            .hero-title{
                font-size:38px;
            }

            .section-title{
                font-size:30px;
            }

            .hero-section{
                text-align:center;
            }

            .hero-img{
                margin-top:40px;
            }
        }

        .process-section{
        background: #0d2765;
        position: relative;
        overflow: hidden;
    }

    .process-section::before{
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        background: rgba(37,99,235,0.15);
        border-radius: 50%;
        top: -200px;
        left: -150px;
    }

    .process-section::after{
        content: "";
        position: absolute;
        width: 400px;
        height: 400px;
        background: rgba(59,130,246,0.1);
        border-radius: 50%;
        bottom: -180px;
        right: -100px;
    }

    .process-title{
        color: #fff;
        font-size: 42px;
        font-weight: 700;
    }

    .process-subtitle{
        color: #cbd5e1;
        max-width: 700px;
        margin: auto;
    }

    .timeline-wrapper{
        position: relative;
        margin-top: 60px;
    }

    .timeline-line{
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 4px;
        height: 100%;
        background: linear-gradient(to bottom,#2563eb,#60a5fa);
    }

    .timeline-card{
        background: rgba(255, 255, 255);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255);
        border-radius: 24px;
        padding: 35px;
        position: relative;
        transition: .4s;
        color: #000;
    }

    .timeline-card:hover{
        transform: translateY(-10px);
        background: rgba(255,255,255,0.8);
    }

     .timeline-card .text-white{
        color: #000!important;
     }

    .timeline-number{
        width: 70px;
        height: 70px;
        border-radius: 20px;
        background: linear-gradient(135deg,#2563eb,#60a5fa);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 25px;
        box-shadow: 0 10px 25px rgba(37,99,235,0.4);
    }

    .timeline-card h4{
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .timeline-card p{
        color: #000;
        line-height: 1.8;
        margin-bottom: 0;
    }

    /* APP TYPE SECTION */
    .app-section{
        background: #f8fbff;
    }

    .app-card{
        background: #fff;
        border-radius: 28px;
        padding: 40px 25px;
        text-align: center;
        transition: .4s;
        position: relative;
        overflow: hidden;
        height: 100%;
        box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    }

    .app-card::before{
        content: "";
        position: absolute;
        width: 120px;
        height: 120px;
        background: rgba(37,99,235,0.08);
        border-radius: 50%;
        top: -40px;
        right: -40px;
    }

    .app-card:hover{
        transform: translateY(-12px);
        box-shadow: 0 20px 40px rgba(37,99,235,0.15);
    }

    .app-icon{
        width: 90px;
        height: 90px;
        margin: auto;
        border-radius: 25px;
        background: linear-gradient(135deg,#2563eb,#60a5fa);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 38px;
        margin-bottom: 25px;
        box-shadow: 0 12px 30px rgba(37,99,235,0.25);
    }

    .app-card h5{
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .app-card p{
        color: #666;
        line-height: 1.7;
        margin-bottom: 0;
    }

    @media(max-width:991px){

        .timeline-line{
            display:none;
        }

        .process-title{
            font-size: 34px;
        }
    }


     /* ABOUT SECTION */
    .about-section{
        background: linear-gradient(180deg,#ffffff,#f8fbff);
        position: relative;
        overflow: hidden;
    }

    .about-section::before{
        content: "";
        position: absolute;
        width: 450px;
        height: 450px;
        background: rgba(37,99,235,0.06);
        border-radius: 50%;
        top: -180px;
        right: -120px;
    }

    .about-badge{
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(37,99,235,0.1);
        color: #2563eb;
        padding: 10px 20px;
        border-radius: 50px;
        font-weight: 600;
        margin-bottom: 25px;
    }

    .about-title{
        font-size: 48px;
        font-weight: 800;
        line-height: 1.2;
        color: #0f172a;
        margin-bottom: 25px;
    }

    .about-text{
        color: #64748b;
        line-height: 1.9;
        font-size: 17px;
        margin-bottom: 20px;
    }

    .about-feature{
        display: flex;
        gap: 18px;
        margin-bottom: 25px;
    }

    .about-feature-icon{
        width: 60px;
        height: 60px;
        min-width: 60px;
        border-radius: 18px;
        background: linear-gradient(135deg,#2563eb,#60a5fa);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 26px;
        box-shadow: 0 10px 25px rgba(37,99,235,0.25);
    }

    .about-feature h5{
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .about-feature p{
        margin: 0;
        color: #64748b;
        line-height: 1.7;
    }

    .about-image-wrapper{
        position: relative;
    }

    .about-main-image{
        border-radius: 35px;
        width: 100%;
        box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    }

    .floating-card{
        position: absolute;
        bottom: 30px;
        left: -20px;
        background: #fff;
        padding: 20px 25px;
        border-radius: 20px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.12);
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .floating-card i{
        width: 55px;
        height: 55px;
        background: linear-gradient(135deg,#2563eb,#60a5fa);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 24px;
    }

    .floating-card h6{
        margin: 0;
        font-size: 18px;
        font-weight: 700;
    }

    .floating-card small{
        color: #64748b;
    }

    /* SERVICES SECTION */
    .services-section{
        background: #0f172a;
        position: relative;
        overflow: hidden;
    }

    .services-section::before{
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        background: rgba(37,99,235,0.08);
        border-radius: 50%;
        top: -220px;
        left: -120px;
    }

    .service-heading{
        color: #fff;
        font-size: 44px;
        font-weight: 800;
    }

    .service-subheading{
        color: #cbd5e1;
        max-width: 700px;
        margin: auto;
    }

    .modern-service-card{
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 30px;
        padding: 40px 30px;
        height: 100%;
        transition: .4s;
        backdrop-filter: blur(10px);
        position: relative;
        overflow: hidden;
    }

    .modern-service-card::before{
        content: "";
        position: absolute;
        width: 120px;
        height: 120px;
        background: rgba(255,255,255,0.05);
        border-radius: 50%;
        top: -40px;
        right: -40px;
    }

    .modern-service-card:hover{
        transform: translateY(-12px);
        background: rgba(255,255,255,0.12);
    }

    .modern-service-icon{
        width: 85px;
        height: 85px;
        border-radius: 24px;
        background: linear-gradient(135deg,#2563eb,#60a5fa);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 36px;
        margin-bottom: 30px;
        box-shadow: 0 12px 30px rgba(37,99,235,0.35);
    }

    .modern-service-card h4{
        color: #fff;
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .modern-service-card p{
        color: #cbd5e1;
        line-height: 1.8;
        margin-bottom: 0;
    }

    @media(max-width:991px){

        .about-title{
            font-size: 36px;
        }

        .service-heading{
            font-size: 34px;
        }

        .floating-card{
            position: relative;
            left: 0;
            bottom: 0;
            margin-top: 20px;
        }
    }


    .contact-section{
        background: linear-gradient(135deg,#0f172a,#111827);
        position: relative;
        overflow: hidden;
    }

    .contact-section::before{
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        background: rgba(37,99,235,0.08);
        border-radius: 50%;
        top: -200px;
        left: -120px;
    }

    .contact-section::after{
        content: "";
        position: absolute;
        width: 400px;
        height: 400px;
        background: rgba(96,165,250,0.08);
        border-radius: 50%;
        bottom: -180px;
        right: -100px;
    }

    .contact-box{
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 35px;
        padding: 60px;
        position: relative;
        z-index: 2;
        backdrop-filter: blur(12px);
    }

    .contact-badge{
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(37,99,235,0.15);
        color: #60a5fa;
        padding: 10px 22px;
        border-radius: 50px;
        font-weight: 600;
        margin-bottom: 25px;
    }

    .contact-title{
        color: #000;
        font-size: 45px;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 25px;
    }

    .contact-text{
        color: #000;
        font-size: 17px;
        line-height: 1.9;
        margin-bottom: 35px;
    }

    .contact-info{
        display: flex;
        align-items: center;
        gap: 20px;
        /* margin-bottom: 25px; */
    }

    .contact-icon{
        width: 75px;
        height: 75px;
        border-radius: 22px;
        background: linear-gradient(135deg,#2563eb,#60a5fa);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 32px;
        box-shadow: 0 15px 35px rgba(37,99,235,0.35);
    }

    .contact-info h5{
        color: #000;
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 6px;
    }

    .contact-info p{
        color: #000;
        margin-bottom: 0;
        font-size: 17px;
    }

    .contact-btn{
        background: linear-gradient(135deg,#2563eb,#60a5fa);
        border: none;
        color: #fff;
        padding: 16px 40px;
        border-radius: 50px;
        font-size: 17px;
        font-weight: 600;
        transition: .4s;
        text-decoration: none;
        display: inline-block;
        box-shadow: 0 15px 30px rgba(37,99,235,0.25);
    }

    .contact-btn:hover{
        transform: translateY(-5px);
        color: #fff;
    }

    .contact-image{
        width: 100%;
        border-radius: 30px;
    }

    @media(max-width:991px){

        .contact-box{
            padding: 35px;
        }

        .contact-title{
            font-size: 36px;
        }

        .contact-image{
            margin-top: 40px;
        }
    }
    .call_number{
        font-size: 44px;
        font-weight: bold;
    }

.accordion-button{
    color: #000;
    /* background-color: #2358d8; */
    box-shadow: none;
    font-size: 22px;
} 

.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #2358d8;
    box-shadow: none;
    font-size: 25px;
}



    