:root {
    /* Color Palette */
    --navy: #0a1d37;
    --khaki: #c5a059;
    --khaki-light: #d4b886;
    --sky-blue: #00aeef;
    --beige: #f9f7f2;
    --white: #ffffff;
    --dark: #111111;
    --text-main: #333333;
    --text-muted: #666666;

    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

html,
body{
    overflow-x:hidden;
}

/* Utility Classes */
.text-khaki {
    color: var(--khaki) !important;
}

.text-sky-blue {
    color: var(--sky-blue) !important;
}

.text-navy {
    color: var(--navy) !important;
}

.bg-beige {
    background-color: var(--beige) !important;
}

.bg-navy {
    background-color: var(--navy) !important;
}

.bg-services-premium {
    background-image: url('../images/services/bgg-1.webp');
    background-size: cover;
    background-position: center;
    /* background-attachment: fixed; */
    position: relative;
    color: var(--white);
}

.bg-services-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgb(0 0 0 / 86%) 0%, rgb(0 0 0 / 84%) 100%);
    z-index: 0;
}

.bg-services-premium .container {
    position: relative;
    z-index: 1;
}

.ls-1 {
    letter-spacing: 1px;
}

.ls-2 {
    letter-spacing: 2px;
}

.ls-3 {
    letter-spacing: 3px;
}

.ls-5 {
    letter-spacing: 5px;
}

.fw-600 {
    font-weight: 600;
}

.italic {
    font-style: italic;
}

.section-title-sm {
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    color: var(--khaki);
}

.footer-title {
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--khaki);
}

.footer-logo {
      width: auto;
    height: 80px;
max-width: 260px;

    padding: 3px;
    filter: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
}

.footer-contact i {
    color: var(--khaki);
    width: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--navy);
}

p {
    font-size: 1.1rem;
}

@media screen and (max-width:767px) {
    p {
        /* allow inheritance */
    }
}

/* Utilities */
.section {
    padding: var(--section-padding);
}

.text-gradient {
    background: linear-gradient(45deg, var(--navy), var(--khaki));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    width: auto;
    height: 80px;
    max-width: 260px;
    object-fit: contain;
    border-radius: 50% !important;
    background-color: var(--white);
    padding: 3px;
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.8;
    }
}

/* Navbar */
#mainNav {
    transition: var(--transition);
    padding: 20px 0;
    background: transparent;
}

#mainNav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

#mainNav.scrolled .navbar-brand img {
     width: auto;
    height: 80px;
    /* filter: none; */
}

#mainNav .navbar-toggler{
    margin-right: 15px;
}

@media (max-width:991.98px){
    #mainNav .navbar-toggler{
        margin-right: 15px;
    }
}


iframe {
    cursor: pointer;
    pointer-events: all;
}

.navbar-brand img {
    width: auto;
    height: 80px;
max-width: 260px;     /* Prevent logo from becoming too wide */
    object-fit: contain;

    border-radius: 0;
    background: transparent;
    padding: 0;
    box-shadow: none;

    transition: var(--transition);
    display: block;
}
.navbar-toggler {
    color: var(--white);
    font-size: 1.5rem;
}

#mainNav.scrolled .navbar-toggler {
    color: var(--navy);
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white) !important;
    margin: 0 15px;
    transition: var(--transition);
}

#mainNav.scrolled .nav-link {
    color: var(--navy) !important;
}

.nav-link:hover {
    color: var(--sky-blue) !important;
}

/* Buttons */
.btn-premium {
    /* background: var(--white); */
    color: var(--white);
    padding: 15px 35px;
    border-radius: 0;
    font-weight: 500;
    text-transform: none;
    font-size: 0.95rem;
    border: 1px solid rgb(255, 255, 255);
    transition: var(--transition);
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.05);
}

.btn-premium:hover {
    background: var(--white);
    color: #000;
    border-color: #000;
    transform: translateY(-2px);
    /* box-shadow: 0 8px 25px rgba(0, 174, 239, 0.2); */
}

/* Dark version of the premium button for light backgrounds */
#about .btn-premium {
    color: var(--navy);
    border-color: var(--navy);
}

#about .btn-premium:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.btn-nav-premium {
    background: transparent;
    color: var(--white) !important;
    padding: 8px 22px;
    border: 1px solid var(--white);
    border-radius: 0;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: var(--transition);
    display: inline-block;
    text-decoration: none;
}

