
/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f4f7fc;
    padding-top: 100px;

}

/* NAVBAR */


.navbar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    background: rgba(255,255,255,.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0,0,0,.08);
}

.nav-container{
    width:100%;
    height:80px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-radius: 20px;
    padding:0 60px;

    background:rgba(255,255,255,.15);
    backdrop-filter:blur(20px);
    border-bottom:1px solid rgba(255,255,255,.25);

    box-shadow:0 5px 20px rgba(0,0,0,.12);
}

.nav-container h1{
    margin-left: -229px;
    width: 16%;
    height: 26px;
    font-size: x-large;
}
/* Logo */

.logo{
    display:flex;
    align-items:center;
    justify-content:center;
    width:220px;
}

.logo img{
    height:60px;
    transition:.4s;
}

.logo img:hover{
    transform:scale(1.08) rotate(-3deg);
}

/* Links */

.nav-links{
    display:flex;
    gap:40px;
}

.nav-links a{
    position:relative;
    text-decoration:none;
    color:#1b2d50;
    font-weight:500;
    letter-spacing:.5px;
    transition:.35s;
}

.nav-links a::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:-8px;
    width:0%;
    height:3px;
    background:#0d6efd;
    border-radius:50px;
    transition:.35s;
    transform:translateX(-50%);
}

.nav-links a:hover{
    color:#0d6efd;
    transform:translateY(-3px);
}

.nav-links a:hover::after{
    width:100%;
}

/* Button */

.nav-btn button{
    border:none;
    outline:none;
    padding:14px 28px;
    border-radius:40px;
    color:white;
    cursor:pointer;
    font-weight:600;
    font-size:15px;
    background:linear-gradient(135deg,#0d6efd,#00b4ff);
    transition:.35s;
    box-shadow:0 10px 20px rgba(13,110,253,.3);
}

.nav-btn button:hover{
    transform:translateY(-4px) scale(1.05);
    box-shadow:0 18px 35px rgba(13,110,253,.45);
}

/* Mobile Icon */

.menu-btn{
    display:none;
    color:#0d6efd;
    font-size:30px;
    cursor:pointer;
}

/* Responsive */

@media(max-width:992px){

.logo{
    width:160px;
}

.nav-links{
    position:absolute;
    top:90px;
    left:0;
    width:100%;
    background:white;
    border-radius:20px;
    display:flex;
    flex-direction:column;
    align-items:center;
    padding:30px;
    gap:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);

    opacity:0;
    visibility:hidden;
    transform:translateY(-20px);
    transition:.4s;
}

.nav-links.active{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.nav-btn{
    display:none;
}

.menu-btn{
    display:block;
}

}

@media(max-width:576px){

.logo img{
    height:48px;
}

.nav-container{
    padding:0 18px;
    height:70px;
}

}

/* ===========================
   VISA LOOKUP SECTION
=========================== */

.lookup-card{
    width:70%;
    margin:50px auto;
    padding:45px;
    background:#fff;
    border-radius:22px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
    border:1px solid #e4edf7;

    display:grid;
    grid-template-columns:1fr 400px;
    grid-template-areas:
        "title title"
        "subtitle subtitle"
        "form image";
    column-gap:60px;
    row-gap:12px;
}

/* Heading */

.form-title{
    grid-area:title;
    text-align:center;
    font-size:32px;
    font-weight:700;
    color:#0d2d5a;
    margin:0;
    letter-spacing:1px;
}

.form-subtitle{
    grid-area:subtitle;
    text-align:center;
    color:#70839d;
    font-size:16px;
    margin-bottom:20px;
}

/* Form */

.lookup-card .col-md-7{
    grid-area:form;
    width:100%;
    max-width:460px;
    justify-self:center;
}

.lookup-card form{
    width:100%;
}

/* Labels */

.field-group{
    margin-bottom:20px;
}

.field-label{
    display:block;
    margin-bottom:8px;
    color:#163b6b;
    font-size:14px;
    font-weight:600;
    letter-spacing:.5px;
}

/* Inputs */

.field-group input{
    width:100%;
    height:52px;
    padding:0 18px;
    border-radius:12px;
    border:1px solid #d5e0ee;
    background:#f8fbff;
    font-size:15px;
    transition:.3s;
    outline:none;
}

.field-group input:hover{
    border-color:#0d6efd;
}

.field-group input:focus{
    background:#fff;
    border-color:#0d6efd;
    box-shadow:0 0 0 4px rgba(13,110,253,.12);
}

/* Button */

.btn-search{
    width:100%;
    height:54px;
    border:none;
    border-radius:14px;
    background:linear-gradient(135deg,#0057d8,#0d6efd);
    color:#fff;
    font-weight:600;
    font-size:15px;
    letter-spacing:1px;
    cursor:pointer;
    transition:.35s;
}

.btn-search:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 24px rgba(13,110,253,.25);
}

/* Image */

.lookup-card .col-md-5{
    grid-area:image;
    display:flex;
    justify-content:center;
    align-items:center;
}

.image-box{
    width:100%;
}

.visa-sample-img{
    width:100%;
    max-width:360px;
    height:auto;
    object-fit:contain;
    transition:.4s;
}

.visa-sample-img:hover{
    transform:scale(1.03);
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width:1200px){

.lookup-card{
    width:85%;
    grid-template-columns:1fr 320px;
    column-gap:40px;
}

.visa-sample-img{
    max-width:300px;
}

}

@media (max-width:992px){

.lookup-card{
    width:92%;
    grid-template-columns:1fr;
    grid-template-areas:
        "title"
        "subtitle"
        "image"
        "form";
    text-align:center;
}

.lookup-card .col-md-7{
    max-width:100%;
}

.lookup-card .col-md-5{
    margin-bottom:25px;
}

.visa-sample-img{
    max-width:280px;
}

}

@media (max-width:576px){

.lookup-card{
    padding:25px;
}

.form-title{
    font-size:26px;
}

.form-subtitle{
    font-size:14px;
}

.field-group input{
    height:48px;
}

.btn-search{
    height:50px;
}

.visa-sample-img{
    max-width:220px;
}

}

/* =======================
        FOOTER
======================= */

.footer{

    margin-top:100px;

    position:relative;

    overflow:hidden;

    background:#071c38;

    color:white;

}


/* Bottom */

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    padding:25px;

    text-align:center;

}

