@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&amp;family=Orbitron:wght@500;700&amp;display=swap');

/********** Template CSS **********/
:root {
    --primary: #3abdf3;
    --secondary: #0B2154;
    --light: #F2F2F2;
    --dark: #000000; /* Theme color to black */
    --nav-h: 88px; /* navbar height for layout calculations (matches actual navbar) */
    /* Futuristic accents */
    --neon: #39D0FF;
    --neon-alt: #00F5A0;
    --violet: #7a5cff;
    --bg-1: #000000;  /* Black theme base */
    --bg-2: #0a0a0a;  /* Slightly lighter black for depth */
    --glass: rgba(255, 255, 255, 0.06);
}

.fw-medium {
    font-weight: 600 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Base & Futuristic Background ***/
html, body { height: 100%; }
body {
    background: radial-gradient(1200px 800px at 10% 10%, rgba(57,208,255,0.05), transparent 60%),
                radial-gradient(900px 700px at 90% 30%, rgba(0,245,160,0.05), transparent 60%),
                linear-gradient(135deg, var(--bg-1), var(--bg-2));
    color: #e6edf3;
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    padding-top: var(--nav-h); /* ensure content starts below fixed navbar */
}

h1, h2, h3, .display-1, .display-2, .display-3, .display-4, .display-5 {
    font-family: 'Orbitron', 'Inter', sans-serif;
    letter-spacing: .5px;
}

/* Ensure headings are light on dark backgrounds */
h1, h2, h3, h4, h5, h6 { color: #e6edf3; }

/*** 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;
    border-radius: 12px;
}

.btn.btn-primary{
    background: radial-gradient(100% 100% at 50% 0%, #ffffff 0%, #eaf7fe 100%);
    color: #0B2154;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 6px 20px rgba(57,208,255,0.15);
}

.btn.btn-primary:hover {
    background: linear-gradient(135deg, var(--neon), #2aa6da);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(57,208,255,0.35), 0 0 12px rgba(57,208,255,0.55) inset;
}

.btn.btn-secondary {
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--neon), var(--neon-alt));
    border: none;
    box-shadow: 0 6px 22px rgba(0,245,160,0.25);
}

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

/* Style for 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-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #e9f1f7; /* Default color */
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
    position: relative;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--neon); /* Neon when hovered or active */
}

.navbar-light .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 18px;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, var(--neon), var(--neon-alt));
    box-shadow: 0 0 12px rgba(57,208,255,0.8);
    transition: width .25s ease;
}
.navbar-light .navbar-nav .nav-link:hover::after,
.navbar-light .navbar-nav .nav-link.active::after { width: 60%; }

/* Set icon color to theme primary */
.nav-pills .nav-link .icon-color {
    color: var(--primary);
}

/* Change icon color to white when the button is active */
.nav-pills .nav-link.active .icon-color {
    color: #fff; /* White color */
}

/* Futuristic nav-pills styling for contrast */
.nav-pills .nav-link {
    color: #EAF6FF;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
}
.nav-pills .nav-link h4 { color: inherit; }
.nav-pills .nav-link.active {
    color: #001018;
    background: rgb(58,189,243) !important; /* theme blue for selected */
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(57,208,255,0.35);
}

/* Service section: align checkmark color with theme */
.container-xxl.service .text-success { color: rgb(58,189,243) !important; }

