/* ==========================================================================
   GeoTech Design Consultants — visual effects layer
   Load AFTER css/style.css. Nothing in style.css is modified.
   Sections:
     1. Base polish (selection, scrollbar, scroll progress)
     2. Section headings
     3. Buttons
     4. Hero carousel (Ken Burns)
     5. Inner-page header (blueprint grid)
     6. Cards (about image, features, service cards, sectors, blog)
     7. FAQ accordion + testimonials
     8. Floating call / WhatsApp pulse
     9. Footer (glass cards + India service map)
    10. Reduced motion
   ========================================================================== */

/* ---------- 1. Base polish ---------- */
html { scroll-padding-top: 110px; }   /* anchors (service.html#...) clear the sticky navbar */
::selection { background: var(--bs-secondary); color: #fff; }

html { scrollbar-color: var(--bs-secondary) #eef0f4; scrollbar-width: thin; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #eef0f4; }
::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--bs-secondary), #c93f00);
    border-radius: 10px;
    border: 2px solid #eef0f4;
}

.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 3px;
    z-index: 100000;
    background: linear-gradient(90deg, var(--bs-secondary), #ffb27a);
    transform: scaleX(0);
    transform-origin: 0 50%;
    pointer-events: none;
}

/* ---------- 2. Section headings ---------- */
/* small label above heading gets side lines */
.text-center.mx-auto.pb-5 > p.text-secondary {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    letter-spacing: 2px;
    font-weight: 600;
}
.text-center.mx-auto.pb-5 > p.text-secondary::before,
.text-center.mx-auto.pb-5 > p.text-secondary::after {
    content: "";
    width: 34px;
    height: 2px;
    background: currentColor;
    opacity: .6;
}

/* animated underline bar below section headings */
.text-center.mx-auto.pb-5 > h2::after,
.about-item-content > h2::after {
    content: "";
    display: block;
    width: 0;
    height: 4px;
    margin: 18px auto 0;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--bs-secondary), #ffb27a);
    transition: width .9s ease .5s;
}
.wow.animated .text-center.mx-auto.pb-5 > h2::after,
.text-center.mx-auto.pb-5.animated > h2::after,
.about-item-content.animated > h2::after,
.wow.animated .about-item-content > h2::after {
    width: 90px;
}

/* ---------- 3. Buttons ---------- */
.btn { position: relative; overflow: hidden; isolation: isolate; }
.btn.back-to-top { position: fixed; }   /* keep the fixed position from style.css */
.btn:hover { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(0, 18, 72, .25); }
.btn:active { transform: translateY(-1px); }

/* light sweep */
.btn::after {
    content: "";
    position: absolute;
    top: 0; left: -80%;
    width: 50%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .45), transparent);
    transform: skewX(-20deg);
    transition: left .7s ease;
    z-index: -1;
    pointer-events: none;
}
.btn:hover::after { left: 130%; }

/* ---------- 4. Hero carousel ---------- */
@keyframes kenburns {
    from { transform: scale(1); }
    to   { transform: scale(1.14); }
}
#carouselId .carousel-item.active img {
    animation: kenburns 10s ease-out both;
    transform-origin: 60% 50%;
}
/* brand-tinted overlay instead of flat black */
#carouselId .carousel-inner .carousel-item::after {
    background: linear-gradient(100deg, rgba(0, 18, 72, .82) 0%, rgba(0, 18, 72, .45) 55%, rgba(0, 0, 0, .25) 100%);
}
#carouselId .carousel-caption h1 { text-shadow: 0 4px 24px rgba(0, 0, 0, .45); }
#carouselId .carousel-caption p.text-secondary { letter-spacing: 3px; }

