* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'Vortigra';
    src: url('../fonts/vortigra.woff2') format('woff2'),
        url('../fonts/vortigra.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.vortigra {
    font-family: 'Vortigra', sans-serif;
}

body {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    color: #222;
}

/**************************************************
Global styling
**************************************************/
a {
    color: #0d0994;
    text-decoration: none;
    transition: all 0.3s;
}

.bg-main {
    background: #0d0994;
}

.text-main {
    color: #0d0994;
}
.text-scnd {
    color: #ffd800;
}

a:hover {
    color: #322dc9;
    transition: all 0.3s;
}

.btn {
    border-radius: 25px;
    padding: 12px 20px;
    text-transform: uppercase;
}

.btn-main {
    background: #0d0994;
    color: #fff;
}
.btn-main:hover {
    background: #322dc9;
    color: #fff;
}

.btn-outline-main {
    background: none;
    color: #0d0994;
    outline: 2px solid #0d0994;
}
.btn-outline-main:hover {
    background: #0d0994;
    color: #fff;
}

.btn-outline-white {
    background: none;
    color: #fff;
    outline: 2px solid #fff;
}
.btn-outline-white:hover {
    background: #fff;
    color: #0d0994;
}

.btn-white {
    background: #fff;
    color: #222;
}
.btn-white:hover {
    background: #050342;
    color: #fff;
}

ul, li {
    list-style-type: none;
    padding: 0;
}

button {
    background: none;
    border: none;
}

section {
    width: 100%;
    padding: 40px 50px;
}
.section-inner {
    width: 100%;
}
.section-inner h2 {
    font-size: 2.3em;
}

i {
    transition: all 0.3s;
}

/*************************************
Main Styling
*************************************/


/*************************************
Header
*************************************/
/* .top-strip {
    width: 100%;
    height: 50px;
    background: #050342;
    background: linear-gradient(0deg, rgba(5, 3, 66, 1) 0%, rgba(5, 3, 66, 1) 50%, rgba(13, 9, 148, 1) 100%);
    padding: 0 50px;
    font-size: 0.8em;
    display: flex;
    justify-content: space-between;
    align-items: center;
} */
.top-strip {
    width: 100%;
    /* height: 50px; */
    background: #050342;
    background: linear-gradient(0deg, rgba(5, 3, 66, 1) 0%, rgba(5, 3, 66, 1) 50%, rgba(13, 9, 148, 1) 100%);
    font-weight: bold;
}

.top-strip .move-group {
    display: flex;
    align-items: center;
    gap: 40px;
}

.move {
    display: flex;
    align-items: center;
    padding: 5px 0;
}

.top-strip .move .m-dot {
    width: 15px;
    height: 15px;
    background: #fff;
    border-radius: 50%;
    margin-right: 20px;
}

.top-strip-left, .top-strip-right {
    display: flex;
    gap: 10px;
    align-items: center;
}

header {
    width: 100%;
    height: 90vh;
    overflow: hidden; /* Prevent image overflow */
    position: relative;
}

header.pages-header {
    height: 350px;
}

.pages-header-hero {
    width: 100%;
    height: 100%;
    background: url('../images/hero-img-3.jpg') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 60px;
    color: #fff;
}

.pages-headline {
    color: #fff;
    font-family: 'Vortigra';
    font-size: 2.3em;
}

.page-link {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    color: #fff;
}

.page-link a {
    color: #fff;
}

.page-link a:hover {
    color: #bebebe;
}

.carousel,
.carousel-inner,
.carousel-item {
    height: 100%;
}

.carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover; /* Ensure it fills the space nicely */
}

.carousel-caption {
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
}

/***************************************
Navbar
***************************************/
nav {
    width: 100%;
    height: 100px;
    background: #0e099431;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 0 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transition: background 0.3s ease, position 0.3s ease;
}

nav.fixed {
    position: fixed;
    background: #0e0994;
}

.brand {
    width: 200px;
}

/* .main-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 40px;
}

.main-menu li a {
    color: #fff;
}
.main-menu li a:hover {
    color: #c4c4c4;
} */