/* Service section: ensure non-selected tab text is dark and visible */
.container-xxl.service .nav-pills .nav-link {
    background: rgba(255,255,255,0.9) !important;
    color: #0B2154 !important;
}
.container-xxl.service .nav-pills .nav-link .icon-color { color: #0B2154 !important; }
.container-xxl.service .nav-pills .nav-link.active .icon-color { color: #fff !important; }

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

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    /* Style for dropdown menu on large screens */
    .navbar .nav-item .dropdown-menu {
        display: block; /* Makes sure the dropdown is rendered */
        border: 1px solid rgba(255,255,255,0.1);
        margin-top: 0; /* No margin at the top */
        top: 150%; /* Initially positions the dropdown below the nav item */
        opacity: 0; /* Fully transparent initially */
        visibility: hidden; /* Hidden initially */
        transition: top 0.5s ease, opacity 0.5s ease, visibility 0.5s ease; /* Smooth transition */
        color: #EAF6FF;
        background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
        backdrop-filter: blur(10px);
    }
    .navbar .nav-item .dropdown-menu .dropdown-item {
        color: #EAF6FF;
    }
    .navbar .nav-item .dropdown-menu .dropdown-item:hover,
    .navbar .nav-item .dropdown-menu .dropdown-item:focus {
        background: rgba(57,208,255,0.12);
        color: #ffffff;
    }

    /* Dropdown menu visibility on hover */
    .navbar .nav-item:hover .dropdown-menu {
        top: 100%; /* Moves the dropdown up when hovered */
        visibility: visible; /* Makes it visible */
        opacity: 1; /* Fully opaque */
        transition: top 0.5s ease, opacity 0.5s ease, visibility 0.5s ease; /* Smooth transition */
    }
}

/* Remove the default navbar-toggler-icon and use the SVG icon */
.navbar-toggler svg {
    fill: #ffffff; /* Set the color of the SVG icon to white */
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.35); /* White border */
    backdrop-filter: blur(8px);
    border-radius: 10px;
}

/* Ensure dropdown menu text is readable over the hero */
.navbar .nav-item .dropdown-menu {
    z-index: 2000;
    background: rgba(0, 0, 0, 0.9) !important;
    color: #EAF6FF !important;
    border: 1px solid rgba(255,255,255,0.12);
}
.navbar .nav-item .dropdown-menu .dropdown-item { color: #EAF6FF !important; }
.navbar .nav-item .dropdown-menu .dropdown-item:hover,
.navbar .nav-item .dropdown-menu .dropdown-item:focus {
    background: rgba(57,208,255,0.18) !important;
    color: #fff !important;
}

/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(160deg, rgba(0,0,0,.65), rgba(0,0,0,.35));
    z-index: 1;
}

/* Hero alignment tweaks */
#header-carousel .carousel-caption { top: 0 !important; display: flex; align-items: center; }
#header-carousel .carousel-caption .container { padding-left: 2rem; padding-right: 2rem; }
@media (min-width: 992px) {
  #header-carousel .carousel-caption { padding-top: 0; }
  #header-carousel .carousel-caption .col-10.col-lg-7 {
    margin-left: .75rem;
    max-width: 760px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
@media (max-width: 991.98px) {
  #header-carousel .carousel-caption { padding-top: 56px; }
  #header-carousel .carousel-caption .col-10 { margin-left: 0 !important; text-align: center; }
  /* Show hero image on mobile and size it nicely */
  #header-carousel .carousel-caption .col-lg-5 img { max-width: 82%; height: auto; }
}

/* Unify hero typography across slides */
#header-carousel .carousel-caption h6 {
  color: rgba(255,255,255,0.92) !important;
  letter-spacing: 2px !important;
  text-transform: uppercase;
}
#header-carousel .carousel-caption h1 {
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    text-shadow: none !important;
    font-size: clamp(28px, 4.5vw, 72px) !important;
    line-height: 1.05 !important;
}

/* Ensure hero button doesn’t stretch full width */
#header-carousel .carousel-caption .btn { display: inline-flex; align-items: center; justify-content: center; }

/* Tame hero product image size on large screens */
@media (min-width: 992px) {
  #header-carousel .carousel-caption .col-lg-5 img {
    max-width: 68%;
    height: auto;
  }
}

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

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

.carousel-caption h1.display-3 {
    font-family: 'Orbitron', 'Inter', sans-serif;
    text-shadow: 0 0 18px rgba(57,208,255,0.45);
    letter-spacing: .6px;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 rgba(57,208,255,0.0); }
    50% { box-shadow: 0 0 18px rgba(57,208,255,0.35); }
}

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

#header-carousel {
    position: relative;
}
#header-carousel::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(57,208,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(57,208,255,0.05) 1px, transparent 1px);
    background-size: 60px 60px, 60px 60px;
    pointer-events: none;
    z-index: 0;
}

