/********** Template CSS **********/
:root {
    --primary: #009CFF;
    --secondary: #777777;
    --light: #F8F8F8;
    --dark: #252525;
    --font-family: 'Calibri', sans-serif;
    --base-font-size: 18px; /* Base font size for the body */
    --navbar-font-size: 18px; /* Font size for navbar links */
    --heading-font-size: 24px; /* Font size for headings */
    --paragraph-font-size: 18px; /* Font size for paragraphs */
}

/* Apply Calibri globally */
body {
    font-family: var(--font-family);
    font-size: var(--base-font-size); /* Base font size */
    line-height: 1.6;
}
a.mb-2 {
    color: inherit; /* Inherit the color from the parent element */
    text-decoration: none; /* Remove underline */
}

a.mb-2:hover {
    color: inherit; /* Keep the same color on hover */
    text-decoration: none; /* Prevent underline on hover */
}


.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}
.image-overlay-container {
    position: relative; /* Enables positioning for overlayed elements */
    display: inline-block; /* Ensures the container wraps around its content */
    width: 100%; /* Makes the container fill the parent width */
    height: auto; /* Keeps the aspect ratio of the images */
}

.background-img {
    display: block; /* Ensures the background image is visible */
    width: 100%; /* Makes the background image responsive */
    height: auto; /* Maintains aspect ratio */
}

.overlay-img {
    position: absolute; /* Places the overlay on top of the background */
    top: 40%; /* Vertically center */
    left: 50%; /* Horizontally center */
    transform: translate(-50%, -50%); /* Corrects centering offset */
    width: 75%; /* Adjust the size of the overlay image */
    height: auto; /* Maintains aspect ratio */
    opacity: 1.5; /* Makes the overlay transparent */
    pointer-events: none; /* Prevents interaction with the overlay */
}

.overlay1-img {
    position: absolute; /* Places the overlay on top of the background */
    top: 50%; /* Vertically center */
    left: 50%; /* Horizontally center */
    transform: translate(-50%, -50%); /* Corrects centering offset */
    width: 20%; /* Reduce the size of the overlay image */
    height: auto; /* Maintains aspect ratio */
    opacity: 1; /* Adjust opacity (1 is fully opaque; remove "1.5" as it's invalid) */
    pointer-events: none; /* Prevents interaction with the overlay */
}

h1 {
    text-align: center;
    color: #333;
}
.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f4f4f4;
    border: none;
    padding: 15px;
    width: 100%;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    text-align: left;
}

.accordion-icon {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.accordion-item .accordion-content {
    display: none;
    padding: 15px;
    background-color: #ffffff;
    border-top: 1px solid #ddd;
}

.accordion-item.active .accordion-content {
    display: block;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg); /* Rotate the icon */
}

.accordion-container {
    max-width: 1000px;
    margin: 20px auto;
}

.accordion-item {
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    background-color: #fff;
}

.accordion-header {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    text-align: left;
    cursor: pointer;
    border: none;
    outline: none;
    background-color: #007BFF;
    color: #fff;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: #0056b3;
}

.accordion-content {
    display: none; /* Hidden by default */
    padding: 10px;
    background-color: #f9f9f9;
    margin-top: 5px;
}

.accordion-content.open {
    max-height: 1000px; /* Adjust based on your content */
    padding: 15px;
}

.scrollable-container {
    max-height: 500px; /* Adjust height as needed */
    overflow-y: auto; /* Enable vertical scrolling */
    padding-right: 10px; /* Optional: Add padding for a better look */
    scrollbar-width: thin; /* For modern browsers: make the scrollbar thinner */
    scrollbar-color: #aaa #f4f4f4; /* Optional: Customize scrollbar colors */
}

/* Optional: Customize scrollbar for Webkit-based browsers (Chrome, Edge, Safari) */
.scrollable-container::-webkit-scrollbar {
    width: 8px; /* Adjust scrollbar width */
}

.scrollable-container::-webkit-scrollbar-thumb {
    background-color: #aaa; /* Scrollbar thumb color */
    border-radius: 4px; /* Rounded edges for thumb */
}

.scrollable-container::-webkit-scrollbar-track {
    background-color: #f4f4f4; /* Scrollbar track color */
}



