/* Root Custom Properties (Optional for easy reuse) */
:root {
    --primary: #2596be;
    --secondary: #e35416;
    --accent: #38eaf7;
    --text-light: #fff;
    --bg-dark: #000;
    --hover-color: #2596be;
}

/* Logo Colors */
.text-blue { color: #2596be; }
.text-orange { color: #e35416; }
.text-cyan { color: #38eaf7; }

/* Feature Number Boxes */
.feature-number {
    width: 45px;
    height: 45px;
    background-color: #222;
    color: #38eaf7;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

/* Buttons */
.btn-primary {
    background-color: #2596be;
    border: none;
}

.btn-primary:hover {
    background-color: #e35416;
    color: #fff;
}


/* General Reset */
body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: Arial, sans-serif;
}

/*** Topbar ***/
.bg-black {
    background-color: var(--bg-dark) !important;
    color: var(--text-light);
}

.topbar-icon {
    color: var(--primary);
}

.btn-sm-square {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: background-color 0.3s, color 0.3s;
}

.btn-sm-square:hover {
    background-color: var(--primary);
    color: #fff !important;
}

/*** Navbar ***/
.navbar {
    background-color: var(--bg-dark) !important;
    color: var(--text-light);
}

.navbar .navbar-brand img {
    height:10vh;
}

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

.navbar-dark .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--text-light);
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--hover-color);
}

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

    .navbar-dark .navbar-nav {
        border-top: 1px solid #EEEEEE;
        background-color: var(--bg-dark);
    }
}

.navbar-dark.sticky-top {
    top: -100px;
    transition: 0.5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: 0.5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        opacity: 1;
    }
}

/*** Gradient Button ***/
.btn-gradient {
    background: linear-gradient(45deg, var(--secondary), var(--primary), var(--accent));
    color: #fff;
    border: none;
    transition: all 0.3s ease-in-out;
    border-radius: 4px;
}

.btn-gradient:hover {
    background: linear-gradient(45deg, var(--primary), var(--accent), var(--secondary));
    color: #fff;
}

/* Optional for smoother button icon spacing */
.btn-gradient .fa {
    margin-left: 10px;
}

.fw-medium {
    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;
}


/*** Base Button ***/
.btn {
    font-weight: 500;
    text-transform: uppercase;
    transition: 0.4s ease;
    border: none;
    border-radius: 999px; /* Pill shape */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/*** Primary Gradient Button ***/
.btn.btn-primary {
    background: linear-gradient(45deg, #e35416, #2596be, #38eaf7);
    color: #FFFFFF;
    background-size: 200% auto;
    padding: 10px 25px;
}

.btn.btn-primary:hover {
    background-position: right center;
    box-shadow: 0 6px 16px rgba(37, 150, 190, 0.3);
    color: #FFFFFF;
}

/*** Secondary Solid Blue Button ***/
.btn.btn-secondary {
    background-color: #2596be;
    color: #FFFFFF;
    padding: 10px 25px;
}

.btn.btn-secondary:hover {
    background-color: #1b7493;
    box-shadow: 0 6px 16px rgba(37, 150, 190, 0.3);
    color: #FFFFFF;
}

/*** Icon Buttons ***/
.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%; /* Rounded instead of square */
    background-color: #FFFFFF;
    color: #2596be;
    transition: 0.3s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.btn-square:hover,
.btn-sm-square:hover,
.btn-lg-square:hover {
    background-color: #2596be;
    color: #FFFFFF;
    box-shadow: 0 4px 10px rgba(37, 150, 190, 0.3);
}

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

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

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






/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .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(0, 0, 0, .7);
}

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


/*** Facts ***/
.fact {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-bg-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


/* Icon Color Themes */
.text-blue {
    color: #2596be;
}

.text-orange {
    color: #e35416;
}

.text-cyan {
    color: #38eaf7;
}

/* Service Box Styling */
.service-box {
    background-color: #111;
    border-radius: 12px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(56, 234, 247, 0.05);
}

.social-icon {
  font-size: 30px;
  color: #2596be;
}
 

.service-box:hover {
    background-color: #1a1a1a;
    box-shadow: 0 6px 20px rgba(56, 234, 247, 0.2);
}

 /* Dark Theme Styling */
 .service-tab {
    background-color: #333;
    color: white;
    transition: all 0.3s ease;
}

.service-tab:hover {
    background-color: #444;
    transform: translateX(5px); /* subtle hover effect */
}

.nav-pills .nav-link.active {
    background-color: #007bff; /* Active tab color */
}

.tab-pane {
    background-color: #1e1e1e;
    padding: 30px;
    border-radius: 10px;
}

.btn-primary {
    background-color: #007bff;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

/* Animations */
.wow {
    visibility: hidden;
}

.wow.fadeInUp {
    animation: fadeInUp 1s ease-in-out forwards;
}

@keyframes fadeInUp {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Icon Styling */
.icon-style {
    margin-top: 6px;
}

/* Read More Link */
.read-more {
    color: #38eaf7;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: 0.3s ease;
}

.read-more:hover {
    color: #e35416;
    border-color: #e35416;
}

/* Optional: Smooth text */
.service-box h5,
.service-box p {
    color: #fff;
    transition: color 0.3s ease;
}


/*** Booking ***/
.booking {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-bg-2.jpg) center center no-repeat;
    background-size: cover;
}

.form-background {
    background: linear-gradient(to bottom right, #007bff, #0056b3); /* Gradient background for the form */
    padding: 30px;
    border-radius: 10px;
}

.btn-secondary {
    background-color: #007bff; /* Logo color (replace with your color) */
    color: white;
    border: none;
}

.btn-secondary:hover {
    background-color: #0056b3; /* Darker shade of the logo color */
}

.dropdown-toggle {
    background-color: #007bff; /* Same as the logo color */
    color: white;
    border: none;
}

.dropdown-menu {
    background-color: #1a1a1a; /* Dark background for the dropdown */
    color: white;
}

.form-control {
    border: 1px solid #007bff; /* Border color matching the logo */
}

.form-control:focus {
    border-color: #0056b3; /* Focused border color (darker shade) */
}

.bg-primary {
    background-color: #007bff !important; /* Primary background color */
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: #007bff; /* Highlight active date with logo color */
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: #007bff; /* Highlight today's date with logo color */
}

/*** Team ***/
.team-item .team-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);  /* Primary color for overlay */
    transform: scale(0);
    transition: .5s;
}

.team-item:hover .team-overlay {
    transform: scale(1);
}

.team-item .team-overlay .btn {
    color: var(--primary);  /* Primary color for icons */
    background: #FFFFFF;  /* White background for buttons */
}

.team-item .team-overlay .btn:hover {
    color: #FFFFFF;  /* White text on hover */
    background: var(--secondary);  /* Secondary color on hover */
}

/* For the Team Item (Image and Text) */
.team-item .bg-light {
    background-color: #f8f9fa;  /* Light background for the team card */
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);  /* Optional: Add some shadow for depth */
}

.team-item .bg-light h5 {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary);  /* Primary color for the name */
}