/* ---------- 5. Inner-page header ---------- */
@keyframes gridDrift {
    from { background-position: 0 0, 0 0; }
    to   { background-position: 44px 44px, 44px 44px; }
}
.bg-breadcrumb { padding: 90px 0 80px !important; }
.bg-breadcrumb::before {
    content: "";
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
    background-size: 44px 44px;
    animation: gridDrift 6s linear infinite;
    pointer-events: none;
}
.bg-breadcrumb::after {
    content: "";
    position: absolute;
    right: -140px; top: -140px;
    width: 380px; height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 94, 21, .45), transparent 70%);
    pointer-events: none;
}
.bg-breadcrumb > .container { position: relative; z-index: 1; }
.bg-breadcrumb h4.display-4::after {
    content: "";
    display: block;
    width: 80px; height: 4px;
    margin: 16px auto 0;
    border-radius: 4px;
    background: var(--bs-secondary);
}
.bg-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255, 255, 255, .6); }
.bg-breadcrumb .breadcrumb-item a { transition: .3s; }
.bg-breadcrumb .breadcrumb-item a:hover { color: var(--bs-secondary); }
@media (min-width: 992px) {
    .bg-breadcrumb { background-attachment: fixed; }
}

/* ---------- 6. Cards ---------- */
/* about image: offset frame that shifts on hover */
.about img.rounded {
    box-shadow: 16px 16px 0 rgba(255, 94, 21, .18);
    transition: transform .5s ease, box-shadow .5s ease;
}
.about img.rounded:hover {
    transform: translate(-5px, -5px);
    box-shadow: 24px 24px 0 rgba(255, 94, 21, .3);
}

/* feature (Study / Design / ...) */
.feature .feature-item { overflow: hidden; border-radius: 6px; }
.feature .feature-item::before {
    content: "";
    position: absolute; left: 0; top: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--bs-secondary), #ffb27a);
    transform: scaleX(0);
    transform-origin: 0 50%;
    transition: transform .5s ease;
}
.feature .feature-item:hover::before { transform: scaleX(1); }
.feature .feature-item:hover { transform: translateY(-8px); }
.feature .feature-item .feature-img { transition: .5s; border-radius: 6px; }
.feature .feature-item:hover .feature-img {
    transform: translateY(-4px) rotate(-3deg) scale(1.06);
    box-shadow: 0 14px 26px rgba(255, 94, 21, .35);
}

/* service overview cards */
.svc-card { position: relative; }
.svc-card::after {
    content: "";
    position: absolute; left: 0; bottom: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--bs-secondary), #ffb27a);
    transform: scaleX(0);
    transform-origin: 0 50%;
    transition: transform .5s ease;
}
.svc-card:hover::after { transform: scaleX(1); }
.svc-card .svc-card-icon { transition: transform .5s ease, box-shadow .5s ease; }
.svc-card:hover .svc-card-icon { transform: rotate(-8deg) scale(1.08); box-shadow: 0 10px 20px rgba(255, 94, 21, .35); }
.svc-card .svc-card-img { position: relative; }
.svc-card .svc-card-img::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 18, 72, .55));
    opacity: 0;
    transition: opacity .5s ease;
}
.svc-card:hover .svc-card-img::after { opacity: 1; }

/* "Where we work" sector tags */
.sector-tag { border-top: 3px solid transparent; }
.sector-tag:hover { border-top-color: var(--bs-secondary); }
.sector-tag:hover .sector-tag-icon { transform: scale(1.1) rotate(-6deg); box-shadow: 0 8px 18px rgba(255, 94, 21, .35); }
.sector-tag .sector-tag-icon { transition: background .3s ease, transform .4s ease, box-shadow .4s ease; }

/* blog cards */
.blog .blog-item { transition: transform .4s ease; }
.blog .blog-item:hover { transform: translateY(-6px); }
.blog .blog-item .blog-img::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(0, 18, 72, .6));
    opacity: 0;
    transition: opacity .5s ease;
    pointer-events: none;
}
.blog .blog-item:hover .blog-img::after { opacity: 1; }

