body {
    margin: 0px;
    font-family: "Poppins", Arial, sans-serif;
    font-variant-numeric: lining-nums;
    font-feature-settings: "lnum" 1;
}

* {
    box-sizing: border-box;
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-variant-numeric: inherit;
    font-feature-settings: inherit;
}

html,
body {
    overflow-x: hidden !important;
}

html {
    scroll-behavior: smooth !important;
}




a {
    text-decoration: none !important;
    font-family: "Poppins", sans-serif;
}

h1 {
    font-family: "Poppins", sans-serif;
}

h2 {
    font-family: "Poppins", sans-serif;
}

h3 {
    font-family: "Poppins", sans-serif;
}

h4 {
    font-family: "Poppins", sans-serif;
}

h5 {
    font-family: "Poppins", sans-serif;
}

h6 {
    font-family: "Poppins", sans-serif;
}

p {
    font-family: "Poppins", sans-serif;
}

/* tag font end */

/* .sticky-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
} */



/* header start */

.navbar-custom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 20px 12px;
    background: transparent;
    transition: background-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.navbar-custom.sticky-scroll {
    position: fixed;
    background: #000000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}



.navbar-brand img {
    height: 70px;
}

.navbar-nav {
    gap: 10px;
}

.navbar-nav .nav-link {
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 400;
    padding: 10px 18px !important;
    transition: 0.3s;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #03a0d3;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    /* background: #f5f5f5; */
    background: #03a0d3;
    border: 1px solid #03a0d3;
    color: #ffffff;
    display: flex;
    font-size: 14px;
    font-weight: 400;
    align-items: center;
    justify-content: center;
    position: relative;
    text-decoration: none;
    transition: 0.3s;
    backdrop-filter: blur(10px);
}

.icon-btn:hover {
    background: transparent;
    color: #03a0d3;
    transform: translateY(-3px);
}

.icon-btn span {
    position: absolute;
    top: -5px;
    right: -3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #03a0d3;
    color: #ffffff;
    font-size: 11px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler {
    border: 0;
    box-shadow: none !important;
    color: #ffffff;
    font-size: 20px;
    padding: 0;
}


.offcanvas {
    background: #0c0c0c;
    width: 300px !important;
}

.offcanvas-header {
    padding: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-logo {
    height: 45px;
}

.mobile-menu {
    padding: 0;
    margin: 0;
    list-style: none;
}

.mobile-menu li {
    margin-bottom: 10px;
}

.mobile-menu li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    padding: 14px 18px;
    border-radius: 10px;
    display: block;
    transition: 0.3s;
    background: rgba(255, 255, 255, 0.03);
}

.mobile-menu li a:hover,
.mobile-menu li a.active {
    background: #03a0d3;
    color: #000000;
}


@media(max-width:992px){
    .header-icons{
        display: none;
    }
}


@media(max-width:432px) {
    .navbar-custom {
        padding: 12px;
    }

    .header-right {
        gap: 8px;
    }

    .header-icons {
        gap: 6px;
    }

    .navbar-brand img {
        height: 50px;
    }

    .icon-btn {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
}

/* header end */



/* banner start */


.hero-banner {
    position: relative;
    overflow: hidden;
    height: 100vh;
    height: 100svh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
}

/* Background Slider */
.hero-bg-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;

    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-bg-slide.is-active {
    opacity: 1;
}

/* Dark Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.60),
            rgba(0, 0, 0, 0.70)
        );

    pointer-events: none;
}

/* Content */
.hero-banner .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
}

/* Heading */
.hero-content h1 {
    font-size: 70px;
    line-height: 1.2;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 25px;
    /* font-family: "Marcellus SC", serif; */
    font-family: "Righteous", sans-serif;
}

.hero-content h1 span {
    color: #03a0d3;
}

/* Paragraph */
.hero-content p {
    max-width: 780px;
    margin: 0 auto 32px;
    font-size: 17px;
    line-height: 1.9;
    color: #ffffff;
}

/* Buttons */
.hero-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 45px;
}

.theme-btn,
.border-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.theme-btn {
    background: #03a0d3;
    color: #ffffff;
}

.theme-btn:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-4px);
}

.border-btn {
    background: #f9c905;
    color: #ffffff;
}

.border-btn:hover {
    background: #03a0d3;
    color: #ffffff;
    transform: translateY(-4px);
}


/* Scroll Down Cue */

.hero-scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 35px;
    z-index: 3;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    color: #ffffff;
    font-size: 14px;
    transform: translateX(-50%);
    animation: heroScrollBounce 2s ease-in-out infinite;
    transition: .3s ease;
}

.hero-scroll-cue:hover {
    background: #03a0d3;
    border-color: #03a0d3;
    color: #ffffff;
}

@keyframes heroScrollBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-8px);
    }
}

@media (max-width: 767px) {

    .hero-scroll-cue {
        display: none;
    }
}


/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 991px) {

    .hero-banner {
        height: 100vh;
        height: 100svh;
        padding: 135px 0 70px;
    }

    .hero-content {
        max-width: 750px;
    }

    .hero-content h1 {
        font-size: 52px;
    }

    .hero-content p {
        font-size: 15px;
    }
}

@media (max-width: 767px) {

    .hero-banner {
        height: 100vh;
        height: 100svh;
        padding: 125px 0 60px;
    }

    .hero-content h1 {
        font-size: 42px;
        line-height: 1.25;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 1.8;
    }

    .hero-btns {
        margin-bottom: 35px;
    }
}

