/********** Template CSS **********/
:root {
    --primary: #FEA116;
    --light: #F1F8FF;
    --dark: #0F172B;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-semi-bold {
    font-weight: 600 !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-weight: 500;
    text-transform: uppercase;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.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;
    border-radius: 2px;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 43, .7);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, .7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}

.booking {
    position: relative;
    margin-top: -100px !important;
    z-index: 1;
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    left: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    top: 50%;
    right: -55px;
    margin-top: -1px;
    background: var(--primary);
}

.section-title.text-start::before,
.section-title.text-end::after {
    display: none;
}


/*** Service ***/
.service-item {
    height: 320px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item .service-icon {
    margin: 0 auto 30px auto;
    width: 65px;
    height: 65px;
    transition: .5s;
}

.service-item i,
.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover i,
.service-item:hover h5,
.service-item:hover p {
    color: #FFFFFF !important;
}

.rounded:hover #heavy, .rounded:hover #proto, .rounded:hover #pcb, .rounded:hover #manifact, .rounded:hover{
    fill: #FFFFFF;
}


/*** Youtube Video ***/
.video {
    position: relative;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(15, 23, 43, .1), rgba(15, 23, 43, .1)), url(../img/video.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    border: none;
    outline: none;
    padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    transition: all 200ms;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--dark);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}

/*** Footer ***/
.newsletter {
    position: relative;
    z-index: 1;
}

.form-control{
    border-radius: 10px;
}

.footer {
    position: relative;
    margin-top: -110px;
    padding-top: 180px;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    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: "Font Awesome 5 Free";
    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, .3);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.pe-3{
    padding-right: 0.6rem !important;
}
.me-3{
    margin-right: 0.4rem !important;
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
    animation: zoom 0.6s;
}

@keyframes zoom {
    from {transform: scale(0.1);}
    to {transform: scale(1);}
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover, .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.3s;
    user-select: none;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

.caption-container {
    text-align: center;
    padding: 20px;
    color: white;
}
body {
    background-color: #f9f9f9;
    color: #333;
    font-family: 'Heebo', sans-serif;
}

.btn-dark {
    background-color: #333;
    color: #fff;
}

.navbar, .footer {
    background-color: #fff;
    color: #333;
}

.carousel-caption h1, .carousel-caption p {
    color: #333;
}

.theme-toggle button {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.carousel-item img {
    object-fit: cover;
    height: 500px;
    width: 100%;
}

@media (max-width: 768px) {
    .carousel-item img {
        height: 300px;
    }
}
body {
    background-color: #121212;
    color: #f9f9f9;
    font-family: 'Heebo', sans-serif;
}

.btn-dark {
    background-color: #f9f9f9;
    color: #333;
}

.navbar, .footer {
    background-color: #333;
    color: #f9f9f9;
}

.carousel-caption h1, .carousel-caption p {
    color: #f9f9f9;
}

.theme-toggle button {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.carousel-item img {
    object-fit: cover;
    height: 500px;
    width: 100%;
}

@media (max-width: 768px) {
    .carousel-item img {
        height: 300px;
    }
}

/* Define a dark blue color variable if not already defined */
:root {
    --dark-blue: #003366; /* Adjust the hex code as needed for your preferred shade of dark blue */
}

/* Applying dark blue color to text and icons within service items */
.service-item h4,
.service-item p,
.service-item i {
    color: var(--dark-blue); /* Using the dark blue color variable */
    transition: color 0.3s ease; /* Smooth transition for color change */
}

/* Optional: change text color on hover to maintain readability if background changes */
.service-item:hover h4,
.service-item:hover p,
.service-item:hover i {
    color: #FFFFFF; /* This could be white or another light color for contrast */
}

.small-image {
    max-width: 70%; /* Adjust this value to control the size */
    height: auto; /* Keep the aspect ratio */
}
.partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 100%;
    position: relative;
    text-align: center;
}

.partner-logo {
    max-width: 100px; /* Ensure logos have equal size */
    margin-bottom: 15px;
}

.partner-name {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

.partner-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 20px;
    color: #007bff;
}

.partner-icon:hover {
    color: #0056b3;
    text-decoration: none;
}

a i {
    margin-right: 5px;
    color: inherit; /* Inherit the color from the link */
}

a:hover i {
    color: #0056b3; /* Hover color */
}

a {
    display: inline-block;
    text-decoration: none;
    color: #000;
}

.partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 100%;
    position: relative;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth hover transition */
}

.partner-card:hover {
    background-color: #e0f7fa; /* Change to a light blue color on hover */
    transform: translateY(-5px); /* Slight lift effect on hover */
}

.partner-logo {
    max-width: 150px; /* Increase the size of the logo */
    margin-top: auto; /* Center vertically between top and text */
    margin-bottom: auto; /* Center vertically between top and text */
}

.partner-name {
    font-weight: bold;
    font-size: 16px;
    color: #333;
    margin-bottom: 0;
}

.partner-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 20px;
    color: #007bff;
}