.mirrored-icon {
    transform: scaleX(-1);
    display: inline-block;
}

    .project-item {
        height: 350px; /* Adjust to your desired height */
        width: 100%; /* Optional for equal width if needed */
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        text-align: center;
        box-sizing: border-box;
    }

    .project-item img {
        height: 200px; /* Adjust to fit within the container */
        width: 100%;
        object-fit: contain; /* Ensures the image fits without distortion */
        margin-bottom: 10px; /* Space between image and text */
    }

    .project-item h6 {
        margin-top: auto; /* Push the heading to the bottom */
    }

    .service-item {
    width: 150px; /* Set a fixed width */
    height: 200px; /* Set a fixed height */
    display: flex; /* Align items inside the container */
    flex-direction: column; /* Arrange items vertically */
    align-items: center; /* Center items horizontally */
    justify-content: center; /* Center items vertically */
    overflow: hidden; /* Prevent overflow issues */
    background-color: #fff; /* Optional: Set a background color */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Optional: Add a shadow for styling */
}

.service-item img {
    width: 100%; /* Ensure the image doesn't exceed the container's width */
    height: 150px; /* Restrict the image's height */
    object-fit: contain; /* Maintain the image's aspect ratio */
    margin-bottom: 10px; /* Add space between the image and the title */
}

.service-item h4 {
    font-size: 16px; /* Adjust font size for consistency */
    margin-top: auto; /* Push the heading to the bottom */
    text-align: center; /* Center-align the text */
}



   
.video-container {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
        height: 0;
        overflow: hidden;
}

.video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
}


/*** 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-weight: 600;
    transition: .5s;
    font-size: 17px;
    margin: 4px
}

.btn.btn-primary {
    color: #FFFFFF;
}

.read-more-btn {
    color: var(--primary);
    background: none;
    border: none;
    cursor: pointer;
    font-size: var(--paragraph-font-size);
    font-weight: bold;
    text-decoration:solid;
}

.read-more-btn:hover {
    color: var(--dark);
}


.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 20px 0;
    color: #FFFFFF;
    font-weight: 600;
    font-size: var(--navbar-font-size); /* Font size for navbar */
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--dark);
}
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 8px 0;
    }

    .navbar .navbar-nav {
        margin-top: 8px;
        border-top: 1px solid rgba(256, 256, 256, .1)
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
#header-carousel .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    z-index: 1;
    font-size: 18px;
}

#header-carousel .carousel-control-prev,
#header-carousel .carousel-control-next {
    width: 10%;
}

#header-carousel .carousel-control-prev-icon,
#header-carousel .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

#header-carousel .carousel-indicators [data-bs-target] {
    width: 60px;
    height: 60px;
    text-indent: 0;
    margin-bottom: 15px;
    border: 2px solid #FFFFFF;
    border-radius: 60px;
    overflow: hidden;
}

#header-carousel .carousel-indicators [data-bs-target] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--secondary);
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.nav-link.text-black {
    color: black !important;
}

.nav-link.text-black:hover {
    color: #000 !important; /* Ensure hover stays black */
}

input[type="file"].form-control {
    background-color: #fff; /* Set the background color to white */
    color: #000; /* Optional: Ensure text color is visible */
    border: 1px solid #ced4da;
     /* Optional: Set a border to match other inputs */
}



.form-floating>.form-control:focus, .form-floating>.form-control:not(:placeholder-shown) {
    padding-top: 2.625rem;
    padding-bottom: 1.625rem;
}

.form-floating>.form-control:not(:placeholder-shown) {
    padding-top: 2.625rem;
    padding-bottom: 1.625rem;
    background-color: white;
}
/* Ensure the parent container's layout stays stable */
#myhotelina {
    display: flex; /* Prevent layout shift */
    align-items: flex-start; /* Align items to the top */
}
/* Prevent the image section from moving */
#myhotelina .col-lg-6:first-child {
    flex-shrink: 0; /* Prevent resizing of the image column */
}
/* Optional: Smoothly show/hide additional description */
#pms1 {
    display: flex;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}
/* When visible, ensure the description appears smoothly */
#pms1.show {
    display:flex;
    opacity: 1;
}




#iPOS {
    display: flex; /* Prevent layout shift */
    align-items: flex-start; /* Align items to the top */
}
/* Prevent the image section from moving */
#iPOS .col-lg-6:first-child {
    flex-shrink: 0; /* Prevent resizing of the image column */
}
#pms2 {
    display: flex;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}
/* When visible, ensure the description appears smoothly */
#pms2.show {
    display:flex;
    opacity: 1;
}

#iEQP {
    display: flex; /* Prevent layout shift */
    align-items: flex-start; /* Align items to the top */
}
#iEQP .col-lg-6:first-child {
    flex-shrink: 0; /* Allow the text column to expand */
}
#pms3{
    display: flex; /* Default state for the additional content */
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}
#pms3.show {
    display: flex; /* Show the content */
    opacity: 1; /* Smoothly transition in */
}