/* Prepare hero images for parallax translation */
#header-carousel .carousel-item img {
    will-change: transform;
    transform: translateY(0) scale(1.08);
    transition: transform 0.06s linear;
}

/* Hero aurora effect overlay */
#header-carousel::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    mix-blend-mode: screen;
    background:
      radial-gradient(600px 300px at var(--ax,20%) var(--ay,25%), rgba(0,245,160,0.08), transparent 60%),
      radial-gradient(800px 400px at calc(100% - var(--ax,20%)) calc(100% - var(--ay,25%)), rgba(57,208,255,0.10), transparent 65%);
    animation: aurora-move 16s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes aurora-move {
    0%   { --ax: 18%; --ay: 28%; }
    50%  { --ax: 72%; --ay: 35%; }
    100% { --ax: 40%; --ay: 70%; }
}

.page-header {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.page-header-inner {
    background: linear-gradient(180deg, rgba(0,0,0,.65), rgba(0,0,0,.35));
}

/* Futuristic aurora overlay for page headers (non-carousel) */
.page-header::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    mix-blend-mode: screen;
    background:
      radial-gradient(520px 260px at 20% 25%, rgba(0,245,160,0.06), transparent 60%),
      radial-gradient(700px 340px at 85% 35%, rgba(57,208,255,0.08), transparent 65%);
    animation: aurora-move 18s ease-in-out infinite alternate;
    z-index: 0;
}

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

/* Global polish */
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
h1, .display-1, .display-2, .display-3, .display-4, .display-5 { letter-spacing: .3px; }

.container-xxl .section-title,
.container .section-title {
    position: relative;
    padding-bottom: .5rem;
}

.container-xxl .section-title::after,
.container .section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

/* Buttons */
/* Keep hover polish above */

/* Navbar polish */
.navbar {
    backdrop-filter: saturate(150%) blur(6px);
    background-color: rgba(0, 0, 0, 0.72) !important;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.navbar.sticky-top {
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

/* Section cards / feature rows */
.container-xxl .d-flex.py-5.px-4,
.container .d-flex.py-5.px-4,
.container-xxl .d-flex.bg-light.py-5.px-4,
.container .d-flex.bg-light.py-5.px-4 {
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
    border: 1px solid rgba(255,255,255,0.10);
    backdrop-filter: blur(12px);
    transition: transform .25s ease, box-shadow .25s ease;
}
.container-xxl .d-flex.py-5.px-4:hover,
.container .d-flex.py-5.px-4:hover,
.container-xxl .d-flex.bg-light.py-5.px-4:hover,
.container .d-flex.bg-light.py-5.px-4:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,.12);
}

/* Images */
img.img-fluid.rounded,
img.img-fluid.w-100.h-100 {
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0,0,0,.35);
}
img.img-fluid.rounded:hover {
    transform: translateY(-2px);
    transition: transform .25s ease;
}

/* Page header overlay */
.page-header {
    position: relative;
}