/* ---------- 7. FAQ accordion ---------- */
.accordion-item { border-radius: 8px !important; overflow: hidden; margin-bottom: 12px; border: 1px solid rgba(0, 18, 72, .1); }
.accordion-button { transition: .3s; font-weight: 600; }
.accordion-button:hover { color: var(--bs-secondary); }
.accordion-button:not(.collapsed) {
    color: var(--bs-primary);
    background: rgba(255, 94, 21, .07);
    box-shadow: inset 4px 0 0 var(--bs-secondary);
}
.accordion-button:focus { box-shadow: 0 0 0 .2rem rgba(255, 94, 21, .2); }


/* ---------- 8. Floating call / WhatsApp pulse ---------- */
@keyframes floatPulse {
    0%   { transform: scale(1);   opacity: .7; }
    100% { transform: scale(1.7); opacity: 0; }
}
.call-float::before,
.whatsapp-float::before {
    content: "";
    position: absolute; inset: 0;
    border-radius: 50%;
    background: inherit;
    z-index: -1;
    animation: floatPulse 2s ease-out infinite;
}
.whatsapp-float::before { animation-delay: 1s; }
.call-float:hover, .whatsapp-float:hover { box-shadow: 0 8px 22px rgba(0, 0, 0, .35); }

/* ---------- 9. Footer ---------- */
.footer { position: relative; }
.footer::before {
    content: "";
    position: absolute; left: 0; top: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, transparent, var(--bs-secondary), #ffb27a, var(--bs-secondary), transparent);
}

.footer .footer-card {
    height: 100%;
    padding: 30px 28px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .28);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    transition: transform .4s ease, border-color .4s ease;
}
.footer .footer-card:hover { transform: translateY(-4px); border-color: rgba(255, 94, 21, .45); }

.footer .footer-title {
    position: relative;
    margin-bottom: 26px;
    padding-bottom: 14px;
    font-size: 1.35rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--bs-secondary);
}
.footer .footer-title::after {
    content: "";
    position: absolute; left: 0; bottom: 0;
    width: 60px; height: 3px;
    border-radius: 3px;
    background: var(--bs-secondary);
}

.footer .footer-card p { color: rgba(255, 255, 255, .78); line-height: 1.8; }

/* contact rows (address / phone / email) */
.footer .fc-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    margin-top: 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .06);
    color: #fff;
    transition: .4s;
}
.footer .fc-item:hover { background: rgba(255, 94, 21, .16); transform: translateX(6px); letter-spacing: 0; }
.footer .fc-icon {
    flex: 0 0 44px;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: var(--bs-secondary);
    color: #fff;
    font-size: 16px;
    transition: transform .5s ease;
}
.footer .fc-item:hover .fc-icon { transform: rotate(360deg); }
.footer .fc-item small {
    display: block;
    line-height: 1.2;
    margin-bottom: 3px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--bs-secondary);
}
.footer .fc-item div span { display: block; line-height: 1.45; color: #fff; font-size: .95rem; }

/* quick links */
.footer .footer-links { display: flex; flex-direction: column; }
.footer a { text-decoration: none; }
.footer .footer-links a {
    display: flex;
    align-items: center;
    line-height: 34px;
    color: rgba(255, 255, 255, .85);
    transition: .3s;
}
.footer .footer-links a i { color: var(--bs-secondary); transition: transform .3s; }
.footer .footer-links a:hover { color: var(--bs-secondary); transform: translateX(6px); letter-spacing: 0; }
.footer .footer-links a:hover i { transform: translateX(3px); }
.footer .footer-links .sub-head {
    margin: 14px 0 4px;
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .5);
}
.footer .footer-links .sub-link { padding-left: 14px; font-size: .95rem; }

.footer .footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer .footer-social a {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255, 94, 21, .15);
    border: 1px solid rgba(255, 94, 21, .55);
    color: #fff;
    transition: .4s;
}
.footer .footer-social a:hover { background: var(--bs-secondary); transform: translateY(-5px) rotate(360deg); }

/* ----- India service-network map ----- */
.india-map {
    position: relative;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
}
.india-map > img {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 12px 22px rgba(0, 0, 0, .45));
}

