:root{
    --primary-color:#011e3f;
    --secondary-color:#065294;
}

/* ==========================================
   Global Styles
========================================== */

body{
    font-size:16px;
    padding-top:0;
}

.container{
    padding:0 60px;
}

.site-content,
#primary{
    padding:0;
}

#primary{
    max-width:1600px;
    width:100%;
}

header.entry-header,
.footer-bottom{
    display:none;
}

/* ==========================================
   Typography
========================================== */

h1{
    font-size:48px;
    line-height:1.1;
    font-weight:700;
}

h2{
    font-size:34px;
    line-height:1.2;
    font-weight:700;
}

h3{
    font-size:28px;
    line-height:1.3;
    font-weight:600;
}

h4{
    font-size:24px;
    line-height:1.4;
    font-weight:600;
}

h5{
    font-size:22px;
    line-height:1.4;
    font-weight:600;
}

h6{
    font-size:18px;
    line-height:1.5;
    font-weight:600;
}

/* ==========================================
   Header
========================================== */

.site-header{
    background:#fff;
}

.site-identity{
    padding:10px 0;
    display:flex;
    align-items:center;
}

.site-header .site-title-wrap{
    flex:0 0 auto;
    max-width:20%;
}

.site-header .top-navigation-right{
    flex:1;
    max-width:80%;
    display:flex;
    justify-content:flex-end;
}

/* Logo */

.custom-logo-link img{
    display:block;
    max-width:250px;
    transition:all 0.3s ease-in-out;
}

/* Sticky Header */

#masthead{
    position:relative;
    width:100%;
    z-index:999;
    transition:all 0.4s ease-in-out;
}

#masthead.sticky-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#fff;
    box-shadow:0 4px 20px rgba(0,0,0,0.08);
    animation:smoothSticky 0.4s ease-in-out;
}

#masthead.sticky-header .custom-logo-link img{
    max-width:200px;
}

#masthead.sticky-header .main-navigation ul li{
    font-size:16px;
}

body.header-space{
    padding-top:110px;
}

@keyframes smoothSticky{
    from{
        transform:translateY(-100%);
        opacity:0;
    }
    to{
        transform:translateY(0);
        opacity:1;
    }
}
#page {
    padding-top: 0;
}
.entry-content p a, .header-text a {
    box-shadow: none!important;
}
.entry-content p a:hover, .header-text a:hover, .check-list a:hover {
    box-shadow: inset 0 -1px 0 #004b8f!important;
}
/* ==========================================
   Navigation
========================================== */

.main-navigation .menu-item a{
    position:relative;
}

.site-header .main-navigation .menu-item a{
    margin-bottom:0;
}

.main-navigation .menu-item:not(:last-child) a:before{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:2px;
    background:var(--primary-color);
    transform:scaleX(0);
    transform-origin:left;
    transition:transform 0.4s ease;
}

.main-navigation .menu-item:not(:last-child) a:hover:before,
.main-navigation .menu-item:not(:last-child).current_page_item.current-menu-item a:before{
    transform:scaleX(1);
}

/* Book Button */

li.book-btn.menu-item{
    padding:0;
}

a.button.wc-forward, .site-header .main-navigation li.book-btn.menu-item a, a.button.wc-forward , button#place_order{
    padding:7px 15px;
    background:var(--primary-color);
    border-radius:5px;
    color:#fff;
    transition:0.3s ease-in-out;
}

.site-header .main-navigation li.book-btn.menu-item a:hover, a.button.wc-forward:hover, button#place_order:hover{
    background:var(--secondary-color);
    border-color:var(--secondary-color);
    color:#fff;
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(1,30,63,0.15);
}
a.button.wc-forward, button#place_order {
    padding: 12px 10px;
}

/* ==========================================
   Top Bar
========================================== */

.top-bar-main{
    background:linear-gradient(90deg,var(--primary-color) 0%,var(--secondary-color) 100%);
}

.top-bar{
    padding:12px 0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
}

.top-bar-right{
    display:flex;
    align-items:center;
}

.top-bar-left{
    gap:12px;
}

.top-bar-right{
    gap:25px;
}

.top-bar-left img{
    width:28px;
}

.top-bar-left span{
    color:#fff;
    font-size:14px;
    font-weight:500;
    line-height:1.4;
}

.top-bar-right a{
    display:flex;
    align-items:center;
    gap:8px;
    color:#fff;
    text-decoration:none;
    font-size:14px;
    font-weight:500;
    transition:.3s;
}

.top-bar-right a:hover{
    opacity:.8;
}

/* ==========================================
   Banner
========================================== */

.vc_row.wpb_row.banner-home{
    position:relative;
    overflow:hidden;
	z-index:0;
}
.vc_row.wpb_row.banner-home:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,#004e93 0%,rgba(0,78,147,0) 100%);
    z-index: -1;
    width: 100%;
    height: 100%;
}

.vc_row.wpb_row.banner-home > div{
    position:relative;
    z-index:2;
}

.text-white{
    color:#fff;
}

/* ==========================================
   CTA Section
========================================== */

.cta-section{
    display:flex;
    align-items:center;
}

