
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f3f7fc;
    color:#1d2b4f;
    overflow-x:hidden;
	background:url('../images/cyber-pattern.png');
	
}

body::before{
    content:'';
    position:fixed;
    width:100%;
    height:100%;
    top:0;
    left:0;
    background:url('../images/cyber-pattern.png');   
    z-index:-1;
}

.page-wrapper{
    width:100%;
    padding-bottom:60px;
}

.wrapper{
    width:100%;
    max-width:1100px;
    margin:auto;
}

/* ==========================
   HERO BANNER
========================== */

.hero-banner{
    position:relative;
    width:100%;
    min-height:310px;
    background:
    linear-gradient(90deg, rgba(3,16,56,0.96) 0%, rgba(0,45,115,0.90) 60%, rgba(0,79,170,0.85) 100%),
    url('../images/cyber-pattern.png');
    background-size:cover;
    overflow:hidden;
    border-bottom-left-radius:80px;
    border-bottom-right-radius:80px;
}

.hero-banner::after{
    content:'';
    position:absolute;
    right:-120px;
    top:-100px;
    width:520px;
    height:520px;
    background:url('../images/cyber-lock.png') no-repeat center center;
    background-size:contain;
    opacity:0.95;
}

.hero-content{
    position:relative;
    z-index:2;
    padding:55px 60px;
   /* max-width:700px;*/
}

.hero-logo{
    display:flex;
    align-items:center;
    gap:20px;
}

.hero-logo img{
    width:78px;
}

.hero-title{
    color:#ffffff;
    font-size:52px;
    line-height:1.15;
    font-weight:600;
    margin-top:10px;
}

.hero-subtitle{
    margin-top:18px;
    color:#c7d6ff;
    font-size:22px;
    font-weight:400;
}

/* ==========================
   PAGE TITLE
========================== */

.form-heading{
    text-align:center;
    padding:50px 20px 15px;
}

.form-heading h1{
    font-size:40px;
    color:#0c2555;
    font-weight:500;
}

.heading-line{
    width:100px;
    height:5px;
    border-radius:20px;
    background:#2969c9;
    margin:20px auto 0;
}

/* ==========================
   INFO BOX
========================== */

.info-box{
    background:#f6fbff;
    border:2px solid #d5e7ff;
    border-radius:18px;
    padding:30px;
    display:flex;
    gap:25px;
    align-items:flex-start;
    margin:25px auto 45px;
    max-width:900px;
}




.info-box1{
    background:#bddfdcd6;
    border:2px solid #d5e7ff;
    border-radius:18px;
    padding:93px;
    display:flex;
    gap:25px;
    align-items:flex-start;
    margin:25px auto 45px;
    max-width:900px;
}


.info-icon{
    min-width:70px;
    width:70px;
    height:70px;
    border-radius:50%;
    background:#e7f0ff;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#2969c9;
    font-size:32px;
}

.info-box h3{
    color:#1f56af;
    font-size:25px;
    margin-bottom:10px;
}


.info-box1 h3{
    color:#1f56af;
    font-size:25px;
    margin-bottom:10px;
}


.info-box p{
    color:#50617e;
    line-height:1.9;
    font-size:17px;
}


.info-box1 p{
    color:#0e0e0e;
    line-height:2.3;
    font-size:17px;
}


/* ==========================
   CARD FORM
========================== */

.form-card{
    background:#ffffff;
    border-radius:28px;
    padding:35px;
    box-shadow:0 15px 45px rgba(13,54,120,0.10);
    border:1px solid #edf2f9;
}

.section-title{
    background:linear-gradient(90deg,#0c3f94,#0054c2);
    color:#ffffff;
    padding:10px 25px;
    border-radius:16px;
    font-size:26px;
    font-weight:500;
    margin-top:30px;
    display:flex;
    align-items:center;
    gap:14px;
}

.section-title:first-child{
    margin-top:0;
}

.form-row{
    margin-top:28px;
}

.form-row label,
.form-row div:first-child{
    display:block;
    font-size:18px;
    color:#22314d;
    margin-bottom:7px;
    font-weight:400;
}

.required{
    color:red;
}

.input-group{
    position:relative;
}

.input--style-5,
.form-control,
textarea{
    width:100%;
    height:51px;
    border:2px solid #dbe4ef;
    border-radius:14px;
    padding:0 22px;
    font-size:17px;
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    transition:0.3s ease;
    color:#1d2b4f;
}

textarea{
    min-height:150px;
    padding:20px;
    resize:vertical;
}

.input--style-5:focus,
.form-control:focus,
textarea:focus{
    outline:none;
    border-color:#2969c9;
    box-shadow:0 0 0 4px rgba(41,105,201,0.10);
}

select{
    cursor:pointer;
}

input[type="file"]{
    width:100%;
    background:#f9fbff;
    border:2px dashed #c7d9f7;
    border-radius:14px;
    padding:18px;
    font-size:17px;
}

/* ==========================
   CHECKBOX
========================== */

.checkbox-area{
    margin-top:35px;
    padding:25px;
    background:#f6faff;
    border-radius:18px;
    border:1px solid #dce9ff;
}

.checkbox-area label{
    font-size:18px;
    line-height:1.8;
    font-weight:500;
}

.checkbox-area input{
    transform:scale(1.4);
    margin-right:12px;
}

/* ==========================
   BUTTONS
========================== */

.button-row{
    text-align:center;
    margin-top:45px;
}

.btn{
    border:none;
    padding:16px 42px;
    border-radius:14px;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s ease;
    margin:8px;
}

.btn-submit{
    background:linear-gradient(90deg,#0054c2,#0a78ff);
    color:#ffffff;
}

.btn-submit:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 30px rgba(0,84,194,0.25);
}

.btn-reset{
    background:#bbc1c9;
    color:#20304d;
}

.btn-print{
    background:#10244d;
    color:#ffffff;
}

/* ==========================
   FOOTER
========================== */

.footer{
    text-align:center;
    margin-top:50px;
    color:#083b95;
	line-height:2.3;
}

.footer h3{
    font-size:24px;
    margin-bottom:10px;
}

.footer p{
    font-size:16px;
}



.footer1{
    text-align:center;
    margin-top:80px;
    color:#083b95;
line-height:2.3;
}

.footer1 h3{
    font-size:24px;
    margin-bottom:10px;
}

.footer1 p{
    font-size:16px;
}






/* ==========================
   RESPONSIVE
========================== */

@media(max-width:991px){

.hero-banner{
    min-height:auto;
    border-bottom-left-radius:40px;
    border-bottom-right-radius:40px;
}

.hero-banner::after{
    width:320px;
    height:320px;
    opacity:0.3;
}

.hero-content{
    padding:40px 25px 80px;
}

.hero-title{
    font-size:36px;
}

.hero-subtitle{
    font-size:18px;
}

.form-heading h1{
    font-size:36px;
}

.form-card{
    padding:20px;
}

.section-title{
    font-size:22px;
}

.form-row label,
.form-row div:first-child{
    font-size:17px;
}

.input--style-5,
.form-control,
textarea{
    height:56px;
    font-size:16px;
}

.info-box{
    flex-direction:column;
    text-align:center;
}

