/* =========================================
GLOBAL
========================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif;
}

body{
    background:#f5f5f5;
    overflow-x:hidden;
}

img{
    max-width:100%;
    height:auto;
}

/* =========================================
BANNER
========================================= */

.banner{

    height:330px;

    padding-top:85px;

    background:
    linear-gradient(
    rgba(0,20,70,.88),
    rgba(0,20,70,.88)
    ),

    url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?q=80&w=1600');

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    color:white;

}

.banner h1{

    font-size:60px;

    font-weight:800;

    margin-bottom:10px;

}

.banner h4{

    color:#ffc107;

    margin-bottom:15px;

    font-size:20px;

    line-height:1.7;

}

.banner p{

    font-size:18px;

}

.banner span{

    color:#ffc107;

    font-weight:600;

}

/* =========================================
REGISTRATION SECTION
========================================= */

.registration{

    padding:80px 6%;

}

.title{

    text-align:center;

    font-size:42px;

    color:#021845;

    margin-bottom:50px;

    font-weight:800;

}

.line{

    width:70px;
    height:4px;

    background:#ffc107;

    margin:12px auto;

}

/* =========================================
REGISTRATION PANELS
========================================= */

.registration-panels{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:35px;

    margin-top:40px;

}

.reg-panel{

    background:#fff;

    padding:40px;

    border-radius:22px;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    display:flex;

    flex-direction:column;

    transition:.4s;

    position:relative;

    overflow:hidden;

}

.reg-panel:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 35px rgba(0,0,0,.12);

}

.reg-panel::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:#00133d;

}

.imp-panel::before{

    background:#ffc107;

}

.panel-header{

    text-align:center;

    margin-bottom:20px;

}

.panel-header i{

    font-size:45px;

    color:#00133d;

    margin-bottom:15px;

}

.panel-header h2{

    color:#00133d;

    font-size:32px;

    line-height:1.4;

    font-weight:700;

}

.reg-panel p{

    color:#555;

    line-height:1.9;

    margin-bottom:25px;

    text-align:justify;

    font-size:16px;

}

/* =========================================
FEE TABLE
========================================= */

.fee-table{

    border:1px solid #e5eaf1;

    border-radius:14px;

    overflow:hidden;

    margin-bottom:30px;

}

.fee-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:16px 22px;

    border-bottom:1px solid #e5eaf1;

    transition:.3s;

}

.fee-row:last-child{

    border-bottom:none;

}

.fee-row:hover{

    background:#f8fbff;

}

.fee-row span{

    color:#444;

    font-size:16px;

}

.fee-row strong{

    color:#00133d;

    font-size:17px;

}

/* =========================================
BUTTON
========================================= */

.btn{

    display:inline-block;

    margin-top:auto;

    width:100%;

    text-align:center;

    padding:15px 25px;

    background:#00133d;

    color:white;

    text-decoration:none;

    border-radius:40px;

    font-weight:600;

    transition:.4s;

}

.btn:hover{

    background:#ffc107;

    color:black;

    transform:translateY(-3px);

}

/* =========================================
PAYMENT SECTION
========================================= */

.payment-section{

    margin-top:70px;

    background:#fff;

    padding:50px;

    border-radius:22px;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    display:flex;

    gap:50px;

    align-items:center;

}

.payment-left{

    flex:1.4;

}

.payment-left h2{

    color:#00133d;

    font-size:38px;

    font-weight:700;

}

.payment-left p{

    line-height:1.9;

    color:#555;

    margin-top:20px;

}

/* =========================================
PAYMENT TABLE
========================================= */

.payment-table{

    margin-top:30px;

    border:1px solid #dfe6ef;

    border-radius:14px;

    overflow:hidden;

}

.payment-table .row{

    display:grid;

    grid-template-columns:250px 1fr;

    border-bottom:1px solid #dfe6ef;

}

.payment-table .row:last-child{

    border-bottom:none;

}

.payment-table span{

    background:#f7f9fc;

    padding:16px 20px;

    font-weight:600;

    color:#00133d;

}

.payment-table strong{

    padding:16px 20px;

    color:#333;

    word-break:break-word;

}

/* =========================================
PAYMENT RIGHT
========================================= */

.payment-right{

    flex:0 0 320px;

    text-align:center;

}

.payment-right img{

    width:100%;

    max-width:300px;

    background:#fff;

    border-radius:18px;

    box-shadow:0 5px 20px rgba(0,0,0,.12);

    padding:10px;

}

.payment-right h4{

    margin-top:20px;

    font-size:24px;

    color:#00133d;

}

.upi-text{

    margin-top:10px;

    color:#444;

    word-break:break-all;

    font-size:16px;

}

/* =========================================
NOTE BOX
========================================= */

.note{

    margin-top:25px;

    background:#fff6d6;

    border-left:5px solid #ffc107;

    padding:16px 20px;

    border-radius:10px;

    color:#5a4700;

    line-height:1.8;

}

.note i{

    margin-right:8px;

    color:#d39b00;

}

.button-group{
    display:flex;
    gap:15px;
    margin-top:25px;
    flex-wrap:wrap;
}

.button-group .btn{
    flex:1;
    text-align:center;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:1200px){

    .registration-panels{

        grid-template-columns:1fr;

    }

}

@media(max-width:991px){

    .banner{

        height:auto;

        padding:140px 20px 70px;

    }

    .banner h1{

        font-size:42px;

    }

    .banner h4{

        font-size:18px;

    }

    .title{

        font-size:34px;

    }

    .payment-section{

        flex-direction:column;

        padding:35px 25px;

    }

    .payment-table .row{

        grid-template-columns:1fr;

    }

    .payment-table span{

        border-bottom:1px solid #dfe6ef;

    }

    .payment-right{

        flex:auto;

    }

    .panel-header h2{

        font-size:26px;

    }

}

@media(max-width:576px){

    .banner h1{

        font-size:32px;

    }

    .banner h4{

        font-size:16px;

        line-height:1.8;

    }

    .banner p{

        font-size:15px;

    }

    .title{

        font-size:28px;

    }

    .reg-panel{

        padding:25px 20px;

    }

    .panel-header h2{

        font-size:22px;

    }

    .payment-left h2{

        font-size:28px;

    }

    .payment-section{

        padding:25px 18px;

    }

    .fee-row{

        flex-direction:column;

        align-items:flex-start;

        gap:8px;

    }

}