/********** Template CSS **********/
@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@400;600;700&display=swap');

:root {
    --primary: #a359a0;
    --secondary: #414141;
    --light: #fff;
    --dark: #414141;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}



/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: 'Lora';
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn.btn-primary {
    background: linear-gradient(45deg,#414141, #a359a0, #414141);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn.btn-primary:hover {
    background: linear-gradient(45deg,#a359a0, #414141, #a359a0);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn.btn-secondary {
    background: linear-gradient(45deg, #414141, #006B9F);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn.btn-secondary:hover {
    background: linear-gradient(45deg, #006B9F, #414141);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-square {
    width: 38px;
    height: 38px;
    border-radius: 5px;
    background: linear-gradient(45deg, #a359a0, #10325A);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    padding: 0;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
    border-radius: 5px;
    /* background: linear-gradient(45deg, #a359a0, #10325A); */
    background-color: #a359a0;
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    padding: 0;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
    border-radius: 5px;
    background: linear-gradient(45deg, #a359a0, #10325A);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    padding: 0;
}

.btn-square:hover,
.btn-sm-square:hover,
.btn-lg-square:hover {
    background: white;
    transform: translateY(-3px);
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); */
    box-shadow: linear-gradient(45deg, #a359a0, #10325A);
}


/*** Navbar ***/
/* Navbar Links */
.navbar-light .navbar-nav .nav-link {
    font-family: 'Lora';
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: #000 !important;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .3s ease-in-out;

}

/* Sticky Navbar Links */
.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: #333333 !important;

    /* Adjust color for sticky state */

}

/* Hover and Active Link Effects */
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #a359a0 !important;
    /* Primary color on hover and active */

}

/* Navbar Brand Logo Transition */
.navbar-light .navbar-brand img {
    max-height: 90px;
    /* Adjust logo max height */
    transition: .3s ease-in-out;

}

/* Sticky Navbar Brand Logo Transition */
.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
    /* Adjust logo max height for sticky state */

}

/* Responsive Navbar */
@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        /* Adjust position for sticky state */
        background: #FFFFFF;
        /* Background color for mobile */

    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        /* Margin top for collapsed menu */
        border-top: 1px solid #DDDDDD;
        /* Border color for collapsed menu */

    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        /* Adjust padding for mobile */
        margin-right: 0;
        /* Remove right margin for mobile */
        color: #333333 !important;
        /* Adjust color for mobile */

    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
        /* Adjust logo max height for mobile */
    }
}

/* Desktop Navbar */
/* Desktop Navbar */
@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        /* Navbar position */
        width: 100%;
        /* Full width */
        top: 0;
        /* Top position */
        left: 0;
        /* Left position */
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        /* Border color */
        z-index: 999;
        /* Z-index for stacking */

    }

    /* Sticky Navbar Styling */
    .sticky-top.navbar-light {
        position: fixed;
        /* Fixed position for sticky */
        background: #FFFFFF;
        /* Background color for sticky */
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        /* Shadow for sticky navbar */

    }

    /* Navbar Link Underline Animation */
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: #a359a0;
        /* Primary color */
        transition: .3s ease-in-out;

    }

    /* Hover and Active Link Underline Animation */
    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;

    }

    /* Contact Link Underline Removal */
    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;

    }
}


/*** Hero Header ***/


@keyframes fadeIn {
    from {
        opacity: 0.5;
    }

    to {
        opacity: 1;
    }
}

.hero-header {

    /*background: linear-gradient(rgba(109, 107, 107, 0), rgba(163, 159, 159, 0)), url(../img/banner.png);*/
    background:url(../img/OctoonTravelBanner.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 800px;
    opacity: 0.5;
    /* Initial opacity */
    transition: opacity 1.5s ease-in-out;
    
    


    /* transform-origin: top; */
    animation: hero-header;
    animation-timeline: view();
    animation-range: exit;



}

@keyframes fade-out {
    to {
        opacity: 0;
    }

}

@keyframes hero-header {
    25% {
        opacity: 1;
    }

    85%,
    100% {
        opacity: 0;
        scale: 0.8;
    }
}


/* For small screens (mobile devices) */
@media (max-width: 600px) {
    .hero-header {
        height: 400px;
        /* Adjust height for smaller screens */
    }
}

/* For medium screens (tablets) */
@media (min-width: 601px) and (max-width: 1024px) {
    .hero-header {
        height: 600px;
        /* Adjust height for medium screens */
    }
}

/* For large screens (desktops) */
@media (min-width: 1025px) {
    .hero-header {
        height: 800px;
        /* Original height for large screens */
    }
}

.hero-header.loaded {
    opacity: 1;
    /* Final opacity */
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/* For medium screens (tablets) */
@media (min-width: 601px) and (max-width: 1024px) {
    .hero-header {
        height: 600px;
        /* Adjust height for medium screens */
    }
}

/* For large screens (desktops) */
@media (min-width: 1025px) {
    .hero-header {
        height: 800px;
        /* Original height for large screens */
    }
}

.hero-header.loaded {
    opacity: 1;
    /* Final opacity */
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}

/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    font-size: 28px;
    /* Increase font size for impact */
    color: #333333;
    /* Default text color */
    transition: color 0.3s ease-in-out;
    /* Smooth color transition */
    margin-bottom: 20px;
    /* Add spacing for better separation */
}

.section-title::before,
.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 40px);
    height: 4px;
    /* Thicker underline */
    background: linear-gradient(45deg, #a359a0, #414141);
    /* Gradient color */
    z-index: -1;
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out, background 0.3s ease-in-out;
    /* Smooth transition */
}