.team-item .bg-light small {
    font-size: 0.9rem;
    color: var(--secondary);  /* Secondary color for the designation */
}

/* Optional: Adjust button hover colors */
.team-item .team-overlay .btn:hover {
    color: #fff;
    background: var(--secondary);  /* Hover effect using secondary color */
}


/*** Testimonial ***/
/* Background color for the testimonial section */
.testimonial-carousel {
    background-color: #000000 !important; /* Set background color to black */
}

/* Update the testimonial text background and font colors */
.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: #2596be !important; /* Set the primary logo color */
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important; /* Change text color to white for better contrast */
}

/* Dot navigation for the carousel */
.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;
    transition: .5s;
}

/* Active dot styles */
.testimonial-carousel .owl-dot.active {
    background: #e35416; /* Set secondary logo color */
    border-color: #e35416; /* Match border color with active dot */
}

/* Update the buttons and other links within testimonial section */
.testimonial-carousel .owl-item .testimonial-item .btn {
    background: #38eaf7; /* Set button background to match logo color */
    color: #000000; /* Text color for buttons */
    transition: .3s;
}

/* Button hover effect */
.testimonial-carousel .owl-item .testimonial-item .btn:hover {
    background: #2596be; /* Change background to primary logo color on hover */
    color: #FFFFFF; /* Change text color on hover */
}



/*** Footer ***/
.footer {
    background: linear-gradient(rgba(0, 0, 0, .9), rgba(0, 0, 0, .9)), url(../img/carousel-bg-1.jpg) center center no-repeat;
    background-size: cover;
}

.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;
}

/* Background & general */
.contact-section {
    background-color: #000000;
}

/* Headings */
.contact-heading {
    color: #2596be;
}

/* Contact box styling */
.contact-box {
    background-color: #1a1a1a;
    color: #ffffff;
    border-left: 4px solid #2596be;
}

/* Icon color */
.contact-icon {
    color: #38eaf7;
}

/* Input fields */
.form-control.bg-dark {
    background-color: #111 !important;
    border: 1px solid #38eaf7;
    color: white;
}

.form-control.bg-dark:focus {
    border-color: #2596be;
    box-shadow: 0 0 0 0.2rem rgba(38, 234, 247, 0.25);
}

/* Accent text */
.text-accent {
    color: #38eaf7;
}

/* Button styles */
.btn-gradient {
    background: linear-gradient(to right, #2596be, #e35416);
    color: white;
    border: none;
}

.btn-gradient:hover {
    background: linear-gradient(to right, #e35416, #2596be);
    color: #fff;
}

/* Labels */
label {
    color: #ffffff;
}

/* Sticky WhatsApp Button */
.whatsapp-float {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    padding: 15px;
    font-size: 24px;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    text-align: center;
}

.whatsapp-float:hover {
    transform: translateY(-50%) scale(1.1);
    background-color: #38eaf7; /* optional logo-based hover */
}

.whatsapp-icon {
    font-size: 28px;
}