.main-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 40px;
    list-style: none; /* ensure list bullets are removed */
    padding: 0;
    margin: 0;
}

.main-menu li a {
    position: relative;
    color: #fff;
    text-decoration: none;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.main-menu li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background-color: #fff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.main-menu li a:hover {
    color: #c4c4c4;
}

.main-menu li a:hover::after {
    transform: scaleX(1);
}
/* *************************************** */

.right-btn {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-nav-btn {
    display: none;
}

.mobile-nav-btn button {
    width: 20px;
    height: 20px;
}

/* Mobile menu */
.mobile-nav-menu {
    width: 100%;
    height: 100px;
    position: fixed;
    bottom: -120px; /* hidden below view */
    left: 0;
    z-index: 1000;
    padding: 10px;
    transition: bottom 0.3s ease;
    display: block; /* always block, visibility controlled by position */
}

.mobile-nav-menu.show {
    bottom: 0; /* visible */
}

.mobile-nav-menu-inner {
    background: #fff;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    color: #070547;
    box-shadow: 0px 1px 12px 2px rgba(0,0,0,0.47);
    -webkit-box-shadow: 0px 1px 12px 2px rgba(0,0,0,0.47);
    -moz-box-shadow: 0px 1px 12px 2px rgba(0,0,0,0.47);
}

.mobile-nav-menu-inner .mobile-menu-item {
    width: 70px;
    height: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    flex-shrink: 1;
    transition: all 0.3s;
}

.mobile-menu-item .ctn {
    font-size: 8px;
}

.mobile-menu-item i {
    font-size: 1.2em;
}

.mobile-nav-menu-inner a:hover .mobile-menu-item {
    background: #070547;
    color: #fff;
    transition: all 0.3s;
}

/********************************************
Why choose us
********************************************/
.why-sect {
    width: 100%;
}

.why-sect-list li {
    margin: 10px 0;
}

.why-sect-list li span {
    margin-right: 20px;
}

.why-sect-imgs {
    width: 100%;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.why-sect-imgs div {
    height: 300px;
}

.why-sect-imgs div img {
    width: 100%;
    height: 100%;
    object-position: center;
}

.why-sect-top-curve, .why-sect-bottom-curve {
    width: 100%;
    height: 10px;
    background: #fff;
    border-radius: 100%;
    z-index: 100;
}

.why-sect a:hover i {
    margin-left: 10px;
    transition: all 0.3s;
}

/********************************************
Services
********************************************/
.section-inner .services a.btn:hover i {
    margin-left: 10px;
    transition: all 0.3s;
}

.service-cards .card {
    background: #e4e3fd;
    border: none;
    height: 400px;
    justify-content: space-between;
    transition: all 0.3s;
}

.service-cards .card:hover {
    box-shadow: 0px 0px 18px -4px rgba(191,191,191,0.75);
    -webkit-box-shadow: 0px 0px 18px -4px rgba(191,191,191,0.75);
    -moz-box-shadow: 0px 0px 18px -4px rgba(191,191,191,0.75);
    transition: all 0.3s;
}

.s-btn-hide {
    display: none;
}

/********************************************
About Jamie
********************************************/
.about-j {
    min-height: 400px;
}

.about-j .card {
    height: 100%;
    justify-content: center;
    background: #e4e3fd;
    border: none;
    box-shadow: 0px 0px 18px -4px rgba(191,191,191,0.75);
    -webkit-box-shadow: 0px 0px 18px -4px rgba(191,191,191,0.75);
    -moz-box-shadow: 0px 0px 18px -4px rgba(191,191,191,0.75);
}

.about-j-writeup {
    text-align: justify;
}

.about-j-writeup a {
    font-size: 0.7em;
}

.about-j-writeup a:hover i {
    margin-left: 10px;
}

.about-j img {
    object-position: center;
    width: 100%;
    height: 100%;
}


/********************************************
Testimonials
********************************************/
.testimonials .card {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    border: none;
}

.empty-space {
    height: 250px;
}

/********************************************
Booking - Homepage
********************************************/
.booking-section {
    width: 100%;
    min-height: 450px;
    /* margin: -200px 0 auto; */
    margin: 0 auto;
    box-shadow: 0px 0px 16px -4px rgba(0,0,0,0.74);
    -webkit-box-shadow: 0px 0px 16px -4px rgba(0,0,0,0.74);
    -moz-box-shadow: 0px 0px 16px -4px rgba(0,0,0,0.74);
}

.booking-section-left {
    min-height: 350px;
    background: url('../images/booking-img.jpg')no-repeat center center/cover;
}

.booking-section img {
    object-position: center;
    width: 100%;
    height: 100%;
}

.booking-section .btn:hover i {
    margin-left: 10px;
    transition: all 0.3s;
}

.sch-info {
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sch-call {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sch-call .sch-phone {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 100%;
    font-size: 2em;
}

.sch-call .sch-num a {
    font-size: 1.4em;
}

/********************************************
Helpful tips
********************************************/
section#helpful {
    background: url('../images/about-img.jpg')no-repeat center center/cover;
    background-attachment: fixed;
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
    margin-bottom: 40px;
    color: #fff;
}

section#helpful .section-inner {
    position: relative;
    width: 80%;
    margin: 0 auto;
}

.dark-overlay-h {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000000bd;
}

section#helpful .tips li {
    margin: 20px 0;
}

section#helpful .tips li i {
    margin-right: 10px;
}