.cta-section::before{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    left:0;
    top:0;
    z-index:-1;
    background:linear-gradient(45deg,var(--primary-color),var(--secondary-color));
}

/* ==========================================
   Buttons
========================================== */

.vc_btn3.vc_btn3-size-md {
    font-size: 16px!important;
}
.banner-home .cstm-btn a:hover,
.cta-section .cstm-btn a:hover{
    background-color: #fff !important;
    border-color: #fff !important;
    color: var(--primary-color) !important;
}

/* ==========================================
   Utility Classes
========================================== */

.grad-bg{
    background:linear-gradient(45deg,var(--primary-color),var(--secondary-color));
}

.btn-pos-right .wpb_wrapper{
    display:flex;
    align-items:flex-end;
    justify-content:end;
}

.col-with-icon .wpb_wrapper{
    display:flex;
    align-items:center;
}

.col-with-icon .wpb_wrapper .vc_do_icon,
.col-with-icon .wpb_text_column,
.three-grids .wpb_raw_code.wpb_raw_html.wpb_content_element{
    margin-bottom:0;
}

/* ==========================================
   Three Grid Section
========================================== */

.three-grids{
    display:flex;
    flex-wrap:wrap;
}

.three-grids > .wpb_column{
    display:flex;
    padding-left:15px;
    padding-right:15px;
}

.three-grids > .underline-box.wpb_column > .vc_column-inner {
    width: 100%;
    height: 100%;
    border: 1px solid #D9E2F1;
    border-radius: 16px;
    padding: 35px 30px;
    background: #fff;
    transition: 0.3s ease;
    position: relative;
}

.three-grids > .underline-box.wpb_column > .vc_column-inner:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    border-color:#014A8F;
}

.three-grids ul{
    margin:0;
    padding-left:18px;
}

/* ==========================================
   How Section
========================================== */

.how-col{
    position:relative;
}

.how-col::after{
    content:"";
    position:absolute;
    top:35%;
    right:-35px;
    transform:translateY(-50%);
    width:40px;
    height:40px;
    background:url('/wp-content/uploads/2026/05/right-arrow.svg') no-repeat center;
    background-size:contain;
}

.vc_row .how-col:last-child::after{
    display:none;
}

.how-col .vc_custom_heading{
    font-weight:700;
    margin-bottom:0 !important;
}

.how-col .vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-white.vc_icon_element-background{
    width:100px !important;
    height:100px !important;
    border:2px solid #065294;
}

.how-col .vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-white.vc_icon_element-background::before{
    position:absolute;
    width:30px;
    height:30px;
    background:#065294;
    border-radius:50%;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    left:0;
    right:0;
    margin:0 auto;
    top:-15px;
    font-size:14px;
    font-weight:600;
}

.how-col:nth-child(1) .vc_icon_element-inner::before{content:"1";}
.how-col:nth-child(2) .vc_icon_element-inner::before{content:"2";}
.how-col:nth-child(3) .vc_icon_element-inner::before{content:"3";}
.how-col:nth-child(4) .vc_icon_element-inner::before{content:"4";}

/* ==========================================
   List Styles
========================================== */

.check-list ul,
.underline-box ul{
    list-style:none;
    padding:0;
    margin:0;
}

.check-list li,
.underline-box li{
    position:relative;
    padding-left:30px;
    margin-bottom:12px;
}

.check-list li::before,
.underline-box li::before{
    content:"✔";
    position:absolute;
    left:0;
    top:0;
    color:var(--secondary-color);
    font-size:16px;
    font-weight:600;
}

/* ==========================================
   Underline Box
========================================== */

.underline-box .vc_custom_heading{
    min-height:67px;
}

.underline-box .link-position {
    position: absolute;
    bottom: 0;
    left: 30px;
    right: 30px;
}

.underline-box a{
    text-decoration:none;
    box-shadow:none !important;
    position:relative;
    transition:color 0.3s ease-in-out;
}

.underline-box a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-2px;
    width:0;
    height:2px;
    background:var(--primary-color);
    transition:width 0.3s ease-in-out;
}

.underline-box a:hover{
    color:var(--primary-color);
}

.underline-box a:hover::after{
    width:100%;
}

/* ==========================================
   Footer
========================================== */

.site-footer{
    background:var(--primary-color) !important;
}

.footer-widgets{
    margin-bottom:0;
}

.footer-widgets .footer-column{
    padding-top:3%;
}

.footer-column .widget_media_image{
    width:250px;
}

.footer-column .widget-title{
    color:#fff;
}

.footer-widgets ul li{
    display:flex;
}

.footer-widgets ul li a{
    display:flex;
    gap:10px;
    color:#fff;
    position:relative;
}

.footer-widgets ul li a:hover{
    color:#fff;
    text-decoration:none;
}

.footer-column .menu-item a:before{
    content:"";
    position:absolute;
    left:0;
    bottom:-3px;
    width:100%;
    height:2px;
    background:#fff;
    transform:scaleX(0);
    transform-origin:left;
    transition:transform 0.4s ease;
}

