 
/* ===================================== */
/* PAGE BASE */
/* ===================================== */
 
.vmap-page {
    padding: 60px 0;
    background: #f4f7fb;
}
 
/* ===================================== */
/* ROW FIX — KEY FOR STICKY TO WORK */
/* ===================================== */
 
.vmap-page .row {
    display: flex;
    align-items: flex-start; /* ← CRITICAL: lets sticky work inside flex */
}
 
 
/* ===================================== */
/* LEFT CONTENT */
/* ===================================== */
 
.vmap-left {
    padding-right: 20px;
}

.vmap-content-banner {
    margin-bottom: 20px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    background: #ffffff;
}

.vmap-content-banner img {
    display: block;
    width: 100%;
    height: auto;
}
 
 
/* ===================================== */
/* CARD UI */
/* ===================================== */
 
.vmap-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
}
 
.vmap-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}
 
.vmap-card h1 {
    color: #1b4e9b;
    font-weight: 700;
    font-size: 34px;
    line-height: 1.25;
    margin-bottom: 16px;
}

.vmap-card h2 {
    color: #1b4e9b;
    font-weight: 700;
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 15px;
}

@media (max-width: 767px) {
    .vmap-card h1 {
        font-size: 28px;
    }

    .vmap-card h2 {
        font-size: 23px;
    }
}


.vmap-card p {
    color: black; 
}


.vmap-card ul {
    color: black; 
}

.vmap-card li {
    color: black; 
}
 
 
/* ===================================== */
/* LIST */
/* ===================================== */
 
.vmap-list {
    padding-left: 18px;
}
 
.vmap-list li {
    margin-bottom: 10px;
}
 
 
/* ===================================== */
/* TABLE */
/* ===================================== */
 
.vmap-table {
    width: 100%;
    border-collapse: collapse;
}
 
.vmap-table th {
    background: #2B6EA6;
    color: #fff;
    padding: 12px;
}
 
.vmap-table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
    color: black;
}
 
 
/* ===================================== */
/* RIGHT SIDEBAR COLUMN */
/* ===================================== */
 
.vmap-sidebar-col {
    padding-left: 10px;
}
 
 
/* ===================================== */
/* STICKY WRAPPER — THE FIX */
/* ===================================== */
 
.vmap-sticky {
    position: sticky;
    top: 100px;          /* distance from top of viewport when stuck */
    /* No height, no overflow — let it be natural */
}
 
 
/* ===================================== */
/* ENQUIRY FORM CARD */
/* ===================================== */
 
.vmap-enquiry-form {
    background: #fff;
    padding: 28px 25px;
    border-radius: 14px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.10);
}
 
.vmap-enquiry-form h4 {
    color: #1b4e9b;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 22px;
    text-align: center;
    letter-spacing: 0.3px;
}
 
.vmap-enquiry-form .form-control {
    border-radius: 8px;
    border: 1.5px solid #e0e7ef;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 500;
    height: 40px;
    transition: border-color 0.2s;
}
 
.vmap-enquiry-form .form-control:focus {
    border-color: #2B6EA6;
    box-shadow: 0 0 0 3px rgba(43,110,166,0.10);
}
 
.vmap-btn {
    background: #2B6EA6;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.4px;
    transition: background 0.2s, transform 0.1s;
    cursor: pointer;
}
 
.vmap-btn:hover {
    background: #1a5288;
    transform: translateY(-1px);
}
 
.vmap-form-note {
    font-size: 11.5px;
    margin-top: 10px;
    color: #999;
    text-align: center;
}
 
 
/* ===================================== */
/* BREADCRUMB SECTION */
/* ===================================== */
 
.vmap-breadcrumb {
    position: relative;
    width: 100%;
    height: 130px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}
 
.vmap-breadcrumb::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}
 
.vmap-breadcrumb-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}
 
.vmap-breadcrumb-title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
 
.vmap-breadcrumb-subtitle {
    font-size: 18px;
    color: #e2e8f0;
}
 
 #vmapForm{
    width:100%;
}

.vmap-enquiry-form{
    background:#fff;
    padding:25px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}


/* ===================================== */
/* RESPONSIVE */
/* ===================================== */
 
@media (max-width: 992px) {
    .vmap-left,
    .vmap-sidebar-col {
        padding: 0;
    }
 
    /* On mobile/tablet, disable sticky so form flows naturally below content */
    .vmap-sticky {
        position: static;
        margin-top: 30px;
    }
}
 
@media (max-width: 768px) {
    .vmap-breadcrumb { height: 119px; }
    .vmap-breadcrumb-title { font-size: 28px; }
    .vmap-breadcrumb-subtitle { font-size: 14px; }
}



/* faq kinda design */


.vmap-accordion {
    margin-top: 20px;
}

.vmap-acc-item {
    background: #f7f7f7;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
}

.vmap-acc-header {
    width: 100%;
    padding: 16px 20px;
    font-weight: 600;
    background: #f1f1f1;
    border: none;
    outline: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.vmap-acc-header.active {
    background: #e9ecef;
}

.vmap-acc-icon {
    font-size: 18px;
}

.vmap-acc-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0 20px;
}

.vmap-acc-content.open {
    max-height: 300px;
    padding: 15px 20px;
}

/* faq kinda desnf ends  */


/* uni css starts here  */

.vmap-college-card {
    background: #fff;
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    height: 100%;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.vmap-college-card img {
    width: 100%;
    height: 180px;
    display: block;
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
    margin-bottom: 10px;
    background: #f8fbff;
    padding: 8px;
    image-rendering: auto;
}

.vmap-college-card h5 {
    color: #1b4e9b;
    font-size: 14px;
    font-weight: 600;
    margin-top: auto;
}

@media (max-width: 767px) {
    .vmap-college-card img {
        height: 150px;
    }
}

.vmap-college-card:hover {
    transform: translateY(-4px);
}

/* uni css ends here  */
 

.vmap-review-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.vmap-review-track {
    display: flex;
    gap: 15px;
    transition: transform 0.5s ease;
    will-change: transform;
}

.vmap-review-card {
    flex: 0 0 calc(50% - 7.5px);
    background: #f7f7f7;
    padding: 20px;
    border-radius: 12px;
    box-sizing: border-box;
}

.vmap-review-card h5 {
    color: #1b4e9b;
    font-weight: 600;
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .vmap-review-card {
        flex-basis: 100%;
    }
}


/* ===================================== */
/* IMAGE BREADCRUMB */
/* ===================================== */

.vmap-breadcrumb-img{
    width:100%;
    margin:0;
    padding:0;
    overflow:hidden;
}

.vmap-breadcrumb-img img{
    width:100%;
    height:auto;
    display:block;
}