.partner-icon:hover {
    color: #0056b3;
    text-decoration: none;
}

a i {
    margin-right: 5px;
    color: inherit;
}

a:hover i {
    color: #0056b3;
}

a {
    display: inline-block;
    text-decoration: none;
    color: #000;
}

/* Ensure the card fills the container */
.col-lg-3, .col-md-4, .col-6 {
    display: flex;
    justify-content: center;
}

.partner-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.partner-card img {
    margin-top: auto;
    margin-bottom: auto;
}
#team img {
    max-width: 100%; /* Make sure the image is responsive */
    height: auto;
    border-radius: 10px; /* Optional: Adds a rounded edge to the image */
}

.btn-primary {
    background-color: #007bff;
    border: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: scale(1.05); /* Slightly enlarges the button on hover */
}

.btn-primary:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
}
.carousel-wrapper {
    overflow: hidden; /* Hide the overflow */
    width: 100%; /* Full-width container */
    position: relative; /* Ensures the carousel is positioned correctly */
}

.carousel {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: max-content;
    animation: rotateWheel 120s linear infinite; /* Slower rotating animation */
}

.customer-item {
    flex: 0 0 300px; /* Fixed width for each item */
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease; /* Smooth transitions */
    color: #333; /* Dark text color */
}

.customer-item i {
    color: #333; /* Darken quote icon */
}

.customer-item p {
    color: #333; /* Dark text color for the testimonials */
}

.customer-item:hover {
    transform: scale(1.05); /* Zoom-in effect */
    background-color: #f0f8ff; /* Light blue background on hover */
}

/* Animation stops when hovering over the carousel */
.carousel:hover {
    animation-play-state: paused; /* Stop animation on hover */
}

/* Keyframes for continuous scrolling, starting from right and looping */
@keyframes rotateWheel {
    0% {
        transform: translateX(0); /* Start from the first item */
    }
    100% {
        transform: translateX(-100%); /* End after all items have scrolled */
    }
}
footer {
    background-color: #343a40;
    color: #fff;
    padding: 40px 0;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer .btn-floating {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px; /
}

/* Enlarge the logo */
footer .logo {
    width: 200px; 
    height: auto;
}

/* Hover effects for social media icons */
.facebook:hover { background-color: #3b5998; }
.linkedin:hover { background-color: #0077b5; }
.instagram:hover { background-color: #e4405f; }
.youtube:hover { background-color: #c4302b; }
.twitter:hover { background-color: #1da1f2; }
.whatsapp:hover { background-color: #25d366; }

footer ul {
    padding-left: 0;
    list-style: none;
}

/* Improve Navbar Spacing */
.navbar-nav .nav-link {
    padding: 0.5rem 1rem;
}

.navbar-toggler {
    margin-right: 15px;
}

/* Navbar collapse alignment for smaller screens */
.navbar-collapse {
    justify-content: flex-end;
}


/* Add a 1 cm gap between content and footer */
.gap {
    height: 1cm;
}

/* Footer Styles */
.footer {
    padding: 30px 0;
    background-color: #1c1c1c;
    color: #d4d4d4;
    font-size: 14px;
    width: 100%;
}

.footer h5 {
    font-weight: 700;
    margin-bottom: 15px;
}

.footer p, .footer ul {
    margin-bottom: 8px;
}

.footer ul {
    list-style: none;
    padding-left: 0;
}

.footer ul li {
    margin-bottom: 5px;
}

.footer ul li i {
    margin-right: 8px;
    color: #007bff;
}

.footer .social-icons a {
    font-size: 18px;
    margin-right: 10px;
}

.footer .social-icons a:hover {
    color: #007bff;
}

.footer a {
    color: #d4d4d4;
    transition: color 0.3s;
}

.footer a:hover {
    color: #007bff;
}

.footer form .form-control {
    border-radius: 0;
    border: none;
    background-color: #343434;
    color: #d4d4d4;
    font-size: 14px;
}

.footer form .form-control:focus {
    background-color: #444;
    outline: none;
    color: #fff;
}

.footer form .btn-primary {
    border-radius: 0;
    background-color: #007bff;
    border: none;
    font-size: 14px;
    padding: 8px 15px;
}

.footer form .btn-primary:hover {
    background-color: #0056b3;
}

.container-fluid {
    max-width: 100%;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .footer {
        padding: 20px 0;
    }

    .footer .form-control {
        margin-bottom: 10px;
    }
}

.team-img {
    width: 200px;            /* Fixed width for all images */
    height: 200px;           /* Fixed height for all images */
    border-radius: 50%;      /* Make the images circular */
    object-fit: cover;       /* Ensures the image covers the entire area without stretching */
    object-position: center; /* Center the image inside the circle */
    display: block;
    margin-left: auto;
    margin-right: auto;
}
