/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
    background: var(--dm-bg-deepest);
}
#spinner.show {
    transition: opacity .8s ease-out, visibility 0s linear .0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

/*** Custom Scrollbar ***/
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--dm-bg-deepest); }
::-webkit-scrollbar-thumb {
    background: var(--coffee, #4a2b08);
    border-radius: 5px;
    border: 2px solid var(--dm-bg-deepest);
}
::-webkit-scrollbar-thumb:hover { background: var(--gold-400, #d69f26); }
* { scrollbar-width: thin; scrollbar-color: var(--coffee, #4a2b08) var(--dm-bg-deepest); }

/*** Selection ***/
::selection {
    background: rgba(214, 159, 38, 0.35);
    color: var(--cream, #fff8e9);
}

/*** Button Start ***/
.btn {
    font-weight: 700;
    font-family: var(--body, "Space Grotesk", sans-serif);
    transition: all .3s ease;
    letter-spacing: 0.04em;
}
.btn-square { width: 38px; height: 38px; }
.btn-sm-square { width: 32px; height: 32px; }
.btn-md-square { width: 46px; height: 46px; }
.btn-lg-square { width: 58px; height: 58px; }
.btn-square, .btn-sm-square, .btn-md-square, .btn-lg-square {
    padding: 0; display: flex; align-items: center; justify-content: center; font-weight: normal;
}
.back-to-top {
    position: fixed; width: 50px; height: 50px; right: 30px; bottom: 30px; z-index: 99;
    background: linear-gradient(135deg, var(--gold-300, #efc756), var(--gold-400, #d69f26)) !important;
    border: none !important; color: #231305 !important;
    box-shadow: 0 10px 24px rgba(214, 159, 38, 0.25);
    transition: all .3s ease;
}
.back-to-top:hover {
    box-shadow: 0 14px 30px rgba(214, 159, 38, 0.4);
    transform: translateY(-3px);
}
.back-to-top i { color: #231305 !important; }

.btn-gradient-primary {
    background: linear-gradient(135deg, #fff0b4, #efc756 50%, #d69f26);
    color: #231305; border: none; padding: 14px 36px; border-radius: 50px;
    font-weight: 700; transition: all 0.3s ease;
    box-shadow: 0 10px 24px rgba(214, 159, 38, 0.25);
    letter-spacing: 0.08em; text-transform: uppercase; font-size: 13px;
}
.btn-gradient-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(214, 159, 38, 0.4);
    color: #231305;
}
.btn-outline-glow {
    background: transparent; color: var(--aqua, #2BA89E);
    border: 2px solid var(--aqua, #2BA89E);
    padding: 12px 36px; border-radius: 50px; font-weight: 700;
    transition: all 0.3s ease; letter-spacing: 0.08em; text-transform: uppercase; font-size: 13px;
}
.btn-outline-glow:hover {
    background: rgba(43, 168, 158, 0.12);
    box-shadow: 0 0 20px rgba(43, 168, 158, 0.25);
    color: var(--aqua, #2BA89E); transform: translateY(-2px);
}
/*** Button End ***/

/*** Topbar Start ***/
.topbar {
    border-bottom: 1px solid rgba(255, 226, 148, 0.12);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.topbar .top-info { letter-spacing: 1px; }
.topbar .top-link { display: flex; align-items: center; justify-content: center; }
.topbar .top-link a { margin-right: 10px; transition: all .3s ease; }
.topbar .top-link a:hover {
    box-shadow: 0 0 12px rgba(214, 159, 38, 0.35);
    transform: translateY(-2px);
}
#note { width: 500px; overflow: hidden; }
#note small {
    position: relative; display: inline-block;
    animation: mymove 5s infinite; color: var(--gold-200, #f8dd8c);
}
@keyframes mymove { from {left: -100%;} to {left: 100%;} }
/*** Topbar End ***/

/*** Navbar Start ***/
header .container-fluid.bg-primary {
    background: linear-gradient(180deg, rgba(18, 10, 4, 0.96), rgba(26, 16, 5, 0.94)) !important;
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 226, 148, 0.14);
}
.navbar .navbar-nav { padding: 15px 0; }
.navbar .navbar-nav .nav-link {
    padding: 10px; color: var(--cream, #fff8e9);
    font-family: var(--display, "Ndot 57", "Space Grotesk", sans-serif);
    font-size: 16px; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase; outline: none; transition: all .3s ease;
}
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--gold-200, #f8dd8c) !important;
    text-shadow: 0 0 12px rgba(248, 221, 140, 0.3);
}
.navbar .dropdown-toggle::after {
    border: none; content: "\f107"; font-family: "font awesome 5 free";
    font-weight: 900; vertical-align: middle; margin-left: 8px;
}
.navbar-brand img { filter: brightness(1.3) contrast(1.1); transition: filter .3s ease; }
.navbar-brand img:hover { filter: brightness(1.5) contrast(1.2); }
.navbar .dropdown-menu {
    position: absolute !important;
    z-index: 9999 !important;
    background: linear-gradient(180deg, rgba(18, 10, 4, 0.98), rgba(40, 22, 7, 0.96)) !important;
    border: 1px solid rgba(255, 226, 148, 0.20) !important;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6) !important;
    border-radius: 14px !important;
    padding: 8px 0 !important;
    min-width: 200px;
}

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

@media (max-width: 991px) {
    .navbar-brand { display: flex; justify-content: center; width: 100%; margin: 15px auto 25px; }
    .navbar-brand img { max-height: 120px; width: auto; object-fit: contain; }
    .navbar-toggler { display: none; }
    .navbar, .navbar > .container { width: 100%; max-width: 100%; padding: 0; }
    .navbar-nav, .navbar-collapse, .container, .navbar {
        padding-left: 0 !important; padding-right: 0 !important;
        margin-left: 0 !important; margin-right: 0 !important;
    }
    .navbar > .container { flex-direction: column; align-items: center; }
    .navbar-collapse {
        display: flex !important; height: auto !important; visibility: visible !important;
        width: 100%; background-color: rgba(18, 10, 4, 0.98) !important;
        border-top: 1px solid rgba(255, 226, 148, 0.10);
    }
    .navbar-nav {
        flex-direction: row !important; justify-content: space-between;
        width: 100%; padding: 12px 0 !important; margin: 0;
    }
    .navbar-nav .nav-item { flex: 1; text-align: center; display: flex; justify-content: center; }
    .navbar-nav .nav-link {
        padding: 10px 5px !important; font-size: 14px !important;
        text-align: center; font-weight: 700; white-space: nowrap; letter-spacing: 0.06em;
    }
    .nav-item.dropdown { position: static; }
    .navbar .dropdown-toggle::after { display: inline-block; margin-left: 2px; }
    .navbar .dropdown-menu {
        position: absolute; left: 50%; transform: translateX(-50%);
        min-width: 200px; text-align: center; margin-top: 5px;
    }
}
@media (max-width: 576px) {
    .navbar-nav .nav-link { font-size: 13px !important; padding: 8px 2px !important; }
    .navbar-brand { margin-bottom: 15px; }
    .navbar-nav { padding: 8px 0 !important; }
}
/*** Navbar End ***/

/*** Hero Gradient Start ***/
.hero-gradient {
    position: relative; min-height: 100vh; overflow: hidden;
    z-index: 0;
    display: flex; align-items: center; justify-content: center;
    background:
        radial-gradient(circle at 18% 8%, rgba(255, 215, 118, 0.14), transparent 28%),
        radial-gradient(circle at 85% 55%, rgba(255, 123, 69, 0.10), transparent 26%),
        radial-gradient(circle at 50% 95%, rgba(43, 168, 158, 0.08), transparent 24%),
        linear-gradient(168deg, #0e0803 0%, #1e1205 30%, #371f07 68%, #4c2b09 100%);
}
.hero-gradient::before, .hero-gradient::after {
    content: ""; position: absolute; border-radius: 50%;
    filter: blur(80px); pointer-events: none;
}
.hero-gradient::before {
    width: 500px; height: 500px; background: rgba(255, 211, 110, 0.16);
    top: -180px; right: -120px; animation: floatShape1 20s ease-in-out infinite;
}
.hero-gradient::after {
    width: 400px; height: 400px; background: rgba(43, 168, 158, 0.10);
    bottom: -120px; left: -80px; animation: floatShape2 25s ease-in-out infinite;
}
.hero-shape { position: absolute; border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; opacity: 0.06; filter: blur(50px); pointer-events: none; }
.hero-shape-1 { width: 350px; height: 350px; background: var(--coral, #E87040); top: 25%; left: 8%; animation: floatShape3 18s ease-in-out infinite; }
.hero-shape-2 { width: 250px; height: 250px; background: var(--gold-400, #d69f26); bottom: 15%; right: 12%; animation: floatShape1 22s ease-in-out infinite reverse; }
.hero-shape-3 { width: 180px; height: 180px; background: var(--aqua, #2BA89E); top: 12%; left: 55%; animation: floatShape2 16s ease-in-out infinite; }

@keyframes floatShape1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(50px, -30px) rotate(90deg); }
    50% { transform: translate(20px, 40px) rotate(180deg); }
    75% { transform: translate(-30px, 20px) rotate(270deg); }
}
@keyframes floatShape2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-40px, -20px) scale(1.1); }
    66% { transform: translate(30px, 30px) scale(0.9); }
}
@keyframes floatShape3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    50% { transform: translate(60px, -40px) rotate(180deg) scale(1.15); }
}

/* Hero circuit SVG overlay */
.hero-circuit-svg {
    position: absolute; inset: 0; width: 100%; height: 100%;
    z-index: 1; pointer-events: none;
}

.hero-content { position: relative; z-index: 2; text-align: center; max-width: 900px; padding: 0 20px; }

/* Kicker badge */
.hero-kicker {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 10px 22px; border-radius: 999px;
    background: rgba(12, 7, 3, 0.60);
    border: 1px solid rgba(248, 221, 140, 0.22);
    color: rgba(255, 248, 233, 0.90);
    font-family: var(--body); font-size: 13px; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    margin-bottom: 20px;
}
.hero-kicker-dot {
    width: 10px; height: 10px; border-radius: 999px;
    background: linear-gradient(135deg, #F0A842, #E87040);
    box-shadow: 0 0 14px rgba(255, 123, 69, 0.6);
    display: inline-block;
}

/* Hero heading — multi-line with service colors */
.hero-content h1 {
    font-family: var(--display) !important;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: normal; line-height: 0.92; letter-spacing: 0.02em;
    text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero-line-1 {
    display: block; color: #fff;
    text-shadow: 0 3px 12px rgba(0,0,0,0.35);
}
.hero-line-2 { display: block; margin-top: 8px; }
.hero-svc-gold {
    color: var(--gold-200, #f8dd8c);
    text-shadow: 0 2px 14px rgba(248, 221, 140, 0.40);
}
.hero-svc-aqua {
    color: #5CC8C0;
    text-shadow: 0 2px 14px rgba(43, 168, 158, 0.40);
}
.hero-svc-coral {
    color: #E8A07A;
    text-shadow: 0 2px 14px rgba(255, 123, 69, 0.35);
}
.hero-dot {
    color: rgba(255, 248, 233, 0.30);
    margin: 0 4px;
}

.hero-content p {
    color: rgba(255, 248, 233, 0.85) !important; font-family: var(--body);
    font-size: 1.15rem; font-weight: 500; max-width: 680px; margin: 0 auto 2rem;
    line-height: 1.6;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }

/* Hero trust bar */
.hero-trust {
    display: inline-flex; align-items: center; gap: 16px;
    padding: 12px 28px; border-radius: 999px;
    background: rgba(12, 7, 3, 0.55);
    border: 1px solid rgba(248, 221, 140, 0.15);
}
.hero-trust-item {
    display: flex; align-items: center; gap: 8px;
    font-family: var(--body); font-size: 13px; font-weight: 600;
    color: rgba(255, 248, 233, 0.80); letter-spacing: 0.04em;
}
.hero-trust-item i.fa-star { font-size: 12px; margin-right: -4px; }
.hero-trust-divider {
    width: 1px; height: 20px;
    background: rgba(248, 221, 140, 0.25);
}

@media (max-width: 768px) {
    .hero-gradient { min-height: 80vh; }
    .hero-content h1 { font-size: clamp(2.2rem, 8vw, 3.5rem); }
    .hero-content p { font-size: 1rem; }
    .btn-gradient-primary, .btn-outline-glow { padding: 12px 28px; font-size: 12px; }
    .hero-trust { flex-direction: column; gap: 8px; padding: 14px 20px; }
    .hero-trust-divider { width: 40px; height: 1px; }
    .hero-kicker { font-size: 11px; padding: 8px 16px; }
}
/*** Hero Gradient End ***/

/*** Page Header Start ***/
.page-header {
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 215, 118, 0.10), transparent 30%),
        linear-gradient(168deg, rgba(18, 10, 4, 0.95), rgba(40, 22, 6, 0.90));
    border-bottom: 1px solid rgba(255, 226, 148, 0.12);
    position: relative;
    z-index: 0;
    isolation: isolate;
    overflow: hidden;
    box-shadow: inset 0 -1px 0 rgba(255, 243, 203, 0.06), 0 24px 60px rgba(4, 2, 1, 0.28);
}
.page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--page-illustration);
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.42;
    mix-blend-mode: screen;
    pointer-events: none;
}
.page-header::after {
    content: "";
    position: absolute;
    width: 460px;
    height: 460px;
    right: -140px;
    top: -160px;
    background: radial-gradient(circle, rgba(248, 221, 140, 0.20), rgba(248, 221, 140, 0.06) 38%, transparent 70%);
    filter: blur(8px);
    pointer-events: none;
}
.page-header > * {
    position: relative;
    z-index: 1;
}
.page-header .breadcrumb-item+.breadcrumb-item::before { color: var(--dm-text-muted); }
.page-header .breadcrumb-item, .page-header .breadcrumb-item a {
    font-size: 16px; font-family: var(--body); font-weight: 600;
    letter-spacing: 0.06em; color: var(--cream, #fff8e9);
}
/*** Page Header End ***/

/*** Facts/Stats Section ***/
.facts-section {
    background: linear-gradient(180deg, rgba(20, 11, 4, 0.92), rgba(40, 22, 7, 0.85)) !important;
    border-top: 1px solid var(--dm-border); border-bottom: 1px solid var(--dm-border);
}
.facts-section .counter {
    padding: 15px; border-radius: 16px;
    background: rgba(18, 10, 4, 0.70); border: 1px solid rgba(255, 226, 148, 0.12);
    transition: all .3s ease;
}
.facts-section .counter:hover {
    border-color: rgba(255, 226, 148, 0.28);
    box-shadow: 0 0 20px rgba(214, 159, 38, 0.10);
}
.counter .counter-value, .counter h1 { font-family: var(--display) !important; }
/*** Facts End ***/

/*** Languages Scroll ***/
.languages-infrastructures-container { width: 100%; max-width: 1200px; margin: 2rem auto; padding: 1rem; overflow: hidden; }
.languages-infrastructures-container h2 { text-align: center; margin-bottom: 1rem; color: var(--cream) !important; font-size: 2rem; }
.languages-infrastructures-scroll { display: flex; overflow: hidden; position: relative; }
.languages-infrastructures-scroll-inner { display: flex; animation: scroll 20s linear infinite; }
.languages-infrastructures-scroll-inner img {
    flex: 0 0 auto; width: 60px; height: 60px; object-fit: contain;
    transition: all 0.3s ease; opacity: 0.6; filter: brightness(0.85) sepia(0.15);
}
.languages-infrastructures-scroll-inner img:hover {
    transform: scale(1.15); opacity: 1;
    filter: brightness(1.2) drop-shadow(0 0 8px rgba(214, 159, 38, 0.35));
}
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }
@media (max-width: 768px) { .languages-infrastructures-container h2 { font-size: 1.5rem; } .languages-infrastructures-scroll-inner img { width: 50px; height: 50px; } }
@media (max-width: 480px) { .languages-infrastructures-container h2 { font-size: 1.2rem; } .languages-infrastructures-scroll-inner img { width: 40px; height: 40px; } }
/*** Languages End ***/

/*** Services Start ***/
.services .services-item {
    background: linear-gradient(180deg, rgba(20, 11, 4, 0.90), rgba(40, 22, 7, 0.82)) !important;
    box-shadow: 0 14px 28px rgba(7, 3, 1, 0.20);
    width: 100%; height: 100%; border-radius: 22px; padding: 10px 0;
    position: relative; border: 1px solid rgba(255, 226, 148, 0.16);
    transition: all .4s ease; overflow: hidden;
}
.services .services-item::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--amber, #F0A842), transparent 70%); opacity: 0.85;
}
.services .services-item:nth-child(2)::before, .services .services-item:nth-child(5)::before { background: linear-gradient(90deg, var(--aqua, #2BA89E), transparent 70%); }
.services .services-item:nth-child(3)::before, .services .services-item:nth-child(6)::before { background: linear-gradient(90deg, var(--coral, #E87040), transparent 70%); }
.services .services-item:hover {
    border-color: rgba(255, 226, 148, 0.30);
    box-shadow: 0 22px 40px rgba(7, 3, 1, 0.30); transform: translateY(-5px);
}
.services-content::after {
    position: absolute; content: ""; width: 100%; height: 0; top: 0; left: 0;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(214, 159, 38, 0.85), rgba(43, 168, 158, 0.65));
    transition: .5s;
}
.services-item:hover .services-content::after { height: 100%; opacity: 1; }
.services-item:hover .services-content-icon { position: relative; z-index: 2; }
.services-item .services-content-icon i, .services-item .services-content-icon p { transition: .5s; }
.services-item .services-content-icon i { color: var(--gold-300, #efc756) !important; }
.services-item:hover .services-content-icon i { color: var(--cream, #fff8e9) !important; }
.services-item:hover .services-content-icon p { color: var(--cream, #fff8e9) !important; }
.services-item .services-content-icon h4 { font-family: var(--display) !important; text-transform: uppercase; letter-spacing: 0.02em; }
/*** Services End ***/

/*** Project Start ***/
.project-img { position: relative; padding: 15px; }
.project-img::before {
    content: ""; position: absolute; width: 150px; height: 150px; top: 0; left: 0;
    background: var(--aqua, #2BA89E); border-radius: 14px; z-index: -1; transition: .5s;
}
.project-img::after {
    content: ""; width: 150px; height: 150px; position: absolute; right: 0; bottom: 0;
    background: var(--gold-400, #d69f26); border-radius: 14px; z-index: -1; transition: .5s;
}
.project-content {
    position: absolute; width: 100%; height: 100%; top: 0; left: 0;
    display: flex; align-items: center; justify-content: center; opacity: 0;
}
.project-content a {
    display: inline-block; padding: 20px 25px;
    background: rgba(214, 159, 38, 0.88); backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 226, 148, 0.25); border-radius: 14px;
    transition: all .3s ease; color: #231305;
}
.project-content a:hover { box-shadow: 0 10px 24px rgba(214, 159, 38, 0.35); }
.project-item:hover .project-content { opacity: 1; transition: .5s; }
.project-item:hover .project-img::before, .project-item:hover .project-img::after { opacity: 0; }
.project-img img { border-radius: 14px; }
/*** Project End ***/

/*** Blog Start ***/
.blog-item {
    background: linear-gradient(180deg, rgba(20, 11, 4, 0.90), rgba(40, 22, 7, 0.82)) !important;
    border: 1px solid rgba(255, 226, 148, 0.14); border-radius: 22px;
    overflow: hidden; transition: all .3s ease;
}
.blog-item:hover { border-color: rgba(255, 226, 148, 0.28); box-shadow: 0 14px 28px rgba(7, 3, 1, 0.25); }
.blog-item .blog-btn { z-index: 2; }
.blog-btn .blog-btn-icon { height: 50px; position: relative; overflow: hidden; }
.blog-btn-icon .blog-icon-2 { display: flex; position: absolute; top: 6px; left: -140px; }
.blog-btn-icon:hover .blog-icon-2 { transition: 1s; left: 5px; top: 6px; padding-bottom: 5px; }
.blog-icon-1 { position: relative; top: -4px; }
.blog-btn-icon:hover .blog-icon-1 { top: 0; right: -140px; transition: 1s; }
.blog-item .blog-coment, .blog-item .blog-coments { background: rgba(18, 10, 4, 0.70) !important; border-color: var(--dm-border) !important; }
.blog-item img { border-radius: 22px 22px 0 0; }
/*** Blog End ***/

/*** Team Start ***/
.team-item {
    border-top: 4px solid var(--gold-400, #d69f26) !important;
    background: linear-gradient(180deg, rgba(20, 11, 4, 0.90), rgba(40, 22, 7, 0.82)) !important;
    border-radius: 0 0 22px 22px; transition: all .3s ease;
}
.team-item:hover { box-shadow: 0 14px 28px rgba(214, 159, 38, 0.12); }
.team-content::before {
    height: 200px; display: block; content: ""; position: relative; top: -101px;
    background: var(--gold-400, #d69f26);
    clip-path: polygon(50% 50%, 100% 50%, 50% 100%, 0% 50%); padding: 60px;
}
.team-img-icon { position: relative; margin-top: -200px; padding: 30px; padding-bottom: 0; }
.team-img { border: 15px solid var(--dm-bg-deep) !important; }
.team-img img { border: 10px solid var(--gold-400, #d69f26) !important; transition: .5s; }
.team-item:hover h4 { color: var(--gold-200, #f8dd8c) !important; }
.team-item:hover .team-img img { transform: scale(1.05); }
.team-carousel .owl-stage { position: relative; width: 100%; height: 100%; }
.team-carousel .owl-nav { position: absolute; top: -100px; right: 50px; display: flex; }
.team-carousel .owl-nav .owl-prev, .team-carousel .owl-nav .owl-next {
    width: 56px; height: 56px; border-radius: 56px; margin-left: 15px;
    background: linear-gradient(135deg, var(--gold-300, #efc756), var(--gold-400, #d69f26)) !important;
    color: #231305 !important; display: flex; align-items: center; justify-content: center;
    transition: .3s; box-shadow: 0 10px 24px rgba(214, 159, 38, 0.2);
}
.team-carousel .owl-nav .owl-prev:hover, .team-carousel .owl-nav .owl-next:hover {
    background: linear-gradient(135deg, #5CC8C0, #2BA89E) !important;
    color: #062220 !important; box-shadow: 0 10px 24px rgba(43, 168, 158, 0.25);
}
@media (max-width: 992px) {
    .team-carousel { margin-top: 3rem; }
    .team-carousel .owl-nav { top: -85px; left: 50%; right: auto; transform: translateX(-50%); margin-left: -15px; }
}
/*** Team End ***/

/*** Testimonial Start ***/
.testimonial-item {
    background: linear-gradient(180deg, rgba(20, 11, 4, 0.90), rgba(40, 22, 7, 0.82)) !important;
    border: 1px solid rgba(255, 226, 148, 0.14); border-radius: 22px; transition: all .4s ease;
}
.testimonial-carousel .owl-dots { margin-top: 15px; 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;
    background: var(--dm-bg-elevated); border-radius: 15px; transition: .5s; border: 1px solid var(--dm-border);
}
.testimonial-carousel .owl-dot.active {
    width: 30px; background: var(--gold-400, #d69f26);
    border-color: var(--gold-400, #d69f26); box-shadow: 0 0 10px rgba(214, 159, 38, 0.35);
}
.testimonial-carousel .owl-item.center { position: relative; z-index: 1; }
.testimonial-carousel .owl-item .testimonial-item { transition: .5s; }
.testimonial-carousel .owl-item.center .testimonial-item {
    background: linear-gradient(180deg, rgba(28, 16, 5, 0.95), rgba(48, 27, 8, 0.90)) !important;
    box-shadow: 0 22px 40px rgba(7, 3, 1, 0.25);
    border-color: rgba(255, 226, 148, 0.28) !important;
}
/*** Testimonial End ***/

/*** Contact Start ***/
.contact-detail::before {
    position: absolute; content: ""; height: 50%; width: 100%; top: 0; left: 0;
    background: linear-gradient(rgba(18, 10, 4, 0.90), rgba(40, 22, 6, 0.60));
    border-radius: 14px; z-index: -1;
}
.contact-map {
    background: rgba(18, 10, 4, 0.80) !important;
    border: 1px solid var(--dm-border); border-radius: 22px;
}
.contact-form {
    background: linear-gradient(180deg, rgba(20, 11, 4, 0.92), rgba(40, 22, 7, 0.85)) !important;
    border: 1px solid rgba(255, 226, 148, 0.16); border-radius: 22px;
}
.contact-form .btn { box-shadow: 0 10px 24px rgba(214, 159, 38, 0.2); }
.contact-form .btn:hover { box-shadow: 0 14px 30px rgba(214, 159, 38, 0.35); }
/*** Contact End ***/

/*** Footer Start ***/
.footer {
    background: linear-gradient(180deg, rgba(14, 8, 3, 0.98), rgba(18, 10, 3, 0.99)) !important;
    border-top: 1px solid rgba(255, 226, 148, 0.10);
}
.footer .short-link a, .footer .help-link a, .footer .contact-link a {
    transition: all .3s ease; color: var(--muted, #c7aa69) !important;
    font-family: var(--body, "Space Grotesk", sans-serif);
}
.footer .short-link a:hover, .footer .help-link a:hover, .footer .contact-link a:hover {
    letter-spacing: 1px; color: var(--gold-200, #f8dd8c) !important;
}
.footer .hightech-link a:hover {
    background: linear-gradient(135deg, var(--gold-300, #efc756), var(--gold-400, #d69f26)) !important;
    border: 0;
}
.footer .hightech-link a:hover i { color: #231305 !important; }
.footer img { filter: brightness(1.3) contrast(1.1); }
.footer .container-fluid.bg-primary {
    background: linear-gradient(180deg, rgba(18, 10, 4, 0.95), rgba(26, 16, 5, 0.92)) !important;
    border-top: 1px solid rgba(255, 226, 148, 0.08);
}
/*** Footer End ***/

/*** WhatsApp Button ***/
.whatsapp-button {
    position: fixed; bottom: 20px; right: 20px;
    background-color: #25D366; border: none; padding: 15px; border-radius: 50%;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3); z-index: 1000;
    transition: all 0.3s ease; cursor: pointer; text-decoration: none;
    display: flex; align-items: center; justify-content: center;
}
.whatsapp-button:hover { background-color: #1DA851; box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45); transform: translateY(-2px); }
.whatsapp-button img { width: 30px; height: 30px; }
/*** WhatsApp End ***/

/*** About Page ***/
.about-img img { border-radius: 22px; border: 2px solid rgba(255, 226, 148, 0.14); }

/*** Misc ***/
.fas.fa-star { color: var(--gold-300, #efc756) !important; }
.rounded-circle.bg-primary { box-shadow: 0 10px 24px rgba(214, 159, 38, 0.2); }
.rounded-circle.bg-secondary { box-shadow: 0 10px 24px rgba(43, 168, 158, 0.2); }
.container-fluid.wow.fadeIn { background-color: transparent; }