#mainNav.scrolled .btn-nav-premium {
    color: var(--navy) !important;
    border-color: var(--navy) !important;
}

@media (max-width: 991px) {
    #mainNav .btn-nav-premium {
        color: var(--navy) !important;
        border-color: var(--navy) !important;
    }
}

.btn-nav-premium:hover {
    background: var(--white);
    color: var(--navy) !important;
    border-color: var(--white);
    transform: translateY(-2px);
}

#mainNav.scrolled .btn-nav-premium:hover {
    background: var(--navy);
    color: var(--white) !important;
    border-color: var(--navy);
}

@media (max-width: 991px) {
    #mainNav .btn-nav-premium:hover {
        background: var(--navy);
        color: var(--white) !important;
        border-color: var(--navy);
    }
}

/* Specific styling for hero button if needed to be more prominent */
.hero .btn-premium {
    padding: 18px 45px;
    font-size: 1.05rem;
}

.btn-dark-premium {
    background: var(--navy);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 0;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border: 1px solid var(--navy);
    transition: var(--transition);
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-dark-premium:hover {
    background: var(--sky-blue);
    color: var(--white) !important;
    border-color: var(--sky-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 174, 239, 0.2);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--white);
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    /* Added to clip the oversized player */
}

#player {
    position: absolute;
    /* Added for top/left positioning */
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Ensure the iframe itself is styled when injected */
#player iframe {
    width: 100%;
    height: 100%;
    pointer-events: none;
}

@media (min-aspect-ratio: 16/9) {
    #player {
        width: 100vw;
        height: 56.25vw;
        /* 100 * 9 / 16 */
        min-height: 100vh;
        min-width: 177.77vh;
        /* 100 * 16 / 9 */
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

@media (max-aspect-ratio: 16/9) {
    #player {
        width: 177.77vh;
        /* 100 * 16 / 9 */
        height: 100vh;
        min-width: 100vw;
        min-height: 56.25vw;
        /* 100 * 9 / 16 */
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

.video-control-btn {
    background: transparent;
    border: 2px solid var(--khaki);
    color: var(--khaki);
    width: 60px;
    height: 60px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    margin: 0 auto;
}

.video-control-btn:hover {
    background: var(--khaki);
    color: var(--white);
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 29, 55, 0.4);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 4.5rem;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.1;
}

/* Destinations */
.destination-card {
    position: relative;
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateZ(0);
    /* Hardware acceleration */
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.destination-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.destination-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 29, 55, 0.95) 0%, rgba(10, 29, 55, 0.2) 60%, transparent 100%);
    opacity: 0.8;
    z-index: 1;
    transition: opacity 0.5s ease;
}

.destination-card:hover::before {
    opacity: 1;
    background: linear-gradient(to top, rgba(10, 29, 55, 0.98) 0%, rgba(10, 29, 55, 0.4) 60%, transparent 100%);
}

.destination-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    z-index: 0;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.destination-card:hover img {
    transform: scale(1.15) rotate(1deg);
}

.destination-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.destination-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.destination-info p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8) !important;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    transition-delay: 0.1s;
    margin-bottom: 25px;
    line-height: 1.5;
}

.destination-card:hover .destination-info h4,
.destination-card:hover .destination-info p {
    transform: translateY(0);
    opacity: 1;
}

.destination-info .btn-service {
    align-self: flex-start;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    border-radius: 50px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    transition-delay: 0.2s;
    text-decoration: none;
}

.destination-card:hover .destination-info .btn-service {
    opacity: 1;
    transform: translateY(0);
}

.destination-info .btn-service:hover {
    background: var(--khaki);
    border-color: var(--khaki);
    color: var(--white) !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px) scale(1.05);
    transition-delay: 0s;
    /* reset delay on hover */
}

/* Blog */
.blog-card {
    border: none;
    background: transparent;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-img-wrapper {
    height: 250px;
    overflow: hidden;
    margin-bottom: 20px;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.1);
}

/* Testimonials */
.testimonial-avatar-wrap {
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 88px;
    height: 88px;
    display: block;
    object-fit: cover;
    background-color: #f4efe4;
    border: 3px solid rgba(197, 160, 89, 0.45);
    box-shadow: 0 6px 16px rgba(10, 29, 55, 0.08);
    border-radius: 50% !important;
}