#Accelad {
    display: flex; /* Prevent layout shift */
    align-items: flex-start; /* Align items to the top */
}
#Accelad .col-lg-6:first-child {
    flex-shrink: 0; /* Allow the text column to expand */
}
#pms4 {
    display: flex; /* Default state for the additional content */
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}
#pms4.show {
    display: flex; /* Show the content */
    opacity: 1; /* Smoothly transition in */
}


#Paymaster {
    display: flex; /* Prevent layout shift */
    align-items: flex-start; /* Align items to the top */
}
#Paymaster .col-lg-6:first-child {
    flex-shrink: 0; /* Allow the text column to expand */
}
#pms5 {
    display: flex; /* Default state for the additional content */
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}
#pms5.show {
    display: flex; /* Show the content */
    opacity: 1; /* Smoothly transition in */
}

#Metron {
    display: flex; /* Prevent layout shift */
    align-items: flex-start; /* Align items to the top */
}
#Metron .col-lg-6:first-child {
    flex-shrink: 0; /* Allow the text column to expand */
}
#pms6 {
    display: flex; /* Default state for the additional content */
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}
#pms6.show {
    display: flex; /* Show the content */
    opacity: 1; /* Smoothly transition in */
}



#Punch {
    display: flex; /* Prevent layout shift */
    align-items: flex-start; /* Align items to the top */
}
#Punch .col-lg-6:first-child {
    flex-shrink: 0; /* Allow the text column to expand */
}
#pms7 {
    display: flex; /* Default state for the additional content */
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}
#pms7.show {
    display: flex; /* Show the content */
    opacity: 1; /* Smoothly transition in */
}


#Timetec {
    display: flex; /* Prevent layout shift */
    align-items: flex-start; /* Align items to the top */
}
#Timetec .col-lg-6:first-child {
    flex-shrink: 0; /* Allow the text column to expand */
}
#pms8 {
    display: flex; /* Default state for the additional content */
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}
#pms8.show {
    display: flex; /* Show the content */
    opacity: 1; /* Smoothly transition in */
}

/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 4px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}



/*** Img Border ***/
.img-border {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.img-border::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 3rem;
    bottom: 3rem;
    border: 5px solid var(--primary);
    border-radius: 6px;
}

.img-border img {
    position: absolute;
    top: 3rem;
    left: 3rem;
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    object-fit: cover;
    border-radius: 6px;
}


/*** Facts ***/
.fact-item {
    transition: .5s;
}

.fact-item:hover {
    margin-top: -10px;
    background: #FFFFFF !important;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border: 1px solid transparent;
    transition: .5s;
}

.service-item:hover {
    margin-top: -10px;
    box-shadow: none;
    border: 1px solid #DEE2E6;
}


/*** Feature ***/
.progress {
    height: 5px;
}

.progress .progress-bar {
    width: 0px;
    transition: 3s;
}


/*** Project ***/
.project-item a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: rgba(0, 0, 0, .5);
    border-radius: 6px;
    opacity: 0;
    transition: .5s;
}

.project-item:hover a {
    opacity: 1;
}

.project-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.project-carousel .owl-dot {
    width: 35px;
    height: 35px;
    margin: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DEE2E6;
    border-radius: 35px;
    transition: .5s;
}

.project-carousel .owl-dot:hover,
.project-carousel .owl-dot.active {
    color: #FFFFFF;
    border-color: var(--primary);
    background: var(--primary);
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item .team-text {
    position: relative;
    height: 65px;
    overflow: hidden;
}

.team-item .team-title {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .5s;
    font-size: 16px
}

.team-item:hover .team-title {
    top: -65px;
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 65px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    transition: .5s;
}

.team-item .team-social .btn {
    margin: 0 3px;
}

.team-item:hover .team-social {
    top: 0;
}

.transparent-background {
    opacity: 0.5;
}

/*** Testimonial ***/

.testimonial-carousel .owl-item .testimonial-item img {
    width: 60px;
    height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
    font-size: 14px;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DEE2E6;
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    border-color: var(--primary);
    background: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--secondary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
    font-size: 15px;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--secondary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    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 .copyright a:hover {
    color: var(--primary);
}

h1, h2, h3, h4, h5, h6 {
    font-size: var(--heading-font-size); /* Font size for headings */
    font-weight: bold;
    line-height: 1.3;
}
p {
    font-size: var(--paragraph-font-size); /* Font size for paragraphs */
}
.section-title {
    font-size: 22px; /* Adjust the font size for section titles */
}