.india-map .map-pin {
    position: absolute;
    width: 0; height: 0;               /* the pin's tip sits exactly on left/top */
    cursor: pointer;
    z-index: 2;
}
.india-map .map-pin .pin-icon {
    position: absolute;
    left: 0; bottom: 0;
    transform: translateX(-50%);
    font-size: 20px;
    line-height: 1;
    color: var(--bs-secondary);
    text-shadow: 0 2px 3px rgba(0, 0, 0, .35);
    transform-origin: 50% 100%;
    animation: pinBounce 2.6s ease-in-out infinite;
    animation-delay: var(--d, 0s);
}
.india-map .map-pin::before {          /* pulse ring on the ground */
    content: "";
    position: absolute;
    left: -9px; top: -3px;
    width: 18px; height: 7px;
    border-radius: 50%;
    background: rgba(255, 94, 21, .55);
    animation: pinPulse 2.2s ease-out infinite;
    animation-delay: var(--d, 0s);
}
.india-map .map-pin .pin-label {
    position: absolute;
    white-space: nowrap;
    font-size: 9px;
    font-weight: 600;
    line-height: 1;
    color: #001248;
    padding: 2px 4px;
    border-radius: 3px;
    background: rgba(255, 255, 255, .78);
    opacity: 0;
    transition: opacity .3s, transform .3s;
    pointer-events: none;
}
/* label placement: b = below, t = above, l = left, r = right */
.india-map .map-pin[data-pos="b"] .pin-label { top: 5px;  left: 0; transform: translateX(-50%); }
.india-map .map-pin[data-pos="t"] .pin-label { bottom: 27px; left: 0; transform: translateX(-50%); }
.india-map .map-pin[data-pos="l"] .pin-label { top: -17px; right: 9px; }
.india-map .map-pin[data-pos="r"] .pin-label { top: -17px; left: 9px; }

.india-map .map-pin:hover,
.india-map .map-pin.active { z-index: 5; }
.india-map .map-pin:hover .pin-icon,
.india-map .map-pin.active .pin-icon { animation: none; transform: translateX(-50%) scale(1.35); }
.india-map .map-pin:hover .pin-label,
.india-map .map-pin.active .pin-label {
    opacity: 1;
    padding: 4px 8px;
    border-radius: 6px;
    background: var(--bs-primary);
    color: #fff;
    font-size: 11px;
    z-index: 6;
}

@media (min-width: 520px) {            /* map is big enough to show every label */
    .india-map .map-pin .pin-label { opacity: 1; }
}

@keyframes pinBounce {
    0%, 70%, 100% { transform: translateX(-50%) translateY(0); }
    80%           { transform: translateX(-50%) translateY(-5px); }
    90%           { transform: translateX(-50%) translateY(0); }
}
@keyframes pinPulse {
    0%   { transform: scale(.3); opacity: .9; }
    100% { transform: scale(2.4); opacity: 0; }
}

/* copyright links */
.copyright a.border-bottom { transition: .3s; }
.copyright a.border-bottom:hover { color: var(--bs-secondary) !important; border-color: var(--bs-secondary) !important; }

/* ---------- 10. Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}


/* ==========================================================================
   11. Where We Work — expanding vertical sector panels
   ========================================================================== */
.sectors-wrap {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #001248 0%, #00256f 100%);
}
.sectors-wrap::before {                 /* blueprint grid */
    content: "";
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 44px 44px;
    pointer-events: none;
}
.sectors-wrap > .container { position: relative; }