.footer-column .menu-item a:hover:before,
.footer-column .menu-item.current_page_item.current-menu-item a:before{
    transform:scaleX(1);
}

.footer-column .contact__list li a{
    transition:0.3s ease-in-out;
}

.footer-column .contact__list li a:hover{
    opacity:0.8;
}

.footer-column .wp-block-social-link:hover{
    transform:none;
}

ul.contact__list img{
    filter:brightness(0) invert(1);
}
.vc_btn3-container.cstm-btn a.vc_general.vc_btn3:hover {
    opacity: 0.9;
}
/** new home page css start **/
.banner-top-listing>.vc_column-inner>.wpb_wrapper .vc_row.wpb_row:last-child .col-with-icon>.vc_column-inner> .wpb_wrapper {
    border: 0;
    padding: 0;
    margin: 0;
}
.banner-top-listing>.vc_column-inner>.wpb_wrapper {
    background: #fff!important;
    width:260px;
    padding: 20px;
    border-radius: 20px;
    margin: auto;
}
.page-id-43 .vc_row.wpb_row.banner-home {
    position: relative;
    overflow: hidden;
    z-index: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.banner-top-listing>.vc_column-inner>.wpb_wrapper .vc_icon_element.vc_icon_element-outer.vc_do_icon.vc_icon_element-align-left.vc_icon_element-have-style .vc_icon_element-inner {
    width:40px!important;
	height:40px!important;
}
.banner-top-listing>.vc_column-inner>.wpb_wrapper .col-with-icon .vc_icon_element-color-custom span.vc_icon_element-icon {
    font-size: 22px!important;
}
.banner-top-listing>.vc_column-inner>.wpb_wrapper .col-with-icon>.vc_column-inner> .wpb_wrapper {
    display: flex;
    align-items: center;
    padding-bottom: 10px;
    margin-bottom: 10px;
    gap: 20px;
    border-bottom: 1px solid #ddd;
}
.col-with-icon .wpb_wrapper .wpb_wrapper {
    flex-direction: column;
    align-items: flex-start;
}
.col-with-icon .wpb_wrapper .wpb_wrapper h6{
  margin-bottom:0;
}
.simage-cstm img {
    width:100%;
    object-fit: cover;
}
.simage-cstm .vc_single_image-wrapper.vc_box_rounded.vc_box_border_grey, .simage-cstm figure.wpb_wrapper.vc_figure {
    width: 100%;
}
.vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-size-md.vc_icon_element-have-style-inner {
    border: 2px solid #014a8f!important;
}
.col-with-icon .wpb_wrapper {
    column-gap: 10px;
    row-gap: 0px;
}
.wpb_text_column.text-blue {
    color: #004B8F;
}



/** new home page css start **/
/** about page css start **/
.alert-col-block .vc_col-sm-2 {
    width: 8%;
}
.align-middle {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.inner-page-banner {
    background-position: right!important;
}
.inner-page-banner:before {
    content: ""!important;
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,#004e93 0%,rgba(0,78,147,0) 100%);
    z-index: -1;
    width: 100%;
    height: 100%;
}
.inner-page-banner {
    position: relative;
    z-index: 0;
}
.vc_icon_element.vc_icon_element-outer.vc_do_icon.link-arrow.vc_icon_element-align-left {
    position: absolute;
    top: -20px;
    right: 0;
    transform: rotate(-45deg);
}
.loc-img img {
    height: 100%!important;
    object-fit: cover;
}
.loc-box-row {
    border: 1px solid #ddd;
    margin-left: 0!important;
    margin-right: 0!important;
    border-radius: 10px!important;
    overflow: hidden;
    transition: 0.3s ease;
}
.vc_row.wpb_row.loc-box-row:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(1, 74, 143, .12);
}
.loc-box-row .vc_column_container>.vc_column-inner{
    padding-left: 0!important;
}
.imp-book-img img {
    aspect-ratio: 3/2;
    object-fit: cover;
	border-radius:5px;
}
.regional-centres{
    margin-top:10px;
}

.regional-centres h5{
    color:#014A8F;
    margin-bottom:15px;
}

.centre-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap: 10px;
    margin-top:20px;
}

.centre-card{
    background:#f5f9fd;
    border:1px solid #d9e8f5;
    border-radius:10px;
    padding: 10px;
    text-align:center;
    font-weight:600;
    color:#014A8F;
    transition:all .3s ease;
    font-size: 14px;
}