@media (max-width: 576px) {

    .hero-banner {
        height: 100vh;
        height: 100svh;
        padding: 110px 0 50px;
    }

    .hero-content {
        padding: 0 10px;
    }

    .hero-content h1 {
        font-size: 40px;
        line-height: 1.3;
        margin-bottom: 18px;
    }

    .hero-content p {
        font-size: 13px;
        line-height: 1.8;
        margin-bottom: 25px;
    }

    .hero-btns {
        width: 100%;
        flex-direction: row;
        gap: 10px;
        margin-bottom: 30px;
    }

    .theme-btn,
    .border-btn {
        flex: 1;
        padding: 13px 10px;
        font-size: 15px;
    }
}

@media (max-width: 375px) {

    .hero-banner {
        height: 100vh;
        height: 100svh;
        padding: 100px 0 45px;
    }

    .hero-content h1 {
        font-size: 29px;
    }

    .hero-content p {
        font-size: 12px;
    }

    .theme-btn,
    .border-btn {
        font-size: 11px;
        padding: 12px 8px;
    }
}

/* banner end */



/* footer start */



.footer-section {
    background: #ffffff;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}



.footer-section > .container {
    background: #101010;
    padding: 55px 45px 28px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 2;
}



.footer-top {
    padding-bottom: 45px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}




.footer-logo {
    display: inline-block;
}

.footer-logo img {
    width: 150px;
    max-width: 100%;
    margin-bottom: 18px;
    display: block;
}



.footer-box p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 28px;
}


.footer-box h4 {
    color: #ffffff;
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
    font-family: "Josefin Sans", sans-serif;
    letter-spacing: 0.2px;
}

.footer-box h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 38px;
    height: 2px;
    background: #03a0d3;
    border-radius: 2px;
}


/* =========================================
   FOOTER LINKS
========================================= */

.footer-links {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.70);
    text-decoration: none;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-links li a::before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 10px;
    color: #03a0d3;
    margin-right: 8px;
    opacity: 1;
    transform: translateX(0);
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: #03a0d3;
    padding-left: 4px;
}

.footer-links li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}


/* =========================================
   SOCIAL ICONS
========================================= */

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #03a0d3;
    border: 1px solid #03a0d3;
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
    font-size: 13px;

    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: transparent;
    color: #03a0d3;
    transform: translateY(-4px);
}


/* =========================================
   CONTACT INFO
========================================= */

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}


/* Contact Icon */

.contact-icon {
    width: 35px;
    height: 35px;
    min-width: 35px;

    background: #03a0d3;
    border: 1px solid #03a0d3;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 0.3s ease;
}

.contact-icon i {
    color: #ffffff;
    font-size: 14px;
}

.contact-item:hover .contact-icon {
    background: transparent;
    transform: translateY(-2px);
}

.contact-item:hover .contact-icon i {
    color: #03a0d3;
}


/* Contact Text */

.contact-text {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.7;
    padding-top: 5px;
}


/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {
    padding: 24px 0 0;
}


/* Copyright */

.copyright-text {
    color: rgba(255, 255, 255, 0.60);
    font-size: 14px;
    margin: 0;
}


/* Powered */

.footer-powered {
    text-align: right;
}

.footer-powered a {
    color: rgba(255, 255, 255, 0.70);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-powered a:hover {
    color: #03a0d3;
}



@media (max-width: 991px) {

    .footer-section {
        padding: 55px 0;
    }

    .footer-section > .container {
        padding: 45px 30px 24px;
    }

    .footer-powered {
        text-align: left;
        margin-top: 10px;
    }
}



@media (max-width: 767px) {

    .footer-section {
        padding: 40px 0;
    }

    .footer-section > .container {
        padding: 40px 25px 22px;
        border-radius: 28px;
    }

    .footer-top {
        padding-bottom: 35px;
    }

    .footer-bottom {
        padding-top: 22px;
        text-align: center;
    }

    .footer-powered {
        text-align: center;
        margin-top: 10px;
    }
}


@media (max-width: 576px) {

    .footer-section {
        padding: 0px;
        padding-top: 30px;
    }

    .footer-section > .container {
        padding: 35px 20px 20px;
    }

    .footer-logo img {
        width: 110px;
    }

    .footer-box h4 {
        font-size: 19px;
    }

    .footer-box p,
    .footer-links li a,
    .contact-text,
    .copyright-text,
    .footer-powered a {
        font-size: 13px;
    }

    .footer-social a {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }

    .contact-item {
        gap: 8px;
    }

    .contact-icon {
        width: 34px;
        height: 34px;
        min-width: 34px;
    }

    .contact-icon i {
        font-size: 12px;
    }
}



@media (max-width: 375px) {

    .footer-section {
        padding: 25px 0;
    }

    .footer-section > .container {
        padding: 30px 16px 18px;
    }

    .footer-box h4 {
        font-size: 18px;
    }

    .footer-box p {
        font-size: 12px;
    }

    .footer-links li a,
    .contact-text {
        font-size: 12px;
    }

    .copyright-text,
    .footer-powered a {
        font-size: 12px;
    }
}

/* footer end */








/* bootom to top */

.back-to-top {
    position: fixed;
    right: 15px;
    bottom: 3%;
    width: 40px;
    height: 40px;
    background: #03a0d3;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    z-index: 999;
}

/* end */



.floating-icons {
    position: fixed;
    left: 20px;
    bottom: 30px;
    z-index: 9999;

    display: flex;
    flex-direction: column;
    gap: 15px;
}

.float-icon {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    text-decoration: none;

    font-size: 18px;
    color: #fff;

    position: relative;
    transition: .4s ease;
}

.float-icon:hover {
    transform: scale(1.12);
    color: #fff;
}

/* WhatsApp */

.whatsapp-icon {
    background: #25D366;
    /* box-shadow: 0 10px 25px rgba(37, 211, 102, .35); */
}

.whatsapp-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    animation: whatsappPulse 2s infinite;
}

/* Call */

.call-icon {
    background: #03a0d3;
    color: #ffffff;
    /* box-shadow: 0 10px 25px rgba(241, 207, 118, .35); */
}