/* NOVIQ intro section */
.noviq-section {
    position: relative;
    padding: 60px 0;
    background:
      radial-gradient(600px 280px at 10% 10%, rgba(57,208,255,.06), transparent 60%),
      radial-gradient(600px 280px at 90% 20%, rgba(0,245,160,.06), transparent 60%),
      linear-gradient(135deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.noviq-badge { color: rgb(58,189,243); letter-spacing: 2px; text-transform: uppercase; font-weight: 700; }
.noviq-title { font-weight: 800; color: #fff; }
.noviq-lead { color: #c9d4df; }

.noviq-carousel .item {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 16px 40px rgba(0,0,0,.22);
    padding: 32px 28px;
}
.noviq-carousel .item::after {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(600px 300px at 85% 20%, rgba(57,208,255,.10), transparent 60%);
}
.noviq-visual { filter: drop-shadow(0 20px 40px rgba(57,208,255,.25)); transform: translateZ(0); animation: floatY 6s ease-in-out infinite; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px);} }

.noviq-cta { border: none; box-shadow: 0 10px 30px rgba(57,208,255,0.35); }
.noviq-cta:hover { filter: brightness(1.05); transform: translateY(-1px); }

/* NOVIQ landing hero (top of page) */
.noviq-hero {
    position: relative;
    min-height: calc(100vh - var(--nav-h));
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #070b16, #0b1220 60%, #091226);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
}
.noviq-hero .container { position: relative; z-index: 2; padding-top: 8px; padding-bottom: 8px; }
.noviq-hero h1 { font-weight: 800; color: #fff; line-height: 1.05; }
.noviq-hero p { color: #c9d4df; font-size: 1.125rem; }
.chip-list { display:flex; flex-wrap:wrap; gap:10px 12px; margin-top: 18px; }
.chip { color:#eaf6ff; border:1px solid rgba(255,255,255,0.18); background:rgba(255,255,255,0.06); border-radius:999px; padding:8px 14px; font-weight:600; letter-spacing:.2px; }
.noviq-hero .hero-visual { max-width: 92%; filter: drop-shadow(0 26px 60px rgba(57,208,255,.22)); animation: floatY 8s ease-in-out infinite; }
.noviq-hero .cta-row { gap: 12px; }

/* Gradient + shimmer for "Noviq" */
.noviq-gradient {
  background: linear-gradient(90deg, var(--neon), var(--violet), var(--neon));
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-shadow: 0 0 18px rgba(57,208,255,0.25);
}
.shimmer { animation: shimmer 7s linear infinite; }
@keyframes shimmer { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

/* Bokeh style background with soft blue-violet orbs */
.noviq-hero .bg-bokeh {
  position: absolute; inset: -10% -10% -10% -10%; z-index: 1; pointer-events: none;
  background-image:
    radial-gradient(520px 380px at 12% 18%, rgba(67,108,255,.28), rgba(67,108,255,0) 60%),
    radial-gradient(620px 420px at 80% 26%, rgba(122,92,255,.26), rgba(122,92,255,0) 62%),
    radial-gradient(640px 460px at 72% 78%, rgba(26,86,219,.22), rgba(26,86,219,0) 60%),
    radial-gradient(540px 360px at 18% 82%, rgba(17,110,196,.18), rgba(17,110,196,0) 60%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.00));
  filter: saturate(115%);
  animation: bokeh-drift 36s ease-in-out infinite alternate;
}
@keyframes bokeh-drift {
  0%   { transform: translate3d(0,0,0) scale(1); }
  50%  { transform: translate3d(0,-16px,0) scale(1.02); }
  100% { transform: translate3d(0,0,0) scale(1); }
}
/* Soft vignette */
.noviq-hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: radial-gradient(120% 120% at 50% 40%, rgba(0,0,0,0) 55%, rgba(0,0,0,.40) 100%);
}

/* Tiny glowing dots near headline */
.noviq-dots { position: relative; height: 8px; margin-top: 8px; }
.noviq-dots i { display:inline-block; width:8px; height:8px; margin-right:8px; border-radius:50%; background: rgba(57,208,255,.75); box-shadow: 0 0 10px rgba(57,208,255,.6); animation: pulse 2.4s ease-in-out infinite; }
.noviq-dots i:nth-child(2){ animation-delay: .4s; background: rgba(122,92,255,.75); box-shadow: 0 0 10px rgba(122,92,255,.6); }
.noviq-dots i:nth-child(3){ animation-delay: .8s; }
@keyframes pulse { 0%,100%{ transform: scale(.9); opacity:.8;} 50%{ transform: scale(1.1); opacity:1;} }

/* Right preview glass card */
.preview-card {
  position: relative; z-index: 1;
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px; padding: 22px 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
}
.preview-card h5 { color: #eaf6ff; margin-bottom: 12px; }
.preview-row { display:flex; align-items:center; gap:10px; color:#c9d4df; padding:6px 0; font-weight:600; }
.preview-row i { color: rgb(58,189,243); text-shadow: 0 0 10px rgba(57,208,255,.35); }

/* CTA styles */
.btn-glow { box-shadow: 0 10px 30px rgba(57,208,255,.35); border:none; }
.btn-glow:hover { transform: translateY(-2px); }
.btn-outline-glow { background: transparent; border:1px solid rgba(255,255,255,.35); color:#eaf6ff; }
.btn-outline-glow:hover { background: rgba(255,255,255,.08); box-shadow: 0 8px 20px rgba(122,92,255,.25); }

/* Trust bar */
.trust-bar { background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)); border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.trust-item { display:flex; align-items:center; gap:10px; color:#c9d4df; font-weight:600; }
.trust-item i { color: rgb(58,189,243); }

@media (max-width: 991.98px) {
  :root { --nav-h: 88px; }
  .noviq-hero { padding-top: 12px; padding-bottom: 18px; }
}

/* Brand names marquee */
.brand-marquee {
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
}
.brand-marquee .marquee-track {
    display: inline-flex;
    gap: 56px;
    white-space: nowrap;
    will-change: transform;
    animation: brand-scroll 28s linear infinite;
    padding: 12px 0;
}
.brand-marquee .brand-item {
    color: #eaf6ff;
    font-family: 'Orbitron', 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: .4px;
    text-shadow: 0 0 10px rgba(57,208,255,.25);
    opacity: .95;
}
.brand-marquee:hover .marquee-track { animation-play-state: paused; }

@keyframes brand-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.35));
}
.page-header > * { position: relative; z-index: 1; }

/* Footer */
.footer a.btn-link {
    color: #cbd5e1;
    text-decoration: none;
}
.footer a.btn-link:hover {
    color: #ffffff;
}

/* Back to top */
.back-to-top {
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
    background: linear-gradient(135deg, var(--neon), var(--neon-alt));
    border: none;
}
.back-to-top:hover {
    filter: brightness(1.05);
}

/* Brand cards on homepage */
.brand-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,.22);
    padding: 1.25rem;
}
.brand-card h6 { color: rgb(58,189,243); font-weight: 700; letter-spacing: .2px; }
.brand-card p { color: #c9d4df; margin-bottom: 0; }
.brand-logo { max-height: 64px; object-fit: contain; filter: drop-shadow(0 6px 18px rgba(57,208,255,0.15)); }
@media (min-width: 992px) { .brand-logo { max-height: 78px; } }

/* Testimonials: hide original garbled first p when we add clean copies */
.testimonial-box p:first-of-type { display: none; }

/* Testimonials container gets glass effect */
.testimonial-box {
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

/* Icon glow */
.fa, .bi {
    text-shadow: 0 0 12px rgba(57,208,255,.35);
}

/* Mobile tuning for readability and spacing */
@media (max-width: 767.98px) {
    .feature-block { border-radius: 12px; padding: 1.25rem !important; }
    .feature-block h3 { font-size: 26px !important; }
    .feature-block p { font-size: 18px !important; }
    .feature-block ul { font-size: 16px !important; }

    /* Numbered mini-boxes in About section */
    .row.g-4.mb-3.pb-3 .bg-light {
        background-color: rgba(255,255,255,0.12) !important;
        border: 1px solid rgba(255,255,255,0.15);
    }
    .row.g-4.mb-3.pb-3 .bg-light span {
        color: rgb(58,189,243) !important;
        opacity: 1 !important;
    }
    .row.g-4.mb-3.pb-3 h6 { color: rgb(58,189,243) !important; letter-spacing: .2px; }
    .row.g-4.mb-3.pb-3 .ps-3 span { color: #e6edf3 !important; }
}

/* Override Bootstrap's light background to fit dark theme */
.bg-light {
    background-color: rgba(255,255,255,0.06) !important;
}



/*** 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;
}


/*** Service ***/
.service .nav .nav-link {
    background: var(--light);
    transition: .5s;
}

.service .nav .nav-link.active {
    background: var(--primary);
}

.service .nav .nav-link.active h4 {
    color: #FFFFFF !important;
}


/*** 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;
}

.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


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

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

.team-item .team-overlay .btn {
    color: var(--primary);
    background: #FFFFFF;
}

.team-item .team-overlay .btn:hover {
    color: #FFFFFF;
    background: var(--secondary)
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    transition: .5s;
}

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

.testimonial-carousel .owl-item.center .testimonial-text * {
    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;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}


/*** 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;
}


.service-img {
    width: 100%;
    height: 400px;
    object-fit: fill;
}