.centre-card:hover{
    transform:translateY(-3px);
    box-shadow:0 8px 20px rgba(1,74,143,.12);
	cursor:pointer;
}
.vc_row.wpb_row.vc_inner.vc_row-fluid.align-middle.loc-box-row {
    align-items: stretch;
}
.loc-box-row .wpb_single_image.wpb_content_element.vc_align_left.wpb_content_element {
    margin: 0!important;
}
.location-section .vc_row.vc_row-fluid {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}
.location-section .vc_col-sm-6 {
    display: flex;
    margin-bottom: 30px;
}
.location-section .vc_col-sm-6 > .vc_column-inner,
.loc-box-row {
    width: 100%;
    display: flex;
    height: 100%;
}
.loc-box-row > .vc_col-sm-4 {
    display: flex;
}
.loc-box-row > .vc_col-sm-4 .vc_column-inner,
.loc-box-row > .vc_col-sm-4 .wpb_wrapper,
.loc-box-row > .vc_col-sm-4 .wpb_single_image,
.loc-box-row > .vc_col-sm-4 .vc_figure,
.loc-box-row > .vc_col-sm-4 .vc_single_image-wrapper {
    height: 100%;
}
.loc-box-row > .vc_col-sm-4 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.loc-box-row > .vc_col-sm-8 {
    display: flex;
}
.loc-box-row > .vc_col-sm-8 > .vc_column-inner {
    height: 100%;
    width: 100%;
}
/** faq section **/
.custom-faq-item {
    background: #F1F4FC;
    padding: 10px;
    border: 1px solid #014a8f1c;
}
.custom-faq-item .vc_custom_heading{
    margin-bottom: 0;
}

/****/
.wpb_text_column.max-90 {
    max-width: 90%;
    margin: auto;
}
.check-list a {
    color: var(--secondary-color);
}
.check-list a:hover {
    color: var(--secondary-color);
	/**text-decoration:Underline;**/
}
.main-navigation {
    font-size: 16px;
}

.vc_btn3.vc_btn3-shape-rounded {
    border-radius: 3px!important;
}
.vc_row.wpb_row.vc_inner.vc_row-fluid.text-blue.vc_custom_1780387837447.vc_row-has-fill, .vc_row.wpb_row.vc_inner.vc_row-fluid.text-blue.alert-col-block {
    margin-left: 0;
    margin-right: 0;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}
.contact-info .contact-item{
    display:flex;
    align-items:center;
    gap:6px;
    font-size:18px;
}

.contact-info .contact-item i{
    color:#014A8F;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
}

.contact-info .contact-item a{
    
    text-decoration:none;
    font-weight:600;
}

.contact-info .contact-item a:hover{
    text-decoration:underline;
	color:#014A8F;
}

.contact-info-block .vc_column-inner .infobox {
    background: transparent;
    border: none;
    padding: 0 0 0 60px !important;
}
.contact-info-block .vc_column-inner .infobox .vc_message_box-icon {
    color:#014A8F;
    display: flex;
    align-items: flex-start;
    width: 2em;
}

.contact-info-block .vc_column-inner .infobox h3.panel-title {
    color: #021a01;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
}
.terms-content ol {
    padding-left: 0;
    margin-left: 20px;
}
.woocommerce div.product div.summary .product_meta , .woocommerce .summary.entry-summary>.price {
    display: none;
}
button.wc-bookings-booking-form-button.single_add_to_cart_button {
    background-color: #014A8F!important;
    color: #FFFFFF!important;
    padding: 14px 20px!important;
	font-weight:500!important;
}
.woocommerce-Price-amount.amount bdi {
    color: var(--secondary-color);
	font-weight:bold;
	font-size:18px;
}
.wc-bookings-date-picker .ui-datepicker .ui-datepicker-prev, .wc-bookings-date-picker .ui-datepicker .ui-datepicker-next {
    height: 3em;
}
/** checkout page **/
.woocommerce form .form-row.woocommerce-validated input.input-text, .woocommerce form .form-row.woocommerce-validated select {
    border-color:var(--secondary-color);
}
.woocommerce form .form-row .input-text, .woocommerce form .form-row select{
	border-color:#ddd;
}
.woocommerce form .form-row.woocommerce-invalid label , .woocommerce form .form-row label{
    line-height: 1.4;
}
h3#order_review_heading {
    margin-top: 60px;
    margin-bottom: 20px;
}
.woocommerce h3 {
    color: var(--secondary-color);
}
#add_payment_method #payment ul.payment_methods, .woocommerce-cart #payment ul.payment_methods, .woocommerce-checkout #payment ul.payment_methods {
    border-bottom: 1px solid rgb(6 82 148 / 14%);
}
#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
    background:#F1F4FC;
    border-radius: 5px;
}
#add_payment_method #payment div.payment_box, .woocommerce-cart #payment div.payment_box, .woocommerce-checkout #payment div.payment_box {
    background-color:#d0deed;
}
#add_payment_method #payment div.payment_box::before, .woocommerce-cart #payment div.payment_box::before, .woocommerce-checkout #payment div.payment_box::before {
    border: 1em solid #d0deed;
    border-right-color: transparent;
    border-left-color: transparent;
    border-top-color: transparent;
}
.woocommerce-privacy-policy-text {
    margin-bottom: 15px!important;
}
/** order received **/
.wc-booking-summary .wc-booking-summary-number .status-paid {
    background-color: var(--secondary-color);
}
.woocommerce-notice.woocommerce-notice--success.woocommerce-thankyou-order-received {
    font-size: 24px;
    color: var(--secondary-color);
    font-weight: 600;
}
ul.woocommerce-order-overview.woocommerce-thankyou-order-details.order_details {
    padding-left: 0;
}
.woocommerce ul.order_details li strong {
    color: var(--secondary-color);
    margin-top: 5px;
}
.woocommerce-table thead, .woocommerce-table tr:nth-child(even) {
    background: rgb(6 82 148 / 14%);
}
h2.woocommerce-order-details__title, h2.woocommerce-column__title {
    color: var(--secondary-color);
}
div#product-148 small.booking-spaces-left {
    display: none;
}
.woocommerce div.product .product_title{
	color: var(--secondary-color);
}
.woocommerce-product-details__short-description a {
    color: var(--secondary-color);
}
.woocommerce-product-details__short-description a:hover {
    color: var(--secondary-color);
	text-decoration:underline;
}
input#billing_test_location {
    user-select: none;
    pointer-events: none;
}
.wc-bookings-booking-form .block-picker li:nth-child(odd) a:focus, .wc-bookings-booking-form .block-picker li:nth-child(even) a:focus{outline:none!important; box-shadow:none!important;
}
.wc-bookings-booking-form .block-picker li:first-child a:focus{
    background:#fff!important;
	color:#62707c!important;
}
.wc-bookings-booking-form .block-picker li:nth-child(odd) a.selected {
background: #239e57 !important;
    color: #fff !important;
}