.call-icon:hover {
    color: #000;
}

.call-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    animation: callPulse 2s infinite;
}

/* Animations */

@keyframes whatsappPulse {

    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, .5);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes callPulse {

    0% {
        box-shadow: 0 0 0 0 rgba(241, 207, 118, .5);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(241, 207, 118, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(241, 207, 118, 0);
    }
}

@media(max-width:767px) {

    .floating-icons {
        left: 15px;
        bottom: 20px;
    }

    .float-icon {
        font-size: 18px;
    }
}


/* end */




/* about start */

.odyssey-about {
    position: relative;
    padding: 70px 0;
    /* background: #f9f9f7; */
    background: #ffffff;
    overflow: hidden;
}


.odyssey-about-image {
    position: relative;
    padding: 0 35px 35px 0;
}

.odyssey-about-image img {
    width: 100%;
    /* height: 560px; */
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 2;
}

/* Yellow border shape */

/* .odyssey-about-image::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: #f9c905;
    left: -25px;
    bottom: 0;
    z-index: 1;
} */

/* Cyan corner */

/* .odyssey-about-image::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    border: 12px solid #03a0d3;
    right: 0;
    top: -25px;
    z-index: 1;
} */


.about-image-badge {
    position: absolute;
    z-index: 5;
    right: 0;
    bottom: 0;
    width: 220px;
    padding: 20px 22px;
    background: #101010;
    border-left: 5px solid #f9c905;
}

.about-image-badge strong {
    display: block;
    color: #f9c905;
    font-family: "Righteous", sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 8px;
}

.about-image-badge span {
    display: block;
    color: #fff;
    font-size: 11px;
    line-height: 1.5;
    letter-spacing: .5px;
}


.odyssey-about-content {
    padding-left: 25px;
}

.about-small-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #03a0d3;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.about-small-title i {
    width: 35px;
    height: 2px;
    background: #f9c905;
    display: inline-block;
}


/* Heading */

.odyssey-about-content h2 {
    margin: 0 0 25px;
    color: #101010;
    font-family: "Righteous", sans-serif;
    /* font-size: clamp(42px, 5vw, 64px); */
    font-size: 55px;
    line-height: 1.05;
    font-weight: 500;
}

.odyssey-about-content h2 span {
    display: block;
    color: #03a0d3;
}


/* Paragraph */

.odyssey-about-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 17px;
    max-width: 600px;
}

.odyssey-about-content .about-lead {
    color: #101010;
    font-size: 18px;
    line-height: 1.7;
    font-weight: 500;
}



.odyssey-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin-top: 18px;
    /* padding: 7px 7px 7px 25px; */
    padding: 16px 32px;
    background: #03a0d3;
    color: #fff;
    font-size: 15px;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: .5px;
    text-decoration: none;
    transition: .35s ease;
}

/* .odyssey-read-btn span {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #101010;
    color: #f9c905;
    transition: .35s ease;
} */

.odyssey-read-btn:hover {
    background: #101010;
    color: #fff;
}

/* .odyssey-read-btn:hover span {
    background: #f9c905;
    color: #101010;
} */

.odyssey-read-btn:hover i {
    transform: translateX(3px);
}

.odyssey-read-btn i {
    transition: .3s ease;
}


/* ================================
   CONNECTIVITY
================================ */

.odyssey-connectivity {
    margin-top: 75px;
    padding: 30px 35px;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    align-items: center;
    gap: 25px;
    background: #101010;
    position: relative;
}

.odyssey-connectivity::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 7px;
    height: 100%;
    background: #f9c905;
}


/* Title */

.connect-title span {
    color: #03a0d3;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.connect-title h3 {
    margin: 7px 0 0;
    color: #fff;
    font-family: "Righteous", sans-serif;
    font-size: 23px;
    line-height: 1.3;
    font-weight: 400;
}

.connect-title h3 strong {
    color: #f9c905;
    font-weight: 400;
}


/* Locations */

.connect-location {
    min-height: 55px;
    padding-left: 20px;
    border-left: 1px solid rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    gap: 13px;
}

.connect-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #03a0d3;
    color: #fff;
    font-size: 16px;
}

.connect-location small {
    display: block;
    color: #f9c905;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.connect-location h4 {
    margin: 0;
    color: #fff;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 500;
}


/* ================================
   RESPONSIVE
================================ */

@media (max-width: 1199px) {

    .odyssey-about-content {
        padding-left: 5px;
    }

    .odyssey-connectivity {
        grid-template-columns: 1fr 1fr;
    }

    .connect-title {
        grid-column: span 2;
        margin-bottom: 5px;
    }

}


@media (max-width: 991px) {

    .odyssey-about {
        padding: 80px 0;
    }

    .odyssey-about-image {
        max-width: 650px;
        margin: 0 auto 25px;
    }

    .odyssey-about-content {
        padding-left: 0;
    }

    .odyssey-about-content h2 {
        font-size: 52px;
    }

}


@media (max-width: 767px) {

    .odyssey-about {
        padding: 65px 0;
    }

    .odyssey-about-image {
        padding: 0 20px 25px 0;
    }

    /* .odyssey-about-image img {
        height: 420px;
    } */

    .odyssey-about-image::before {
        width: 110px;
        height: 110px;
        left: -10px;
    }

    .odyssey-about-image::after {
        width: 65px;
        height: 65px;
        border-width: 8px;
        top: -15px;
    }

    .about-image-badge {
        width: 190px;
        padding: 16px;
    }

    .about-image-badge strong {
        font-size: 27px;
    }

    .odyssey-about-content h2 {
        font-size: 43px;
    }

    .odyssey-about-content .about-lead {
        font-size: 16px;
    }

    .odyssey-connectivity {
        margin-top: 55px;
        padding: 25px 20px;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .connect-title {
        grid-column: auto;
    }

    .connect-location {
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,.15);
        padding: 15px 0 0;
    }

}