/* Contact Section */
.contact-form-wrapper {
    background: var(--beige);
    padding: 50px;
    border-radius: 0;
}

.form-control {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--khaki);
    border-radius: 0;
    padding: 15px 0;
    margin-bottom: 20px;
    color: var(--navy);
}

.form-control:focus {
    background: transparent;
    box-shadow: none;
    border-color: var(--navy);
}

/* Footer */
footer {
    background: var(--navy);
    color: var(--white);
}

footer p.pe-lg-5 {
    text-align: left;
}

/* Ensure bottom bar text inherits column alignment (like text-md-end) */
footer .col-md-6 p {
    text-align: inherit;
}

footer a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

footer a:hover {
    color: var(--khaki);
    padding-left: 5px;
}

footer .list-unstyled a i {
    font-size: 0.7rem;
    color: var(--khaki);
    transition: var(--transition);
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    transition:
        transform .35s ease,
        background-color .35s ease,
        border-color .35s ease,
        color .35s ease;

        will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
    
}

.social-icons a:hover {
    background: var(--khaki);
    color: var(--white) !important;
    transform: translateY(-5px);
    border-color: var(--khaki);
}

.social-icons a i {
       display:block;
    font-size: 1rem;
       transition: color .35s ease;
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.float-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    color: var(--white);
}

.float-whatsapp {
    background: #25D366;
}

.float-call {
    background: var(--navy);
}

.float-feedback {
    background: var(--khaki);
}

.float-top {
    background: var(--white);
    color: var(--navy);
    font-size: 1.1rem;
    visibility: hidden;
    opacity: 0;
    transform: scale(0.8);
}

.float-top.active {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}

/* Keep the back-to-top button's visibility scale when it receives the shared hover lift. */
.float-top.active:hover {
    transform: scale(1) translateY(-5px);
}