/** popup css **/
.quiz-popup-overlay{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.75);
    z-index:99999999;
    padding:20px;
}

.quiz-popup{
    background:#fff;
    width:100%;
    max-width:800px;
    max-height:90vh;
    overflow-y:auto;
    margin:0 auto;
    border-radius:12px;
    position:relative;
    padding:35px;
    box-shadow:0 15px 50px rgba(0,0,0,.25);
}

.quiz-close{
    position:absolute;
    top:15px;
    right:20px;
    font-size:32px;
    cursor:pointer;
    color:var(--primary-color);
    line-height:1;
}

.quiz-popup h3{
    color:var(--secondary-color);
    margin-bottom:10px;
}

.quiz-intro{
    margin-bottom:25px;
    color:#555;
}

.quiz-question{
    padding:18px 0;
    border-bottom:1px solid #e8e8e8;
}

.quiz-question p{
    margin:0 0 12px;
    font-weight:600;
    color:var(--primary-color);
    line-height:1.5;
}

.quiz-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
}
.quiz-options label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    cursor: pointer;
    transition: .3s;
    width: calc(33.33% - 15px);
}

.quiz-options label:hover{
    border-color:var(--secondary-color);
}

.quiz-submit {
    background: var(--secondary-color);
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 25px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.32;
}
.quiz-submit:hover{
    background:var(--primary-color);
}

#quiz-result{
    display:none;
    margin-top:25px;
    padding:20px;
    background:#f7f9fc;
    border-left:5px solid var(--secondary-color);
    border-radius:6px;
}

#quiz-result h4 {
    margin-top: 0;
    color: var(--primary-color);
    margin-bottom: 5px!important;
}
.woocommerce-message {
    border-top-color: var(--secondary-color);
}
.woocommerce-message::before{
	color:var(--secondary-color);
}
.woocommerce-message {
    margin-bottom: 30px!important;
}
.woocommerce ul{
	padding-left:0px;
}
.woocommerce ul.order_details li {
    margin-bottom: 12px;
}
.wpcf7-form-control {
    padding: 10px 15px!important;
}
.contact-form p {
    margin-bottom:0;
}
.contact-form .wpcf7-form-control {
    padding: 10px 15px!important;
    margin-bottom: 15px!important;
	border-radius:5px!important;
}
.contact-form .contact-field label {
    font-weight: 600!important;
	 margin-bottom:5px!important;
}
.contact-form .field-row {
    display: flex;
    gap: 15px;
    width: 100%;
}
.contact-field {
    width: 100%;
}
.contact-form {
    padding: 30px;
    box-shadow: 0px 0px 10px #ddd;
}
.contact-form textarea.wpcf7-form-control.wpcf7-textarea {
    max-height: 150px;
}
.contact-form input.wpcf7-form-control.wpcf7-submit {
    padding: 12px 15px!important;
    font-weight: normal;
    font-size: 16px!important;
    line-height: 1.3;
    min-height: 49px;
    margin-bottom: 0!important;
}
/** step section **/
.form-card{
    max-width:850px;
    margin:40px auto;
    background:#fff;
    border-radius:12px;
    padding:40px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}