/* Plane */

.flight-line{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:20px;

    margin-bottom:18px;

}

.flight-line span{

    width:120px;

    height:2px;

    background:#4da3ff;

}

/* Copyright */

.footer-bottom p{

    color:#b8cae3;

    letter-spacing:.5px;

}

/* Responsive */

@media(max-width:992px){

.footer-container{

flex-direction:column;

text-align:center;

}

.footer-brand p{

margin:auto;

}

.portal-status{

justify-content:center;

}

.footer-services{

width:100%;

}

}

@media(max-width:600px){

.footer-services{

grid-template-columns:1fr;

}

.service-card{

height:120px;

}

.footer-brand h2{

font-size:26px;

}

.flight-line span{

width:60px;

}

}




/* form for result page  */

.result-wrapper{
    width:100%;
    padding:10px 0 40px;
}

/* Main Card */

.result-card{
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
    border:1px solid #d8e2f0;
}

/* Header */
.result-header{
    border-radius :15px;
}

.result-header h2{
    margin:0;
    font-size:30px;
    font-weight:700;
    letter-spacing:1px;
}

.photo-cell{
    width:220px;
    text-align:center;
    vertical-align:top;
}

.visa-photo{
    width:180px;
    height:220px;
    object-fit:cover;
    border:4px solid #dbe3f1;
    border-radius:8px;
    background:#fff;
}

.visa-table{
    width:100%;
    border-collapse:collapse;
}

.visa-table tr{
    border-bottom:1px solid #e5eaf4;
}

.visa-table th{
    width:220px;
    background:#f8fbff;
    color:#1d4fa8;
    font-weight:700;
    padding:14px;
}

.visa-table td{
    
    padding:12px;
    color:#444;
}

@media(max-width:768px){

.photo-cell{
    display:block;
    width:100%;
}

.visa-photo{
    width:150px;
    height:190px;
    margin:15px auto;
    display:block;
}

}
.result-header{
    background:#1d4fa8;
    padding:22px 30px;
}
.result-title{
    display:flex;
    justify-content:space-between;
    align-items:center;
    width:100%;
}

.result-title h2{
    margin:0;
    color:#fff;
    font-size:32px;
    font-weight:700;
    letter-spacing:2px;
    display:block;
}
.approved-badge{
    color: #fff;
}

.col-lg-9 {
        align-items: center;
    margin: auto;
    margin-top: 80px;
}
@media (max-width:1200px){

.nav-container{
    padding:0 35px;
}

.nav-container h1{
    margin-left:0;
    font-size:22px;
    width:auto;
}

.lookup-card{
    width:90%;
}

.result-card{
    width:95%;
    margin:auto;
}

}
@media (max-width:1200px){

.nav-container{
    padding:0 35px;
}

.nav-container h1{
    margin-left:0;
    font-size:22px;
    width:auto;
}

.lookup-card{
    width:90%;
}

.result-card{
    width:95%;
    margin:auto;
}

}
@media (max-width:768px){

body{

    padding-top:80px;
}

.nav-container{

    height:70px;
}

.logo img{

    height:45px;
}

.lookup-card{

    width:96%;
    padding:25px;
}

.form-title{

    font-size:26px;
}

.form-subtitle{

    font-size:15px;
}

.field-group input{

    height:48px;
    font-size:14px;
}

.btn-search{

    height:48px;
}

.visa-sample-img{

    max-width:220px;
}

.result-header{

    padding:18px;
}

.result-title{

    flex-direction:column;
    gap:10px;
}

.result-title h2{

    font-size:22px;
    text-align:center;
}

.visa-table{

    display:block;
    overflow-x:auto;
    white-space:nowrap;
}

.photo-cell{

    display:block;
    width:100%;
}

.visa-photo{

    width:140px;
    height:170px;
    margin:auto;
}

.footer{

    text-align:center;
}

.flight-line span{

    width:50px;
}

}
@media (max-width:576px){

.nav-container{

    padding:0 15px;
}

.lookup-card{

    width:98%;
    border-radius:15px;
    padding:18px;
}

.form-title{

    font-size:22px;
}

.form-subtitle{

    font-size:13px;
}

.field-label{

    font-size:13px;
}

.field-group{

    margin-bottom:15px;
}

.field-group input{

    height:45px;
    padding:0 14px;
}

.btn-search{

    height:45px;
    font-size:14px;
}

.visa-sample-img{

    max-width:180px;
}

.result-title h2{

    font-size:18px;
}

.visa-table th{

    width:150px;
    font-size:13px;
}

.visa-table td{

    font-size:13px;
}

.footer-bottom{

    padding:18px;
}

}