@media (max-width: 480px) {

    /* .odyssey-about-image img {
        height: 350px;
    } */

    .odyssey-about-content h2 {
        font-size: 35px;
        line-height: 1.2;
    }

    .about-small-title {
        font-size: 9px;
    }

    .odyssey-about-content p {
        font-size: 14px;
    }

    .about-image-badge {
        width: 170px;
    }

}

/* about end */


/* mission & vision start */

.odyssey-mission-vision {
    position: relative;
    padding: 90px 0;
    background: #f9f9f7;
    overflow: hidden;
}

.mv-heading {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 50px;
}

.mv-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #03a0d3;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.mv-subtitle i {
    width: 30px;
    height: 2px;
    background: #f9c905;
}

.mv-heading h2 {
    margin: 0;
    color: #101010;
    font-family: "Righteous", sans-serif;
    font-size: 46px;
    line-height: 1.15;
    font-weight: 400;
}

.mv-heading h2 span {
    color: #03a0d3;
}


/* Cards */

.mv-card {
    position: relative;
    height: 100%;
    padding: 45px 40px;
    background: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 20px;
    overflow: hidden;
    transition: .4s ease;
}

.mv-card::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(3, 160, 211, .06);
    transition: .4s ease;
}

.mv-card-vision::before {
    background: rgba(249, 201, 5, .10);
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 55px rgba(16, 16, 16, .10);
    border-color: transparent;
}

.mv-card:hover::before {
    transform: scale(1.15);
}

.mv-icon {
    position: relative;
    z-index: 1;
    width: 68px;
    height: 68px;
    margin-bottom: 26px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(3, 160, 211, .09);
    color: #03a0d3;

    border-radius: 18px;
    font-size: 26px;

    transition: .35s ease;
}

.mv-card-vision .mv-icon {
    background: rgba(249, 201, 5, .16);
    color: #101010;
}

.mv-card:hover .mv-icon {
    background: #03a0d3;
    color: #ffffff;
}

.mv-card-vision:hover .mv-icon {
    background: #f9c905;
    color: #101010;
}

.mv-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 16px;
    color: #101010;
    font-family: "Righteous", sans-serif;
    font-size: 24px;
    font-weight: 400;
}

.mv-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #666666;
    font-size: 15px;
    line-height: 1.9;
}


/* Core Values Row */

.mv-values-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 45px;
}

.mv-value-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 22px 18px;
    background: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 14px;
    transition: .35s ease;
}

.mv-value-item:hover {
    transform: translateY(-5px);
    border-color: transparent;
    box-shadow: 0 18px 40px rgba(16, 16, 16, .08);
}

.mv-value-item i {
    color: #03a0d3;
    font-size: 18px;
    transition: .35s ease;
}

.mv-value-item:hover i {
    color: #f9c905;
}

.mv-value-item span {
    color: #101010;
    font-size: 14.5px;
    font-weight: 500;
}


/* RESPONSIVE */

@media (max-width: 991px) {

    .odyssey-mission-vision {
        padding: 75px 0;
    }

    .mv-heading h2 {
        font-size: 38px;
    }

    .mv-values-row {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 767px) {

    .mv-card {
        padding: 35px 28px;
    }

    .mv-heading h2 {
        font-size: 32px;
    }

}

@media (max-width: 480px) {

    .mv-values-row {
        grid-template-columns: 1fr;
    }

    .mv-value-item {
        justify-content: flex-start;
    }

}

/* mission & vision end */




/* breadcrumb-section */

.breadcrumb-section {
    position: relative;
    padding: 140px 0 100px;
    background: url('..//image/banner.jpeg') right center /cover no-repeat;
    overflow: hidden;
    z-index: 1;
}

.breadcrumb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.72),
            rgba(0, 0, 0, 0.45));
    z-index: -1;
}


.breadcrumb-content {
    position: relative;
    z-index: 2;
}


.breadcrumb-content h1 {
    font-size: 60px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.breadcrumb-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.breadcrumb-links a {
    color: #f9c905;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s ease;
}

.breadcrumb-links a:hover {
    color: #ffffff;
}

.breadcrumb-links span {
    color: #ffffff;
    font-size: 14px;
}

.breadcrumb-links p {
    margin: 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}

/* RESPONSIVE */

@media (max-width: 991px) {

    .breadcrumb-section {
        padding: 110px 0 90px;
    }

    .breadcrumb-content h1 {
        font-size: 42px;
    }
}

@media (max-width: 576px) {

    .breadcrumb-section {
        padding: 120px 0 49px;
    }

    .breadcrumb-content h1 {
        font-size: 32px;
    }

    

    .breadcrumb-links a,
    .breadcrumb-links p {
        font-size: 14px;
    }
}

/* breadcrumb end */


/* service  */


.odyssey-services {
    padding: 50px 0;
    background: #f9f9f7;
    position: relative;
}



.services-heading {
    text-align: center;
    margin-bottom: 55px;
}

.services-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #03a0d3;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.services-subtitle i {
    width: 30px;
    height: 2px;
    background: #f9c905;
}

.services-heading h2 {
    margin: 0;
    color: #101010;
    font-family: "Righteous", sans-serif;
    font-size: 50px;
    line-height: 1.1;
    font-weight: 400;
}

.services-heading h2 span {
    color: #03a0d3;
}



.service-card {
    height: 100%;
    background: #fff;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: .4s ease;
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    /* border-bottom-color: #f9c905; */
    box-shadow: 0 20px 50px rgba(0, 0, 0, .10);
}



.service-image {
    height: 280px;
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .6s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.07);
}


/* Dark overlay */

/* .service-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(16, 16, 16, .55),
        transparent 55%
    );
} */



.service-content {
    padding: 28px 28px 30px;
}