.section-title::before {
    top: 100%;
    left: -20px;
    /* Slightly adjust position */
}

.section-title::after {
    bottom: -4px;
    /* Position at the bottom */
    left: -20px;
    /* Slightly adjust position */
}

.section-title.text-start::before {
    width: calc(100% + 20px);
    /* Adjust width */
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 20px);
    /* Adjust width */
    left: 0;
}

.section-title:hover {
    color: #a359a0;
    /* Change text color on hover */
}

.section-title:hover::before,
.section-title:hover::after {
    width: calc(100% + 60px);
    /* Expand underline on hover */
    background: linear-gradient(45deg, #414141, #a359a0);
    /* Gradient color on hover */
    left: -30px;
    /* Adjust position on hover */
}


/*** Service ***/
.service-card {
    perspective: 1000px;
}

.service-card-front,
.service-card-back {
    width: 100%;
    backface-visibility: hidden;
    transition: transform 0.6s;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0.5rem;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-card-front {
    background: #fff;
    z-index: 2;
}

.service-card-back {
    background: #0094D9;
    color: #fff;
    transform: rotateY(180deg);
    z-index: 1;
}

.service-item:hover .service-card-front {
    transform: rotateY(180deg);
}

.service-item:hover .service-card-back {
    transform: rotateY(0);
}

.service-item {
    position: relative;
    height: 353px;
    transform-style: preserve-3d;
}

.service-item .btn {
    margin-top: 20px;
    border-radius: 20px;
}



/*** Destination ***/
.destination .section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: bold;
    padding: 10px 20px;
    margin-bottom: 30px;
    background: linear-gradient(to right, #a359a0, #414141);
    color: #FFFFFF;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.destination .section-title::before {
    content: "";
    position: absolute;
    width: calc(100% + 40px);
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(to right, #a359a0, #414141);
}

.destination .section-title.bg-white {
    background: #FFFFFF;
    color: #a359a0;
    box-shadow: none;
}

.destination a {
    position: relative;
    display: block;
    overflow: hidden;
    transition: transform 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.destination a:hover {
    transform: translateY(-5px);
}

.destination a:hover img {
    transform: scale(1.1);
}
 .img-fluid {
        transition: opacity 0.5s ease-in-out;
    }

.destination .bg-white {
    background-color: #FFFFFF;
    padding: 8px 12px;
    border-radius: 4px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.destination .text-primary {
    color: #a359a0;
}

.destination .text-danger {
    color: #FF0000;
}

@media (max-width: 991.98px) {
    .destination .col-lg-7 {
        order: 2;
    }

    .destination .col-lg-5 {
        order: 1;
    }
}

/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item .btn {
    background: #FFFFFF;
    color: var(--primary);
    border-radius: 20px;
    border-bottom: 1px solid var(--primary);
}

.team-item .btn:hover {
    background: var(--primary);
    color: #FFFFFF;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {

    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {

    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Lora";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.footer-contact {
    transition: letter-spacing 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
}

.footer-contact:hover {
    letter-spacing: 0.5px;
    box-shadow: none;
}



/* process */
/* Container and section title styles */
.process-section {
    background-color: #fff;
    padding: 5rem 0;
}

.process-section .section-title {
    position: relative;
    display: inline-block;
    font-size: 1.5rem;
    font-weight: bold;
    background-color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
}

.process-section .section-title::after {
    content: '';
    display: block;
    width: 50%;
    height: 4px;
    background: linear-gradient(to right, #a359a0, #414141);
    margin: 0.5rem auto 0;
    transition: width 0.4s, background-position 0.4s;
}

.process-section .section-title:hover::after {
    width: 100%;
    background-size: 200% 100%;
    background-position: right;
}

.process-section h1 {
    color: #414141;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: bold;
}

/* Card container styles with hover effect */
.process-section .position-relative {
    background-color: #fff;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    border-color: #414141;
}

.process-section .position-relative:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Primary background color */
.process-section .bg-primary {
    background-color: #414141 !important;
}

.process-section i {
    color: #fff;
}

/* Card heading styles */
.process-section h5 {
    color: #a359a0;
    margin-top: 3rem;
    font-size: 1.25rem;
    font-weight: bold;
}

/* Horizontal rule styles */
.process-section hr.w-25,
.process-section hr.w-50 {
    border: none;
    height: 2px;
}

.process-section hr.w-25 {
    width: 25%;
    background-color: #414141 !important;
}

.process-section hr.w-50 {
    width: 50%;
    background-color: #414141 !important;
}

/* Paragraph styles */
.process-section p {
    color: #666;
    font-size: 1rem;
}

/* Circle background with hover effect */
.process-section .rounded-circle {
    transition: transform 0.3s, box-shadow 0.3s;
}

.process-section .rounded-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive styles */
@media (max-width: 768px) {
    .process-section .text-center.pt-4 {
        margin-bottom: 2rem;
    }
}



/* booking2 */

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    /* background-color: #f8f9fa; */
    margin: 0;
    padding: 0;
}

.container-xxl {
    padding: 50px 0;
}

/* Section Title */
.section-title {
    background-color: #fff;
    color: #414141;
    display: inline-block;
    padding: 5px 15px;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    
}

.section-title.bg-white {
    background-color: #fff;
}

h1 {
    color: #a359a0;
    font-size: 36px;
    margin-bottom: 40px;
}

/* Map */
iframe {
    border: 3px solid #a359a0;
    border-radius: 10px;
}

/* Form */
.form-floating {
    margin-bottom: 15px;
    
}

.form-floating label {
    color: #a359a0;
    
}

.form-control, .form-select  {
    border: 2px solid #a4d6ed;
    border-radius: 15px;
    padding: 20px;
    font-size: 14px;
    color: #333;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */   
}
.form-control:hover, .form-select:hover{
    border-color: #a359a0;
    box-shadow: 0 6px 14px rgba(2, 2, 2, 0.2);
}


.form-control::placeholder, .form-select::placeholder {
    color: #999;
}

.form-control:focus, .form-select:focus{
    border-color: #a359a0;
    box-shadow: none;
    border-color: #a359a0;
    box-shadow: 0 0 10px rgba(27, 70, 143, 0.25);
}

textarea.form-control {
    resize: none;
}

/* Button */
.btn-primary {
    background-color: #a359a0;
    border-color: #a359a0;
    transition: background-color 0.3s, border-color 0.3s;
}

.btn-primary:hover, .btn-primary:focus {
    background-color: #414141;
    border-color: #414141;
    
}

.btn-primary.w-100 {
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
}

/* WOW.js Animation */
.wow {
    visibility: hidden;
}

.wow.fadeInUp {
    animation-name: fadeInUp;
}

[data-wow-delay="0.1s"] {
    animation-delay: 0.1s;
}

[data-wow-delay="0.3s"] {
    animation-delay: 0.3s;
}

[data-wow-delay="0.5s"] {
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    from {
        transform: translate3d(0, 40px, 0);
        opacity: 0;
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .container-xxl {
        padding: 30px 20px;
    }

    h1 {
        font-size: 28px;
    }

    .form-control, .form-select {
        padding: 15px;
        font-size: 13px;
    }

    .btn-primary.w-100 {
        padding: 12px;
        font-size: 14px;
    }
}

/* Enhanced Dropdowns */

.form-select {
    position: relative;
    border: 2px solid #a4d6ed;
    border-radius: 15px;
    padding: 15px 40px 15px 15px;
    font-size: 16px;
    color: #333;
    background-color: #fff;
    background-image: linear-gradient(45deg, #a359a0 50%, transparent 50%), linear-gradient(135deg, transparent 50%, #a359a0 50%), linear-gradient(to right, #ccc, #ccc);
    background-position: calc(100% - 15px) calc(1em + 8px), calc(100% - 10px) calc(1em + 8px), calc(100% - 2.5em) 0.5em;
    background-size: 5px 5px, 5px 5px, 1px 1.5em;
    background-repeat: no-repeat;
    transition: border-color 0.3s, box-shadow 0.3s;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-select:hover {
    border-color: #a359a0;
    box-shadow: 0 0 10px rgba(27, 70, 143, 0.25);
}

.form-select:focus {
    border-color: #a359a0;
    box-shadow: 0 0 15px rgba(27, 70, 143, 0.5);
}

/* Enhanced Dropdown Arrow */
.form-select::after {
     content: '\25BC'; /*Down arrow character */
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    pointer-events: none;
    color: #a359a0;
    font-size: 14px;
}

/* For consistent appearance across browsers */
select::-ms-expand {
    display: none;
}

/* Enhancing placeholder color */
.form-select::placeholder {
    color: #999;
}

/* Additional enhancements for smooth interactions */
.form-select:focus-visible {
    outline: none;
    border-color: #a359a0;
}

/* Styling options when open */
.form-select[open] {
    background-color: #f0f8ff;
    border-color: #a359a0;
}



#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f3f3f3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.loader {
    position: relative;
    width: 150px;
    height: 150px;
}

.loader .circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 5px solid transparent;
    border-top-color: #a359a0;
    animation: spin 1.5s linear infinite;
}

.loader .circle:nth-child(2) {
    border-top-color: #414141;
    animation-delay: 0.3s;
}

.loader .circle:nth-child(3) {
    border-top-color: #a359a0;
    animation-delay: 0.6s;
}

.loader .circle:nth-child(4) {
    border-top-color: #414141;
    animation-delay: 0.9s;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.text {
    margin-top: 20px;
    font-size: 20px;
    font-weight: bold;
    color: #a359a0;
}

.content {
    display: none;
    text-align: center;
}