@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section {
        padding: 60px 0;
    }

    h2 {
        font-size: 2.2rem !important;
    }

    .contact-form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 991px) {
    #mainNav {
        background: transparent !important;
        padding: 20px 0;
        box-shadow: none;
    }

    #mainNav.scrolled {
        background: var(--white) !important;
        padding: 10px 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

   .navbar-brand img {
        width: auto;
        height: 80px;
    }

    .navbar-collapse {
        background: var(--white);
        margin-top: 15px;
        padding: 20px;
        /* border-radius: 8px; */
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .navbar-toggler {
        color: var(--white) !important;
        border: 1px solid var(--white) !important;
        padding: 4px 8px;
        background: rgba(0, 0, 0, 0.2);
    }

    #mainNav.scrolled .navbar-toggler {
        color: var(--navy) !important;
        border: 1px solid var(--navy) !important;
        background: transparent;
    }

    .nav-link {
        color: var(--navy) !important;
        padding: 12px 0 !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        margin: 0 !important;
        text-align: left;
    }

    .navbar-nav {
        align-items: flex-start !important;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .btn-nav-premium {
        width: 100%;
        margin-top: 15px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .floating-actions {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .float-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

/* Breadcrumb Section */
.breadcrumb-section {
    width: 100%;
    aspect-ratio: 1920 / 600;
    /* Maintains the exact shape of your 1920x600 image */
    background-image: url('../images/subpage/subpage.webp');
    background-size: 100% auto;
    /* Fits the full width of the image to the screen */
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* Creates the parallax effect */
    position: relative;
    color: var(--white);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.breadcrumb-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 29, 55, 0.8), rgba(10, 29, 55, 0.5));
    z-index: 1;
}

.breadcrumb-section .container {
    position: relative;
    z-index: 2;
}

.breadcrumb-section h1 {
    font-size: 4rem;
    font-family: var(--font-heading);
    margin-bottom: 20px;
    color: var(--white) !important;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.breadcrumb-section .breadcrumb {
    justify-content: center;
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-section .breadcrumb-item {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
}

.breadcrumb-section .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-section .breadcrumb-item a:hover {
    color: var(--khaki);
}

.breadcrumb-section .breadcrumb-item.active {
    color: var(--khaki);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5) !important;
    content: "|" !important;
    padding: 0 15px !important;
}

/* Mission Vision Values Cards */
.mvv-card {
    background: var(--white);
    padding: 50px 40px;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--khaki);
}

.mvv-icon {
    font-size: 3rem;
    color: var(--khaki);
    margin-bottom: 25px;
}

.mvv-card h4 {
    margin-bottom: 20px;
    font-family: var(--font-cormorant);
    font-weight: 700;
}

.about-detailed-text p {
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 25px;
}

.about-image-wrapper {
    position: relative;
    padding-bottom: 30px;
    padding-right: 30px;
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80%;
    height: 80%;
    border: 10px solid var(--khaki);
    z-index: -1;
}

.about-image-wrapper img {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.reveal-ink{
    will-change: transform, opacity, filter;
    backface-visibility: hidden;
    transform: translateZ(0);
}


/* GSAP SplitText Styles */
.text-pendulum div {
    display: inline-block !important;
    will-change: transform, opacity;
}



/* Background Variants */
.about-hero {
    background-image: url('../images/subpage/subpage.webp');
}

.blog-hero {
    background-image: url('../images/subpage/subpage.webp');
}

.contact-hero {
    background-image: url('../images/subpage/subpage.webp');
}

/* Services Dropdown */
.dropdown-menu {
    background: rgba(255, 255, 255, 0.98);
    border: none;
    border-radius: 0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    padding: 20px;
    min-width: 280px;
    margin-top: 15px !important;
}

.dropdown-item {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px;
    color: var(--navy);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.dropdown-item i {
    width: 20px;
    text-align: center;
    color: var(--khaki);
}

.dropdown-item:hover {
    background: var(--beige);
    color: var(--sky-blue);
    padding-left: 25px;
}

/* Service Cards */
.service-card {
    background: var(--white);
    padding: 40px;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--navy);
    z-index: -1;
    transition: var(--transition);
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--khaki);
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-card h4 {
    margin-bottom: 15px;
    transition: var(--transition);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0;
    transition: var(--transition);
}

.service-card:hover i,
.service-card:hover h4,
.service-card:hover p {
    color: var(--white) !important;
}

/* Why Choose Us */
.why-choose-card {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.why-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--beige);
    color: var(--khaki);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 0;
    transition: var(--transition);
}

.why-choose-card:hover .why-icon {
    background: var(--khaki);
    color: var(--white);
    transform: rotateY(360deg);
}

.why-content h5 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.why-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.btn-service {
    display: inline-block;
    padding: 10px 25px;
    background: transparent;
    border: 1px solid var(--khaki);
    color: var(--khaki);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    transition: var(--transition);
}

.service-card:hover .btn-service {
    background: var(--khaki);
    color: var(--white);
    border-color: var(--khaki);
}

/* Blog Page Styling */
.blog-list-item {
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 50px;
}

.blog-list-item:last-child {
    border-bottom: none;
}

.blog-list-img {
    height: 400px;
    width: 100%;
    object-fit: cover;
    margin-bottom: 25px;
}

/* Sidebar Widgets */
.blog-sidebar {
    padding-left: 30px;
}

.sticky-sidebar {
    position: sticky;
    top: 100px;
    z-index: 10;
}

.sidebar-widget {
    margin-bottom: 40px;
    background: var(--white);
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.widget-title {
    font-size: 1.25rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--khaki);
    display: inline-block;
}

.search-form {
    display: flex;
    gap: 10px;
}

.search-form .form-control {
    margin-bottom: 0;
    padding: 10px 0;
}

.sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-list li {
    margin-bottom: 15px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    padding-bottom: 10px;
}

.sidebar-list li:last-child {
    border-bottom: none;
}

.sidebar-list a {
    color: var(--text-main);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.sidebar-list a:hover {
    color: var(--khaki);
    padding-left: 5px;
}

.recent-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.recent-post-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    flex-shrink: 0;
}

.recent-post-content h6 {
    font-size: 0.95rem;
    margin-bottom: 5px;
    line-height: 1.4;
}

.recent-post-content .date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-link {
    display: inline-block;
    padding: 5px 15px;
    background: var(--beige);
    color: var(--navy);
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition);
}

.tag-link:hover {
    background: var(--khaki);
    color: var(--white);
}

@media (max-width: 991px) {
    .blog-sidebar {
        padding-left: 0;
        margin-top: 50px;
    }

    .sticky-sidebar {
        position: static;
    }
}