.service-content h3 {
    color: #101010;
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 12px;
}

.service-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    margin: 0 0 22px;
}



.service-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 3px;

    color: #03a0d3;
    text-decoration: none;

    font-size: 15px;
    font-weight: 400;
    letter-spacing: .5px;

    transition: .3s ease;
}

.service-read-btn i {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    
    color: #03a0d3;

    transition: .3s ease;
}

.service-read-btn:hover {
    color: #101010;
}

.service-read-btn:hover i {
    color: #101010;
    transform: translateX(5px);
}


@media (max-width: 991px) {

    .odyssey-services {
        padding: 60px 0;
    }

    .services-heading {
        margin-bottom: 40px;
    }

    .service-image {
        height: 250px;
    }

}


@media (max-width: 767px) {

    .odyssey-services {
        padding: 50px 0;
    }

    .services-heading h2 {
        font-size: 42px;
    }

    .service-image {
        height: 260px;
    }

    .service-content {
        padding: 25px;
    }

}


@media (max-width: 480px) {

    .services-heading h2 {
        font-size: 35px;
    }

    .service-image {
        height: 230px;
    }

    .service-content h3 {
        font-size: 20px;
    }

}

/* service end */


/* service detail start */

.service-detail-section {
    padding: 100px 0;
}

.detail-main-image {
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 35px;
}

.detail-main-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.detail-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #03a0d3;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.detail-subtitle i {
    width: 30px;
    height: 2px;
    background: #f9c905;
}

.detail-content h2 {
    margin: 0 0 18px;
    color: #101010;
    font-family: "Righteous", sans-serif;
    font-size: 40px;
    line-height: 1.15;
    font-weight: 400;
}

.detail-content h2 span {
    color: #03a0d3;
}

.detail-lead {
    color: #101010;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 18px;
}

.detail-content p {
    color: #666666;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 18px;
}

.detail-content h3 {
    margin: 35px 0 22px;
    color: #101010;
    font-family: "Righteous", sans-serif;
    font-size: 24px;
    font-weight: 400;
}


/* Quick Stats */

.detail-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 35px 0;
}

.detail-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 16px;
    background: #f9f9f7;
    border-radius: 14px;
    transition: .35s ease;
}

.detail-feature-item:hover {
    background: #fff;
    box-shadow: 0 15px 35px rgba(16, 16, 16, .08);
}

.detail-feature-item i {
    color: #03a0d3;
    font-size: 22px;
    flex-shrink: 0;
}

.detail-feature-item strong {
    display: block;
    color: #101010;
    font-size: 15px;
    font-weight: 600;
}

.detail-feature-item span {
    display: block;
    color: #777777;
    font-size: 12px;
}


/* Amenities List */

.detail-amenities-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 20px;
}

.detail-amenities-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #444444;
    font-size: 14.5px;
}

.detail-amenities-list li i {
    color: #03a0d3;
    font-size: 15px;
}


/* Detail Gallery */

.detail-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.detail-gallery-item {
    border-radius: 14px;
    overflow: hidden;
    height: 160px;
}

.detail-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .5s ease;
}

.detail-gallery-item:hover img {
    transform: scale(1.08);
}


/* Sidebar */

.detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: sticky;
    top: 110px;
}

.detail-info-card,
.detail-contact-card,
.detail-other-services {
    background: #fbfbfa;
    border: 1px solid #eef0f2;
    border-radius: 18px;
    padding: 30px;
}

.detail-info-card h4,
.detail-contact-card h4,
.detail-other-services h4 {
    margin: 0 0 20px;
    color: #101010;
    font-family: "Righteous", sans-serif;
    font-size: 18px;
    font-weight: 400;
}

.detail-info-list {
    list-style: none;
    margin: 0 0 25px;
    padding: 0;
}

.detail-info-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #555555;
    font-size: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #eef0f2;
}

.detail-info-list li:last-child {
    border-bottom: none;
}

.detail-info-list li i {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(3, 160, 211, .09);
    color: #03a0d3;
    border-radius: 50%;
    font-size: 13px;
}

.detail-btn-full {
    width: 100%;
    justify-content: center;
}

.detail-contact-card p {
    color: #777777;
    font-size: 14px;
    margin-bottom: 18px;
}

.detail-contact-card a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #101010;
    font-size: 14.5px;
    font-weight: 500;
    margin-bottom: 12px;
    transition: .3s ease;
}

.detail-contact-card a:last-child {
    margin-bottom: 0;
}

.detail-contact-card a i {
    color: #03a0d3;
}

.detail-contact-card a:hover {
    color: #03a0d3;
}

.detail-other-services ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.detail-other-services li {
    border-bottom: 1px solid #eef0f2;
}

.detail-other-services li:last-child {
    border-bottom: none;
}

.detail-other-services a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 2px;
    color: #444444;
    font-size: 14.5px;
    font-weight: 500;
    transition: .3s ease;
}

.detail-other-services a i {
    color: #03a0d3;
    font-size: 12px;
    transition: .3s ease;
}

.detail-other-services a:hover {
    color: #03a0d3;
}

.detail-other-services a:hover i {
    transform: translateX(4px);
}


/* Detail CTA */

.detail-cta {
    padding: 90px 0;
    background: linear-gradient(rgba(16, 16, 16, .78), rgba(16, 16, 16, .78)),
        url('..//image/banner.jpeg') center / cover no-repeat;
}

.detail-cta h2 {
    margin: 0 0 18px;
    color: #ffffff;
    font-family: "Righteous", sans-serif;
    font-size: 42px;
    font-weight: 400;
}

.detail-cta h2 span {
    color: #f9c905;
}

.detail-cta p {
    max-width: 560px;
    margin: 0 auto 32px;
    color: #dddddd;
    font-size: 15px;
    line-height: 1.8;
}