.sector-know {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 6px 6px 6px 22px;
    border-radius: 50px;
    background: var(--bs-secondary);
    color: #fff;
    font-weight: 600;
    transition: .4s;
}
.sector-know span {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: var(--bs-dark);
}
.sector-know span i { transform: rotate(45deg); transition: .4s; }
.sector-know:hover { color: #fff; background: #ff7a3d; transform: translateY(-3px); }
.sector-know:hover span i { transform: rotate(90deg); }

.sector-accordion {
    display: flex;
    gap: 14px;
    height: 470px;
}
.sector-panel {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    display: block;
    overflow: hidden;
    border-radius: 26px;
    color: #fff;
    background: #0a1a4a;
    text-decoration: none;
    isolation: isolate;
    cursor: pointer;
    transition: flex-grow .75s cubic-bezier(.22, .8, .24, 1);
}
.sector-panel.active { flex-grow: 6; }
.sector-panel:hover, .sector-panel:focus { color: #fff; }

.sector-panel .sector-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.08);
    transition: transform 1.2s ease;
    z-index: -2;
}
.sector-panel.active .sector-bg { transform: scale(1); }
.sector-panel::before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0, 18, 72, .15) 0%, rgba(0, 18, 72, .72) 100%);
    transition: background .6s ease;
    z-index: -1;
}
.sector-panel.active::before {
    background: linear-gradient(180deg, rgba(0, 0, 0, .05) 35%, rgba(0, 0, 0, .82) 100%);
}

/* collapsed: vertical title */
.sector-vlabel {
    position: absolute;
    left: 50%; bottom: 26px;
    writing-mode: vertical-rl;
    transform: translateX(-50%) rotate(180deg);
    white-space: nowrap;
    font-family: "Playfair Display", serif;
    font-size: 1.55rem;
    font-weight: 600;
    letter-spacing: .5px;
    transition: opacity .3s ease, color .3s;
}
.sector-panel:not(.active):hover .sector-vlabel { color: #ffb27a; }
.sector-panel.active .sector-vlabel { opacity: 0; }

/* expanded: tagline + title + button */
.sector-open {
    position: absolute;
    left: 0; bottom: 0;
    width: 100%;
    min-width: 400px;
    padding: 30px 32px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .3s ease, transform .3s ease;
    pointer-events: none;
}
.sector-panel.active .sector-open {
    opacity: 1;
    transform: none;
    transition: opacity .5s ease .35s, transform .6s ease .35s;
    pointer-events: auto;
}
.sector-tagline {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    max-width: 440px;
    padding-bottom: 16px;
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .35);
    font-size: .98rem;
    font-weight: 500;
    line-height: 1.5;
}
.sector-tagline i { margin-top: 4px; color: var(--bs-secondary); }
.sector-name {
    display: block;
    margin-bottom: 20px;
    font-family: "Playfair Display", serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.15;
}
.sector-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 7px 7px 7px 24px;
    border-radius: 50px;
    background: #fff;
    color: var(--bs-dark);
    font-weight: 600;
    transition: .4s;
}
.sector-btn i {
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: var(--bs-secondary);
    color: #fff;
    transform: rotate(45deg);
    transition: .4s;
}
.sector-panel:hover .sector-btn { background: #fff4ee; }
.sector-panel:hover .sector-btn i { transform: rotate(90deg); }

@media (max-width: 991px) {
    .sector-accordion { height: 430px; gap: 10px; }
    .sector-vlabel { font-size: 1.2rem; }
    .sector-name { font-size: 1.8rem; }
}
@media (max-width: 767px) {            /* stack as an accordion */
    .sector-accordion { flex-direction: column; height: auto; gap: 10px; }
    .sector-panel { flex: none; height: 76px; transition: height .6s cubic-bezier(.22, .8, .24, 1); }
    .sector-panel.active { height: 330px; }
    .sector-vlabel {
        writing-mode: horizontal-tb;
        transform: translateY(-50%);
        left: 24px; top: 38px; bottom: auto;
        font-size: 1.25rem;
    }
    .sector-open { min-width: 0; padding: 22px; }
}

/* ==========================================================================
   12. Testimonials — photo background + dark card
   ========================================================================== */
.testi-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background: #0a1230;
}
.testi-section::before {
    content: "";
    position: absolute; inset: 0;
    background: url(../img/carousel-3.jpg) 20% center / cover no-repeat;
    filter: grayscale(.85) brightness(.9);
}
.testi-section::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(0, 10, 40, .55) 0%, rgba(0, 10, 40, .15) 60%, rgba(0, 10, 40, .5) 100%);
}
.testi-section > .container { z-index: 2; }