/* CTA Section with Background */
.cta-section {
    position: relative;
    padding: 120px 0;
    background-image: url('../images/background/cta-bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 29, 55, 0.9), rgba(10, 29, 55, 0.7));
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--white) !important;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

@media (max-width: 991px) {
    .cta-section h2 {
        font-size: 2.5rem;
    }

    .cta-section {
        padding: 60px 0 30px;
        min-height: 220px;
        background-attachment: scroll;
        background-size: cover;
    }

    .breadcrumb-section {
        aspect-ratio: 1920 / 600;
        /* Keep the plane shape on mobile */
        min-height: auto;
        padding: 0;
        background-size: 100% 100%;
        background-attachment: scroll;
    }

    .breadcrumb-section h1 {
        font-size: 1.5rem;
        /* Shrunk text to fit the shorter mobile height */
        letter-spacing: 1px;
        margin-bottom: 5px;
    }

    .breadcrumb {
        font-size: 0.7rem;
    }
}

/* Modal Styles */
.modal-content {
    border: none;
    border-radius: 0;
    background-color: var(--white);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.modal-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-logo {
    height: 60px;
    width: auto;
}

.modal-title {
    font-family: var(--font-heading);
    color: var(--navy);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-title i {
    font-size: 1.1rem;
}

.modal-body {
    padding: 2rem;
}

.modal-description {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.modal-footer {
    border-top: none;
    padding: 0 2rem 2rem;
}

.modal .form-control {
    border-radius: 0;
    padding: 0.8rem 1rem;
    border: 1px solid #e0e0e0;
    background-color: #fcfcfc;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.modal .form-control:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 0.2rem rgba(0, 45, 114, 0.1);
}

.btn-modal-submit {
    width: 100%;
    background-color: var(--navy);
    color: var(--white);
    padding: 1rem;
    border-radius: 0;
    border: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-modal-submit:hover {
    background-color: #001f4d;
    transform: translateY(-2px);
}

.btn-close-custom {
    background: transparent;
    border: none;
    color: #333;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
}

@media (max-width: 768px) {
    .modal-dialog {
        margin: 1rem;
    }

    .modal-title {
        font-size: 1.1rem;
    }
}

/* Fixed Feedback Side Tab */
.fixed-feedback-tab {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1050;
}

.fixed-feedback-btn {
    display: block;
    background: var(--navy);
    color: var(--white);
    text-decoration: none !important;
    padding: 18px 12px;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    border-right: 2px solid var(--khaki);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    box-shadow: 3px 0 15px rgba(0, 0, 0, 0.1);
}

.fixed-feedback-btn:hover {
    background: var(--khaki);
    color: var(--navy);
}

@media (max-width: 768px) {
    .fixed-feedback-btn {
        padding: 12px 8px;
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
}

/* Feedback Form Page Styles */
.feedback-container {
    max-width: 900px;
    margin: 0 auto;
}

.feedback-card {
    background: var(--white);
    padding: 50px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    box-shadow: 0 15px 40px rgba(10, 29, 55, 0.05);
}

.feedback-card .form-control {
    background: #fdfcf9;
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 15px 20px;
    margin-bottom: 0;
    font-size: 0.95rem;
    transition: var(--transition);
}

.feedback-card .form-control:focus {
    background: var(--white);
    border-color: var(--navy);
    box-shadow: 0 4px 12px rgba(10, 29, 55, 0.05);
}

.btn-submit-feedback {
    background: var(--navy);
    color: var(--white);
    padding: 15px 50px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border: none;
    transition: var(--transition);
    cursor: pointer;
}

.btn-submit-feedback:hover {
    background: var(--khaki);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.2);
}

@media (max-width: 768px) {
    .feedback-card {
        padding: 30px 20px;
    }
}

/* Global reset: remove border-radius site-wide */
html,
body,
*,
*::before,
*::after {
    border-radius: 0 !important;
}

.modal-logo {
    width: 96px;
    height: 96px;
    object-fit: contain;
    border-radius: 50% !important;
    background-color: var(--white);
    padding: 3px;
    display: block;
    margin: 0 auto 15px auto;
}
/* Swiper Showcase Styles */
.showcase-swiper {
    padding-top: 30px;
    padding-bottom: 50px;
}
.showcase-swiper .swiper-slide {
    width: 300px;
    height: 400px;
}