.detail-cta .hero-btns {
    margin-bottom: 0;
}


/* RESPONSIVE */

@media (max-width: 1199px) {

    .detail-features {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 991px) {

    .service-detail-section {
        padding: 70px 0;
    }

    .detail-content h2 {
        font-size: 34px;
    }

    .detail-sidebar {
        position: static;
        margin-top: 10px;
    }

}

@media (max-width: 767px) {

    .detail-main-image img {
        height: 280px;
    }

    .detail-amenities-list {
        grid-template-columns: 1fr;
    }

    .detail-gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .detail-cta h2 {
        font-size: 30px;
    }

}

@media (max-width: 480px) {

    .detail-features {
        grid-template-columns: 1fr 1fr;
    }

    .detail-gallery-grid {
        grid-template-columns: 1fr;
    }

}

/* service detail end */


/* why choose  */


.odyssey-why {
    position: relative;
    padding: 90px 0;
    background: #fbfbfa;
    overflow: hidden;
}

.odyssey-why::before,
.odyssey-why::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.odyssey-why::before {
    top: -140px;
    right: -120px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(3, 160, 211, .10), transparent 70%);
}

.odyssey-why::after {
    bottom: -160px;
    left: -140px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(249, 201, 5, .12), transparent 70%);
}

.odyssey-why > .container {
    position: relative;
    z-index: 1;
}

.why-image-wrap {
    position: relative;
    padding: 20px 45px 45px 20px;
    min-height: 570px;
}


/* Decorative frame behind image */

.why-image-wrap::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 240px;
    height: 240px;
    border: 14px solid rgba(3, 160, 211, .10);
    border-radius: 24px;
    z-index: 1;
    pointer-events: none;
}

.why-image-wrap::after {
    content: "\f005";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 22px;

    position: absolute;
    left: 0;
    bottom: 65px;
    width: 78px;
    height: 78px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f9c905;
    color: #101010;
    border-radius: 18px;
    z-index: 4;
    box-shadow: 0 15px 30px rgba(249, 201, 5, .35);
}


/* Main Image */

.why-image-main {
    width: 100%;
    /* height: 540px; */
    position: relative;
    z-index: 3;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(16, 16, 16, .14);
}

.why-image-main img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 20px;
    transition: transform .7s ease;
}

.why-image-wrap:hover .why-image-main img {
    transform: scale(1.04);
}


.why-experience {
    position: absolute;

    right: 0;
    bottom: 0;

    width: 245px;

    padding: 25px;

    background: #f9c905;
    color: #101010;

    z-index: 6;

    display: flex;
    flex-direction: column;

    border-radius: 18px 0 0 0;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .18);
}

.why-experience i {
    font-size: 18px;
    color: #101010;
    margin-bottom: 8px;
}

.why-experience span {
    display: block;

    color: #101010;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 4px;
}

.why-experience strong {
    display: block;

    color: #101010;

    font-family: "Righteous", sans-serif;

    font-size: 25px;
    line-height: 1.1;

    font-weight: 400;
}

.why-experience small {
    display: block;

    margin-top: 9px;

    color: #101010;

    font-size: 10px;

    font-weight: 600;
}




.why-content {
    position: relative;
    z-index: 3;

    padding-left: 20px;
}




.why-subtitle {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #03a0d3;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 17px;
}

.why-subtitle i {
    width: 35px;
    height: 2px;

    display: inline-block;

    background: #f9c905;
}




.why-content h2 {
    margin: 0 0 22px;

    color: #101010;

    font-family: "Righteous", sans-serif;

    font-size: 50px;

    line-height: 1.05;

    font-weight: 400;

    letter-spacing: -.5px;
}

.why-content h2 span {
    display: block;

    color: #03a0d3;
}



.why-intro {
    max-width: 600px;

    margin: 0 0 32px;

    color: #666666;

    font-size: 15px;

    line-height: 1.8;
}



.why-list {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}


.why-item {
    display: flex;
    align-items: flex-start;

    gap: 16px;

    padding: 24px 20px;

    background: #ffffff;
    border: 1px solid #eef0f2;
    border-radius: 16px;

    transition: .35s ease;
}

.why-item:hover {
    transform: translateY(-6px);
    border-color: transparent;
    box-shadow: 0 22px 45px rgba(16, 16, 16, .10);
}


.why-number {
    width: 54px;
    height: 54px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    position: relative;

    background: rgba(3, 160, 211, .09);

    color: #03a0d3;

    border-radius: 50%;

    font-size: 19px;

    transition: .35s ease;
}

.why-number::after {
    content: attr(data-num);

    position: absolute;
    top: -5px;
    right: -5px;

    width: 20px;
    height: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #101010;
    color: #ffffff;

    border-radius: 50%;

    font-family: "Righteous", sans-serif;
    font-size: 9px;

    box-shadow: 0 3px 8px rgba(0, 0, 0, .2);

    transition: .35s ease;
}

.why-item:hover .why-number {
    background: #f9c905;

    color: #101010;
}

.why-item:hover .why-number::after {
    background: #03a0d3;
    color: #ffffff;
}



.why-item-content h3 {
    margin: 0 0 8px;

    color: #101010;

    font-family: "Righteous", sans-serif;

    font-size: 18px;

    line-height: 1.3;

    font-weight: 400;
}

.why-item-content p {
    margin: 0;

    color: #777777;

    font-size: 13px;

    line-height: 1.7;
}