.form-card h3{
    text-align:center;
    margin-bottom:10px;
    color:#014A8F;
}
.subtitle{
    text-align:center;
    margin-bottom:30px;
    color:#666;
}
.progress-wrapper{
    width:100%;
    height:8px;
    background:#e5e5e5;
    border-radius:50px;
    overflow:hidden;
    margin-bottom:15px;
}
.progress-bar{
    width:100%;
    height:100%;
    background:#014A8F;
}
.step-counter{
    text-align:right;
    color:#666;
    font-size:14px;
    margin-bottom:25px;
}
.step h4{
    color:#014A8F;
    margin-bottom:15px;
}
.step p{
    color:#666;
    margin-bottom:20px;
}
.checkbox-option {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}
.checkbox-option input{
    margin-top:4px;
}
.terms-link{
    display:inline-block;
    margin-bottom:30px;
    color:#014A8F;
    text-decoration:none;
    font-weight:600;
}
.btn-group{
    text-align:right;
}
.next-btn{
    background:#014A8F;
    color:#fff;
    border:none;
    padding:14px 30px;
    border-radius:8px;
    cursor:pointer;
    font-size:15px;
    transition:.3s;
}
.next-btn:hover{
    opacity:.9;
}
.woocommerce-account div#page {
    padding-top: 50px;
    padding-bottom: 50px;
}
/* WooCommerce My Account Menu */
.woocommerce-button , .woocommerce-MyAccount-content .button{
    background-color:var(--secondary-color)!important;
    color: #fff!important;
}
.edit {
    background: var(--secondary-color);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
}
.edit:hover, .woocommerce-button:hover, .woocommerce-MyAccount-content .button:hover {
    opacity:0.9;
}

 .woocommerce-MyAccount-content .button {
    min-height: 50px;
    display: flex!Important;
    align-items: center;
    max-width: max-content;
}.woocommerce table.my_account_orders .button{min-height:auto;}
.woocommerce-MyAccount-navigation {
    background: #fff;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(1, 30, 63, 0.08);
    border: 1px solid rgba(6, 82, 148, 0.08);
}
.woocommerce-Address {
    border: 1px solid var(--secondary-color);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(6, 82, 148, 0.10);
    background: #F1F4FC;
    margin-bottom: 20px;
}

.woocommerce-Address-title h2 {
    font-size: 24px;
    color: var(--secondary-color);
}
.woocommerce-MyAccount-navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.woocommerce-MyAccount-navigation ul li {
    margin: 0 0 8px;
}

.woocommerce-MyAccount-navigation ul li:last-child {
    margin-bottom: 0;
}

.woocommerce-MyAccount-navigation ul li a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    transition: all .3s ease;
    overflow: hidden;
}

/* Hover Effect */
.woocommerce-MyAccount-navigation ul li a:hover {
    background: rgba(6, 82, 148, 0.08);
    color: var(--secondary-color);
    transform: translateX(5px);
}

/* Active Menu */
.woocommerce-MyAccount-navigation ul li.is-active a {
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--secondary-color)
    );
    color: #fff;
    box-shadow: 0 8px 25px rgba(6, 82, 148, 0.25);
}

/* =========================
   Font Awesome Icons
   ========================= */

.woocommerce-MyAccount-navigation ul li a:before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    width: 20px;
    text-align: center;
    font-size: 16px;
    transition: all .3s ease;
}

/* Dashboard */
.woocommerce-MyAccount-navigation-link--dashboard a:before {
    content: "\f3fd";
}

/* Orders */
.woocommerce-MyAccount-navigation-link--orders a:before {
     content: "\f290"; 
}

/* Downloads */
.woocommerce-MyAccount-navigation-link--downloads a:before {
    content: "\f019";
}

/* Addresses */
.woocommerce-MyAccount-navigation-link--edit-address a:before {
    content: "\f3c5";
}

/* Payment Methods */
.woocommerce-MyAccount-navigation-link--payment-methods a:before {
    content: "\f09d";
}

/* Account Details */
.woocommerce-MyAccount-navigation-link--edit-account a:before {
    content: "\f007";
}

/* Bookings */
.woocommerce-MyAccount-navigation-link--bookings a:before {
    content: "\f073";
}

/* Logout */
.woocommerce-MyAccount-navigation-link--customer-logout a:before {
    content: "\f2f5";
}

/* Active Icon */
.woocommerce-MyAccount-navigation ul li.is-active a:before {
    color: #fff;
}

/* Logout Special Style */
.woocommerce-MyAccount-navigation-link--customer-logout {
    margin-top: 15px !important;
    padding-top: 15px;
    border-top: 1px solid #e9eef4;
}

.woocommerce-MyAccount-navigation-link--customer-logout a {
    color: #dc3545;
}

.woocommerce-MyAccount-navigation-link--customer-logout a:hover {
    background: rgba(220, 53, 69, 0.08);
    color: #dc3545;
}

/* ==========================================
   Responsive
========================================== */
@media (max-width:1366px){
	.custom-logo-link img {
		max-width: 100%;
	}
	
	.site-header .site-title-wrap {
		flex: 0 0 auto;
		max-width: 18%;
	}
	
	.site-header .top-navigation-right {
		max-width: 82%;
	}
	
}
@media (max-width: 1199px){
	.container {
		padding: 0 20px;
	}
    h1{
        font-size:48px;
    }

    h2{
        font-size:34px;
    }

    h3{
        font-size:28px;
    }

    h4{
        font-size:22px;
    }

    h5{
        font-size:20px;
    }

    h6{
        font-size:16px;
    }
	.main-navigation {
		font-size: 14px;
	}
	.wpb_row.vc_row-fluid.exam-sitting-row, .vc_row.wpb_row.vc_row-fluid.vc_custom_1780317557261, 
	.vc_row.wpb_row.vc_row-fluid.vc_custom_1780482810287{
		padding-left: 15px!important;
		padding-right: 15px!important;
	}
	.vc_icon_element-inner.vc_icon_element-color-custom.vc_icon_element-have-style-inner.vc_icon_element-size-md.vc_icon_element-style-rounded.vc_icon_element-background.vc_icon_element-background-color-custom, .vc_column-inner.vc_custom_1780639021546 .vc_icon_element-inner.vc_icon_element-color-custom.vc_icon_element-have-style-inner.vc_icon_element-size-md.vc_icon_element-style-rounded.vc_icon_element-background.vc_icon_element-background-color-custom {
    transform: scale(0.8);
}

}