.testi-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 50px; height: 50px;
    margin-top: -25px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, .7);
    color: #fff;
    transition: .3s;
}
.testi-arrow:hover { background: var(--bs-secondary); transform: scale(1.1); }
.testi-prev { left: 28px; }
.testi-next { right: 28px; }

.testi-card {
    position: relative;
    padding: 46px 48px 40px;
    border-radius: 26px;
    background: rgba(0, 22, 89, .93);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .4);
    color: #fff;
    overflow: hidden;
}
.testi-card::before {                   /* faint rounded-tile pattern like the reference */
    content: "";
    position: absolute;
    right: -40px; bottom: -40px;
    width: 260px; height: 260px;
    border-radius: 40px;
    background: rgba(255, 255, 255, .04);
    transform: rotate(18deg);
    box-shadow: -70px -20px 0 rgba(255, 255, 255, .03), 20px -90px 0 rgba(255, 255, 255, .03);
    pointer-events: none;
}
.testi-card > * { position: relative; }
.testi-title {
    margin-bottom: 18px;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--bs-secondary);
}
.testi-card .carousel-inner { min-height: 190px; }
.testi-quote {
    margin-bottom: 26px;
    font-size: 1.2rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, .95);
}
.testi-person { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
    width: 54px; height: 54px;
    flex: 0 0 54px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: var(--bs-secondary);
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
}
.testi-name { margin: 0 0 2px; font-size: 1.1rem; color: #fff; }
.testi-stars { font-size: .8rem; color: #ffc107; }
.testi-stars i { margin-right: 2px; }

.testi-dots {
    position: static;
    justify-content: flex-start;
    margin: 26px 0 0;
}
.testi-dots [data-bs-target] {
    width: 30px; height: 4px;
    margin: 0 8px 0 0;
    border: 0; border-radius: 4px;
    background: #fff;
    opacity: .35;
    transition: .3s;
}
.testi-dots .active { background: var(--bs-secondary); opacity: 1; width: 44px; }

@media (max-width: 991px) {
    .testi-section { padding: 60px 0 100px; }
    .testi-section::before { background-position: 30% center; }
    .testi-card { padding: 34px 26px 30px; }
    .testi-quote { font-size: 1.05rem; }
    .testi-arrow { top: auto; bottom: 26px; margin-top: 0; }
    .testi-prev { left: calc(50% - 60px); }
    .testi-next { right: calc(50% - 60px); }
}

/* ==========================================================================
   13. Projects We Deliver + service page helpers
   ========================================================================== */
.proj-chips span {
    display: inline-block;
    margin: 0 8px 10px 0;
    padding: 7px 16px;
    border-radius: 50px;
    background: rgba(255, 94, 21, .1);
    color: #b63c00;
    font-size: .92rem;
    font-weight: 500;
    transition: .3s;
}
.proj-chips span:hover { background: var(--bs-secondary); color: #fff; transform: translateY(-2px); }
.proj-for { font-size: .92rem; font-weight: 600; color: var(--bs-dark); }

.svc-row { margin-bottom: 4.5rem; }
.svc-row:last-child { margin-bottom: 0; }
.svc-body p { line-height: 1.8; }
.svc-applies a {
    display: inline-block;
    margin: 0 8px 6px 0;
    padding: 5px 14px;
    border-radius: 50px;
    border: 1px solid var(--bs-secondary);
    color: var(--bs-secondary);
    font-size: .9rem;
    font-weight: 600;
    transition: .3s;
}
.svc-applies a:hover { background: var(--bs-secondary); color: #fff; }

/* nested Services menu: give it a little polish */
.navbar .dropdown-menu .dropdown-item { transition: .3s; }
.navbar .dropdown-menu .dropdown-item:hover { color: var(--bs-secondary); padding-left: 1.4rem; background: transparent; }