@media (max-width: 1199px) {

    .why-list {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 991px) {

    .odyssey-why {
        padding: 85px 0;
    }

    .why-image-wrap {
        max-width: 650px;

        margin: 0 auto 35px;
    }

    .why-content {
        padding-left: 0;
    }

    .why-content h2 {
        font-size: 52px;
    }

}

@media (max-width: 767px) {

    .odyssey-why {
        padding: 65px 0;
    }

    .why-image-wrap {
        min-height: 440px;

        padding: 18px 25px 0 15px;
    }

    /* .why-image-main {
        height: 410px;
    } */

    .why-image-wrap::before {
        width: 160px;
        height: 160px;
        border-width: 10px;
    }

    .why-image-wrap::after {
        width: 60px;
        height: 60px;
        bottom: 45px;
        font-size: 18px;
    }

    .why-experience {
        width: 195px;

        padding: 18px;
    }

    .why-experience strong {
        font-size: 21px;
    }



    .why-content h2 {
        font-size: 43px;
    }

    .why-intro {
        font-size: 14px;
    }

}



@media (max-width: 480px) {

    .why-image-wrap {
        min-height: 390px;

        padding: 14px 15px 0 10px;
    }

    /* .why-image-main {
        height: 350px;
    } */

    .why-image-wrap::before {
        width: 120px;
        height: 120px;
        border-width: 8px;
    }

    .why-image-wrap::after {
        width: 46px;
        height: 46px;
        bottom: 35px;
        border-radius: 12px;
        font-size: 14px;
    }

    .why-experience {
        width: 170px;

        padding: 15px;
    }

    .why-experience strong {
        font-size: 19px;
    }

    .why-experience small {
        font-size: 9px;
    }

    .why-content h2 {
        font-size: 35px;
        line-height: 1.3;
    }

    .why-subtitle {
        font-size: 9px;

        letter-spacing: 1.5px;
    }

    .why-item {
        gap: 12px;

        padding: 18px 16px;
    }

    .why-number {
        width: 42px;
        height: 42px;

        font-size: 15px;
    }

    .why-number::after {
        width: 16px;
        height: 16px;
        font-size: 8px;
    }

    .why-item-content h3 {
        font-size: 16px;
    }

    .why-item-content p {
        font-size: 11px;
    }

}

/* why choose end */



/* gallery start */


.odyssey-gallery {
    padding: 60px 0;
    background: #f9f9f7;
    overflow: hidden;
}


.gallery-heading {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: #03a0d3;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 15px;
}

.gallery-subtitle i {
    width: 32px;
    height: 2px;

    display: inline-block;

    background: #f9c905;
}

.gallery-heading h2 {
    margin: 0;

    color: #101010;

    font-family: "Righteous", sans-serif;

    font-size: 50px;

    font-weight: 400;

    line-height: 1.1;
}

.gallery-heading h2 span {
    color: #03a0d3;
}



.gallery-image {
    height: 340px;

    border-radius: 18px;

    background: #eee;

    transition: transform .4s ease;
}

.gallery-image:hover {
    transform: translateY(-8px);
}

.gallery-image-inner {
    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;

    border-radius: 18px;

    box-shadow: 0 15px 35px rgba(16, 16, 16, .10);

    transition: box-shadow .4s ease;
}

.gallery-image:hover .gallery-image-inner {
    box-shadow: 0 25px 55px rgba(16, 16, 16, .22);
}

.gallery-image-inner img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .8s cubic-bezier(.2, .65, .3, 1);
}

.gallery-image:hover .gallery-image-inner img {
    transform: scale(1.08);
}


/* Hover Overlay */

.gallery-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 22px;

    background: linear-gradient(to top, rgba(16, 16, 16, .88), rgba(16, 16, 16, 0) 65%);

    opacity: 0;

    transition: opacity .4s ease;
}

.gallery-image:hover .gallery-overlay {
    opacity: 1;
}

.gallery-zoom {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #03a0d3;
    color: #ffffff;

    border-radius: 50%;

    font-size: 18px;

    opacity: 0;
    transform: scale(.6);

    transition: all .4s ease;
}

.gallery-image:hover .gallery-zoom {
    opacity: 1;
    transform: scale(1);
}

.gallery-caption {
    position: absolute;
    left: 22px;
    bottom: 20px;

    overflow: hidden;
}

.gallery-caption h4 {
    margin: 0;

    color: #ffffff;

    font-family: "Righteous", sans-serif;
    font-size: 16px;
    font-weight: 400;

    opacity: 0;
    transform: translateY(16px);

    transition: all .45s ease .05s;
}

.gallery-image:hover .gallery-caption h4 {
    opacity: 1;
    transform: translateY(0);
}




.odyssey-gallery-slider {
    position: relative;
}

.odyssey-gallery-slider .owl-stage {
    display: flex;
}

.odyssey-gallery-slider .owl-item {
    padding: 0 7px;
}




.odyssey-gallery-slider .owl-nav {
    position: absolute;

    top: -95px;
    right: 0;

    display: flex;
    gap: 10px;
}

.odyssey-gallery-slider .owl-nav button.owl-prev,
.odyssey-gallery-slider .owl-nav button.owl-next {
    width: 46px;
    height: 46px;

    margin: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #03a0d3 !important;

    color: #fff !important;

    font-size: 14px !important;

    border-radius: 50% !important;

    box-shadow: 0 10px 25px rgba(3, 160, 211, .25);

    transition: all .3s ease;
}

.odyssey-gallery-slider .owl-nav button:hover {
    background: #f9c905 !important;
    color: #101010 !important;
    transform: translateY(-3px);
}




.odyssey-gallery-slider .owl-dots {
    margin-top: 30px;
}

.odyssey-gallery-slider .owl-dot span {
    width: 25px !important;
    height: 3px !important;

    margin: 5px 4px !important;

    border-radius: 0 !important;

    background: #d5d5d5 !important;

    transition: .3s ease;
}

.odyssey-gallery-slider .owl-dot.active span {
    width: 45px !important;

    background: #03a0d3 !important;
}