/* ===============================
   Tablet
================================= */
@media (max-width:1024px){
	.how-col .vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-white.vc_icon_element-background {
		width: 75px !important;
		height: 75px !important;
	}
		.how-col .vc_icon_element.vc_icon_element-outer .vc_icon_element-inner.vc_icon_element-background-color-white.vc_icon_element-background .vc_icon_element-icon{
			font-size: 2em !important;
		}
	.how-col .vc_do_icon {
		margin-bottom: 10px;
	}
	.vc_column-inner.vc_custom_1780639021546 , .vc_column-inner.vc_custom_1780636915199, .vc_column-inner.vc_custom_1780642866798{
		padding: 24px !important;
	}
	.centre-grid {
		display: flex;
		flex-wrap: wrap;
	}
	
	
}
@media (max-width:1000px){

    h1{
        font-size:42px;
        line-height:1.15;
    }

    h2{
        font-size:30px;
    }

    h3{
        font-size:26px;
    }

    h4{
        font-size:22px;
    }

    h5{
        font-size:19px;
    }

    h6{
        font-size:16px;
    }
	.top-navigation {
		display: flex;
		flex-direction: row-reverse;
	}
	.site-header .site-title-wrap {
		max-width: 250px;
	}
	.three-grids > .underline-box.wpb_column > .vc_column-inner {
		padding: 0px 20px 30px!important;
	}
	.cta-section p br {
		display: none;
	}
	.grad-bg .col-with-icon.wpb_column.vc_column_container.vc_col-sm-3 {
		width: 50%;
		margin-bottom: 10px;
	}
	.mobile-navigation {
		display: flex;
		background: #fff!important;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}
	.button-toggle:hover, .button-toggle:active, .button-toggle:focus {
		color: #004b8f;
	}
	.mobile-navigation button {
		text-align: right;
		color: #004b8f;
	}
	.drawer-wrap {
		position: absolute;
		width: 100%;
		top:80px;
	}
	.drawer-menu-explore {
		background: var(--primary-color);
	}
	.banner-home .wpb_column.vc_column_container.vc_col-sm-6 {
		width: 65%;
	}
	#masthead {
		top: -5px;
	}
	.banner-top-listing.wpb_column.vc_column_container.vc_col-sm-6 {
		width: 30%;
	}
	.banner-top-listing>.vc_column-inner>.wpb_wrapper {
		width: 100%;
	}
	.banner-top-listing.wpb_column.vc_column_container.vc_col-sm-6>.vc_column-inner {
		padding: 0 15px;
	}
	.vc_column-inner.vc_custom_1780318651160 {
		padding-right: 20px!important;
	}
	
	
}


/* ===============================
   Mobile
================================= */