/********************************************
Payment options
********************************************/
section#payments {
    margin: 40px 0;
}

section#payments .row {
    align-items: center;
}

section#payments .row .col-md-5 {
    margin-bottom: 40px;
}

.payment-cards {
    max-width: 300px;
    margin: 0 auto;
}

.payment-cards img {
    width: 100%;
}

/********************************************
Footer
********************************************/
footer {
    width: 100%;
    padding: 80px 50px 0 50px;
    background: #070547;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    
}

.footer-img {
    max-width: 300px;
}

.footer-socials {
    width: 100%;
    display: flex;
    gap: 10px;
    margin: 10px 0 40px 0;
}

.footer-socials li {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-socials li i {
    font-size: 1.4em;
    color: #070547;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a:hover {
    margin-left: 5px;
    transition: all 0.3s;
}

.bottom-footer {
    width: 100%;
    height: 70px;
    padding: 20px 0;
    background: #070547;
    border-top: 1px solid #e4e3fd;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* iRobbott */
.r-tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
}

.r-tooltip:hover {
    color: #1abc9c;
}

.r-tooltip .r-tooltiptext {
    visibility: hidden;
    width: 230px;
    background-color: #222;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 10px 12px;
    position: absolute;
    z-index: 1;
    bottom: 125%; /* Position above the link */
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    font-size: 14px;
}

.r-tooltip:hover .r-tooltiptext {
    visibility: visible;
    opacity: 1;
}

/********************************************
About page
********************************************/
.about-left { 
    position: relative;
    height: 500px;
    background: url('../images/about-img.jpg')no-repeat center center/cover;
    border-radius: 10px;
}

.section-inner .about.row {
    justify-content: space-between;
}

.section-inner .about.row .col-md-5 {
    box-shadow: 0px 0px 19px -3px rgba(104,104,104,0.75);
    -webkit-box-shadow: 0px 0px 19px -3px rgba(104,104,104,0.75);
    -moz-box-shadow: 0px 0px 19px -3px rgba(104,104,104,0.75);
}

.about-left img {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin-right: -70px;
}

/* Services */
section#about-page {
    margin-bottom: 200px;
}

#about-page .service-cards .card {
    height: 350px;
}

#about-page .service-cards .card h4 {
    font-size: 1em;
}

section#service-section .service-cards .card {
    background: #e4e3fd;
    border: none;
    height: 250px;
    justify-content: space-between;
    transition: all 0.3s;
}

/********************************************
Service page
********************************************/
section#service-section {
    margin-bottom: 200px;
}