@media (max-width: 991px) {

    .odyssey-gallery {
        padding: 50px 0;
    }

    .gallery-image {
        height: 320px;
    }

    .odyssey-gallery-slider .owl-nav {
        position: static;

        justify-content: center;

        margin-top: 25px;
    }

}


@media (max-width: 767px) {

    .odyssey-gallery {
        padding: 50px 0;
    }

    .gallery-heading {
        margin-bottom: 35px;
    }

    .gallery-heading h2 {
        font-size: 40px;
    }

    .gallery-image {
        height: 350px;
    }

}


@media (max-width: 480px) {

    .gallery-heading h2 {
        font-size: 35px;
        line-height: 1.3;
    }

    .gallery-image {
        height: 300px;
    }

}


/* =====================================
   CONTACT PAGE
===================================== */

.odyssey-contact-info {
    padding: 90px 0 40px;
    background: #ffffff;
}

.contact-info-card {
    height: 100%;
    padding: 36px 30px;
    background: #fbfbfa;
    border: 1px solid #eef0f2;
    border-radius: 18px;
    text-align: center;
    transition: .35s ease;
}

.contact-info-card:hover {
    background: #ffffff;
    border-color: transparent;
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(16, 16, 16, .10);
}

.contact-info-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(3, 160, 211, .09);
    color: #03a0d3;

    border-radius: 50%;

    font-size: 22px;

    transition: .35s ease;
}

.contact-info-card:hover .contact-info-icon {
    background: #f9c905;
    color: #101010;
}

.contact-info-card h3 {
    margin: 0 0 10px;
    color: #101010;
    font-family: "Righteous", sans-serif;
    font-size: 19px;
    font-weight: 400;
}

.contact-info-card p {
    margin: 0;
    color: #777777;
    font-size: 14px;
    line-height: 1.8;
}

.contact-info-card p a {
    color: #777777;
    text-decoration: none;
    transition: .3s ease;
}

.contact-info-card p a:hover {
    color: #03a0d3;
}


/* Form + Map Section */

.odyssey-contact-form-section {
    padding: 40px 0 100px;
    background: #ffffff;
}

.contact-form-card {
    height: 100%;
    padding: 45px;
    background: #fbfbfa;
    border: 1px solid #eef0f2;
    border-radius: 22px;
}

.contact-form-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: #03a0d3;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;

    margin-bottom: 15px;
}

.contact-form-subtitle i {
    width: 30px;
    height: 2px;
    background: #f9c905;
    display: inline-block;
}

.contact-form-card h2 {
    margin: 0 0 15px;
    color: #101010;
    font-family: "Righteous", sans-serif;
    font-size: 42px;
    line-height: 1.1;
    font-weight: 400;
}

.contact-form-card h2 span {
    color: #03a0d3;
}

.contact-form-intro {
    max-width: 520px;
    margin: 0 0 30px;
    color: #666666;
    font-size: 14px;
    line-height: 1.8;
}

.contact-form .form-control {
    padding: 14px 18px;
    background: #ffffff;
    border: 1px solid #e7e7e7;
    border-radius: 12px;
    font-size: 14px;
    color: #101010;
    transition: .3s ease;
}

.contact-form .form-control::placeholder {
    color: #9a9a9a;
}

.contact-form .form-control:focus {
    border-color: #03a0d3;
    box-shadow: 0 0 0 4px rgba(3, 160, 211, .12);
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 16px 36px;

    background: #03a0d3;
    color: #ffffff;

    border: 0;
    border-radius: 50px;

    font-size: 15px;
    font-weight: 500;

    cursor: pointer;
    transition: all .3s ease;
}

.contact-submit-btn:hover {
    background: #101010;
    color: #ffffff;
    transform: translateY(-4px);
}


/* Map */

.contact-map-wrap {
    width: 100%;
    height: 320px;

    border-radius: 22px;
    overflow: hidden;

    box-shadow: 0 25px 50px rgba(16, 16, 16, .12);

    margin-bottom: 25px;
}

.contact-map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: grayscale(.15);
}


/* WhatsApp Card */

.contact-whatsapp-card {
    display: flex;
    align-items: center;
    gap: 18px;

    padding: 24px;

    background: #101010;
    border-radius: 18px;

    text-decoration: none !important;

    transition: .3s ease;
}

.contact-whatsapp-card:hover {
    background: #03a0d3;
    transform: translateY(-4px);
}

.contact-whatsapp-icon {
    width: 54px;
    height: 54px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #25D366;
    color: #ffffff;

    border-radius: 50%;

    font-size: 24px;
}

.contact-whatsapp-card h4 {
    margin: 0 0 4px;
    color: #ffffff;
    font-family: "Righteous", sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.contact-whatsapp-card p {
    margin: 0;
    color: rgba(255, 255, 255, .65);
    font-size: 12px;
}

.contact-whatsapp-arrow {
    margin-left: auto;
    color: #ffffff;
    font-size: 14px;
    flex-shrink: 0;
}


@media (max-width: 991px) {

    .odyssey-contact-info {
        padding: 80px 0 30px;
    }

    .odyssey-contact-form-section {
        padding: 30px 0 85px;
    }

    .contact-form-card {
        padding: 35px 28px;
        margin-bottom: 10px;
    }

    .contact-form-card h2 {
        font-size: 36px;
    }

}


@media (max-width: 767px) {

    .contact-info-card {
        padding: 30px 22px;
    }

    .contact-form-card {
        padding: 28px 22px;
    }

    .contact-form-card h2 {
        font-size: 32px;
    }

    .contact-map-wrap {
        height: 280px;
    }

}


@media (max-width: 480px) {

    .contact-form-card h2 {
        font-size: 28px;
    }

    .contact-whatsapp-card {
        padding: 18px;
        gap: 14px;
    }

    .contact-whatsapp-icon {
        width: 46px;
        height: 46px;
        font-size: 20px;
    }

}

/* CONTACT PAGE end */