@media (max-width: 767px){

    h1{
        font-size:36px;
        line-height:1.2;
    }

    h2{
        font-size:28px;
        line-height:1.25;
    }

    h3{
        font-size:24px;
    }

    h4{
        font-size:20px;
    }

    h5{
        font-size:18px;
    }

    h6{
        font-size:16px;
    }
	.top-bar {
		padding: 8px 20px;
		justify-content: center;
		text-align: center;
		gap: 5px;
	}

    .top-bar-left{
        justify-content:center;
    }

    .top-bar-right{
        width:100%;
        justify-content:center;
        gap:15px;
    }

    .top-bar-left span,
    .top-bar-right a{
        font-size:13px;
    }
	.how-col.wpb_column.vc_column_container.vc_col-sm-3:not(:last-child) {
		margin-bottom: 40px;
	}
	.underline-box .vc_custom_heading {
		min-height: auto;
	}
	.col-with-icon.wpb_column.vc_col-sm-4 .vc_column-inner {
		border-right: 0!important;
	}
	.banner-home .wpb_column.vc_column_container.vc_col-sm-6 {
		width:100%;
	}
	.banner-home .wpb_column.vc_column_container.vc_col-sm-6 .vc_column-inner {
		padding-top: 0!important;
	}
	.banner-home .cstm-btn a.vc_general.vc_btn3 {
		font-size: 14px!important;
	}
	.grad-bg .col-with-icon.wpb_column.vc_column_container.vc_col-sm-3 {
		width: 50%;
	}
	.vc_row.wpb_row.banner-home {
		padding-top: 50px!important;
		padding-bottom: 50px!important;
	}
	.vc_btn3-container.cstm-btn i.vc_btn3-icon {
		display: none!important;
	}
	.cstm-btn a.vc_general.vc_btn3{
		font-size: 14px!important;
		padding-right: 20px!important;
		padding: 14px 14px;
	}
	.three-grids > .wpb_column {
		margin-bottom: 20px!important;
	}
	.underline-box .link-position {
		position: relative;
		bottom: 0;
		margin: 0;
	}
	.vc_row.wpb_row.vc_row-fluid.grad-bg.vc_custom_1779886142679 {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
	}
	.image-text-section .vc_column-inner.vc_custom_1780318565176 , .image-text-section .vc_column-inner.vc_custom_1780318661293{
		padding-left: 15px!important;
	}
	.vc_column-inner.vc_custom_1780318571538, .vc_column-inner.vc_custom_1780318651160,.vc_column-inner.vc_custom_1780468455860, .vc_column-inner.vc_custom_1780389320628{
		padding-right: 15px!important;
	}
	.vc_custom_1780317596973.simage-cstm {
		margin-bottom: 20px!important;
	}
	.wpb_single_image.wpb_content_element.icon-img {
		width: 50px;
	}
	.wpb_column.vc_column_container.vc_col-sm-2 {
		width: 90px;
	}
	.vc_row.imgicon-text {
		display: flex;
	}
	.wpb_text_column.wpb_content_element.vc_custom_1780384300722.text-blue.check-list {
	   margin-top:40px;
	}
	.simage-cstm.img-right {
		margin-top: 20px;
	}
	.simage-cstm.img-left.wpb_start_animation.animated {
		margin-bottom: 20px!important;
	}
	.vc_column-inner.vc_custom_1780389320628 {
		padding: 0!important;
	}
	.vc_column-inner.vc_custom_1780642866798 ,.vc_column-inner.vc_custom_1780639021546 {
		margin-top: 20px;
	}
	.text-blue.alert-col-block.vc_custom_1780482204139 {
		display: flex;
	}
	.vc_column-inner.vc_custom_1780484389353{
		padding-top: 20px !important;
		padding-right: 15px !important;
		padding-left: 15px !important;
	}
	.booking-row .wpb_column.vc_column_container.vc_col-sm-3:not(:last-child) {
		margin-bottom: 40px;
	}
	.centre-grid{
        grid-template-columns:repeat(2,1fr);
    }
	.location-section .vc_row.vc_row-fluid,
    .loc-box-row {
        display: block;
    }
    .loc-box-row > .vc_col-sm-4 img {
        height: auto;
    }
	.loc-box-row .vc_column_container>.vc_column-inner.vc_custom_1780652733903, .loc-box-row .vc_column_container>.vc_column-inner.vc_custom_1780647476251 {
		padding: 20px!important;
	}
	.quiz-popup{
        padding:20px;
        max-height:85vh;
    }

    .quiz-options{
        gap:10px;
    }
	.quiz-options label {
		gap: 6px;
		padding: 6px 6px;
	}
	.form-card{
        padding:25px;
    }

    .btn-group{
        text-align:center;
    }

    .next-btn{
        width:100%;
    }
	.woocommerce-MyAccount-navigation {
        padding: 15px;
        margin-bottom: 25px;
    }

    .woocommerce-MyAccount-navigation ul li a {
        padding: 12px 15px;
        font-size: 14px;
        gap: 12px;
    }

    .woocommerce-MyAccount-navigation ul li a:before {
        font-size: 15px;
    }
	
}


/* ===============================
   Small Mobile
================================= */

@media (max-width: 479px){
	.vc_row.wpb_row.vc_row-fluid.grad-bg.vc_custom_1779886142679 {
		flex-direction:column;
	}
	.grad-bg .col-with-icon.wpb_column.vc_column_container.vc_col-sm-3 {
		width:100%;
	}

    h1{
        font-size:32px;
    }

    h2{
        font-size:26px;
    }

    h3{
        font-size:22px;
    }

    h4{
        font-size:19px;
    }

    h5{
        font-size:17px;
    }

    h6{
        font-size:15px;
    }
	#masthead.sticky-header .custom-logo-link img {
		max-width:120px;
	}
	.grad-bg .col-with-icon .wpb_wrapper {
		column-gap: 10px;
		row-gap: 0px;
		max-width: 300px;
		margin: 0 auto;
	}
	.banner-home .vc_custom_1780555154385 {
		margin-left: 10px !important;
	}
	.vc_row.cta-section {
		flex-direction: column;
	}
	.btn-pos-right .wpb_wrapper {
		justify-content: start;
	}
	.btn-pos-right.wpb_column.vc_column_container.vc_col-sm-4 .vc_column-inner {
		padding-top: 0!important;
	}
	.banner-top-listing>.vc_column-inner>.wpb_wrapper {
		width: 100%;
	}
	.centre-grid{
        grid-template-columns:1fr;
    }
	.quiz-options label {
		padding: 6px 10px;
		width: max-content;
		font-size: 14px;
	}
	.contact-form .field-row {
		flex-direction: column;
		gap:0px;
	}
}


@media (max-width:374px){
	.banner-home .cstm-btn a.vc_general.vc_btn3 {
		font-size: 13px!important;
		padding: 10px!important;
	}
	.quiz-options label {
		width: 100%;
	}
}