:root {
    --brand-orange: #f26522;
    --brand-orange-dark: #cf4f14;
    --brand-yellow: #f6c433;
    --brand-charcoal: #343434;
    --brand-slate: #676767;
    --brand-light: #f7f7f5;
    --brand-white: #ffffff;
    --shadow-soft: 0 20px 50px rgba(28, 28, 28, 0.10);
    --shadow-card: 0 14px 35px rgba(242, 101, 34, 0.12);
    --radius-xl: 28px;
}

.admin-edit-link {
    position: absolute;
    z-index: 30;
    right: 18px;
    top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
    box-shadow: 0 12px 30px rgba(52, 52, 52, 0.18);
    font-weight: 800;
    font-size: 0.9rem;
    text-decoration: none;
    border: 0;
    cursor: pointer;
}

body:not(.admin-front-editing) .admin-edit-link,
body:not(.admin-front-editing) .front-delete-form,
body:not(.admin-front-editing) .front-video-delete,
body:not(.admin-front-editing) .inline-image-form,
body:not(.admin-front-editing) .map-edit-btn {
    display: none !important;
}

.admin-edit-link:hover {
    color: #fff;
    transform: translateY(-2px);
}

.front-delete-form,
.front-video-delete {
    position: absolute;
    z-index: 35;
    top: 18px;
    left: 18px;
}

.front-video-delete {
    top: 12px;
    left: 12px;
}

.front-delete-btn {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: #dc3545;
    box-shadow: 0 12px 26px rgba(52, 52, 52, 0.25);
}

.front-delete-btn:hover {
    background: #bb2d3b;
}

.front-logo-edit-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.front-logo-edit-form {
    position: absolute;
    right: -8px;
    bottom: -16px;
    z-index: 50;
    display: none;
}

.front-footer-logo-edit-wrap .front-logo-edit-form {
    right: auto;
    left: 10px;
    bottom: -22px;
}

.admin-front-editing .front-logo-edit-form {
    display: block;
}

.front-logo-edit-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    max-width: min(220px, 72vw);
    padding: 8px 11px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
    box-shadow: 0 12px 28px rgba(31, 31, 31, 0.22);
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.front-logo-edit-btn:hover {
    filter: brightness(0.96);
}

.front-edit-status {
    position: fixed;
    top: 145px;
    right: 1px;
    z-index: 2000;
    display: none;
    align-items: center;
    gap: 9px;
    max-width: min(260px, calc(100vw - 36px));
    padding: 12px 15px;
    border-radius: 14px;
    color: #fff;
    background: rgba(52, 52, 52, 0.94);
    box-shadow: 0 18px 40px rgba(31, 31, 31, 0.22);
    font-size: 14px;
    font-weight: 800;
}

.admin-front-editing .front-edit-status {
    display: inline-flex;
}

.sticky-social-bar {
    position: fixed;
    left: 5px;
    top: 70%;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px 8px;
    border: 1px solid rgba(255, 255, 255, 0.64);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 46px rgba(31, 31, 31, 0.16);
    backdrop-filter: blur(16px);
    transform: translateY(-50%);
}

.sticky-social-bar a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--brand-charcoal);
    background: linear-gradient(145deg, #ffffff, #f8f8f8);
    border: 1px solid rgba(52, 52, 52, 0.08);
    box-shadow: 0 10px 22px rgba(31, 31, 31, 0.08);
    font-size: 18px;
    text-decoration: none;
    transition: transform 0.25s ease, color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.sticky-social-bar a:hover,
.sticky-social-bar a:focus-visible {
    color: #fff;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
    box-shadow: 0 14px 28px rgba(242, 101, 34, 0.28);
    transform: translateX(5px) scale(1.08);
}

.sticky-social-bar a::after {
    content: attr(title);
    position: absolute;
    left: calc(100% + 12px);
    top: 50%;
    padding: 7px 10px;
    border-radius: 999px;
    color: #fff;
    background: rgba(52, 52, 52, 0.94);
    box-shadow: 0 10px 24px rgba(31, 31, 31, 0.18);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translate(-6px, -50%);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.sticky-social-bar a:hover::after,
.sticky-social-bar a:focus-visible::after {
    opacity: 1;
    transform: translate(0, -50%);
}

.sticky-social-bar .social-facebook {
    color: #1877f2;
}

.sticky-social-bar .social-instagram {
    color: #e4405f;
}

.sticky-social-bar .social-linkedin {
    color: #0a66c2;
}

.sticky-social-bar .social-youtube {
    color: #ff0000;
}

.sticky-social-bar .social-twitter {
    color: #000000;
}

.sticky-social-bar .social-whatsapp {
    color: #25d366;
}

.sticky-social-bar .social-facebook:hover,
.sticky-social-bar .social-facebook:focus-visible {
    background: #1877f2;
}

.sticky-social-bar .social-instagram:hover,
.sticky-social-bar .social-instagram:focus-visible {
    background: linear-gradient(135deg, #f58529, #dd2a7b 52%, #8134af);
}

.sticky-social-bar .social-linkedin:hover,
.sticky-social-bar .social-linkedin:focus-visible {
    background: #0a66c2;
}

.sticky-social-bar .social-youtube:hover,
.sticky-social-bar .social-youtube:focus-visible {
    background: #ff0000;
}

.sticky-social-bar .social-twitter:hover,
.sticky-social-bar .social-twitter:focus-visible {
    background: #000000;
}

.sticky-social-bar .social-whatsapp:hover,
.sticky-social-bar .social-whatsapp:focus-visible {
    background: #25d366;
}

.front-admin-modal {
    border: 0;
    border-radius: 18px;
    overflow: hidden;
}

.front-admin-modal .modal-header {
    color: #fff;
    background: linear-gradient(135deg, var(--brand-charcoal), var(--brand-orange-dark));
}

.front-admin-modal .btn-close {
    filter: invert(1);
}

.front-admin-modal .form-label,
.front-mini-form h6 {
    font-weight: 800;
    color: var(--brand-charcoal);
}

.front-mini-form {
    height: 100%;
    padding: 18px;
    border: 1px solid rgba(52, 52, 52, 0.1);
    border-radius: 14px;
    background: #fff;
}

.service-slide-card {
    position: relative;
    color: inherit;
    text-decoration: none;
}

.service-slide-card:hover {
    color: inherit;
}

.testimonial-card {
    position: relative;
}

.inline-image-form {
    position: absolute;
    z-index: 25;
    top: 18px;
    right: 18px;
}

.inline-image-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: rgba(52, 52, 52, 0.88);
    box-shadow: 0 10px 24px rgba(52, 52, 52, 0.22);
    font-size: 0.86rem;
    font-weight: 800;
}

.inline-image-btn:hover {
    background: var(--brand-orange);
}

.inline-editable {
    max-width: 100%;
    border-radius: 8px;
    cursor: text;
    overflow-wrap: anywhere;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.inline-editable:hover {
    background: rgba(242, 101, 34, 0.08);
    box-shadow: 0 0 0 4px rgba(242, 101, 34, 0.08);
}

.inline-about-input {
    display: block;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding: 8px 10px;
    border: 2px solid var(--brand-orange);
    border-radius: 10px;
    color: var(--brand-charcoal);
    background: #fff;
    font: inherit;
    font-weight: inherit;
    line-height: inherit;
    box-shadow: 0 12px 28px rgba(52, 52, 52, 0.14);
    overflow-wrap: anywhere;
    white-space: normal;
}

textarea.inline-about-input {
    min-height: 96px;
    resize: vertical;
}

.exp-badge .inline-about-input {
    min-width: 96px;
    text-align: center;
}

.inline-image-form-small {
    top: 0;
    right: 0;
}

.inline-image-form-small .inline-image-btn {
    width: 36px;
    height: 36px;
    justify-content: center;
    padding: 0;
}

section,
.hero {
    position: relative;
}

/* Global Text Brand Color */
.text-brand {
    color: var(--brand-orange) !important;
}
/*-------------------------------*/
/* Custom Styles for "About Us" */
.premium-about {
    padding: 100px 0;
    overflow: hidden;
    background: #fdfdfd;
}

.about-visual-wrapper {
    position: relative;
    padding: 20px;
}

.rounded-custom {
    border-radius: 30px;
    transition: transform 0.5s ease;
}

.main-image-container:hover .rounded-custom {
    transform: scale(1.02);
}

/* Floating Badge */
.exp-badge {
    position: absolute;
    bottom: -20px;
    right: 0;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
    color: #fff;
    padding: 25px 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    border: 3px solid #fff;
    animation: float 4s ease-in-out infinite;
}

.exp-badge .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

/* Decorative Background Blob */
.blob-decoration {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(242, 101, 34, 0.18), transparent 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(50px);
}

/* Text Styling */
.text-outline {
    -webkit-text-stroke: 1px var(--brand-orange);
    color: transparent;
}

.btn-premium {
    padding: 14px 35px;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
    color: #fff;
    border-radius: 50px;
    position: relative;
    transition: all 0.3s;
    border: none;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(242, 101, 34, 0.25);
}

.btn-premium:hover {
    background: var(--brand-charcoal);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(52, 52, 52, 0.15);
    color: #fff;
}

/* Features Grid Styling */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--brand-charcoal);
    background: rgba(242, 101, 34, 0.06);
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid rgba(242, 101, 34, 0.12);
}

.feature-item i {
    color: var(--brand-orange);
    font-size: 1.2rem;
}

/* Mission & Vision Section */
#mission-vision .row {
    perspective: 1200px;
}

.mv-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    padding: 45px 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.9);
    border-left: 1px solid rgba(255, 255, 255, 0.9);
    z-index: 1;
}

.mv-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(242, 101, 34, 0.05), rgba(246, 196, 51, 0.12));
    z-index: -1;
    transition: opacity 0.5s ease;
    opacity: 0;
}

.mv-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.6) 0%, transparent 40%, transparent 60%, rgba(255, 255, 255, 0.2) 100%);
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.5s ease;
    opacity: 0.3;
}

section#mission-vision .col-md-6:first-child .mv-card:hover {
    transform: translateY(-12px) rotateX(8deg) rotateY(6deg) scale(1.02) !important;
    box-shadow: -20px 25px 45px rgba(242, 101, 34, 0.15), 10px -10px 25px rgba(255, 255, 255, 0.9);
    border-color: rgba(242, 101, 34, 0.3);
}

section#mission-vision .col-md-6:last-child .mv-card:hover {
    transform: translateY(-12px) rotateX(8deg) rotateY(-6deg) scale(1.02) !important;
    box-shadow: 20px 25px 45px rgba(242, 101, 34, 0.15), -10px -10px 25px rgba(255, 255, 255, 0.9);
    border-color: rgba(242, 101, 34, 0.3);
}

.mv-card:hover::before, .mv-card:hover::after {
    opacity: 1;
}

.mv-card > h3, .mv-card > p {
    position: relative;
    z-index: 3;
    transform: translateZ(30px);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mv-card:hover > h3, .mv-card:hover > p {
    transform: translateZ(60px);
}

.mv-icon {
    width: 85px;
    height: 85px;
    background: var(--brand-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    box-shadow: 0 12px 25px rgba(242, 101, 34, 0.15), inset 0 0 15px rgba(242, 101, 34, 0.05);
    border: 3px solid rgba(242, 101, 34, 0.1);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateZ(45px);
    position: relative;
    z-index: 3;
    overflow: hidden;
}

.mv-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mv-card:hover .mv-icon {
    transform: translateZ(90px) translateY(-10px) rotateZ(10deg);
    box-shadow: 0 20px 35px rgba(242, 101, 34, 0.25), inset 0 0 15px rgba(255, 255, 255, 0.9);
    border-color: var(--brand-orange);
}

.mv-card:hover .mv-icon img {
    transform: scale(1.15);
}

.mv-card h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--brand-charcoal);
}

.mv-card p {
    color: var(--brand-slate);
    line-height: 1.8;
    margin-bottom: 0;
}
/* Keyframe Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Entrance Animations */
.reveal-left { opacity: 0; transform: translateX(-50px); transition: 1s all ease; }
.reveal-right { opacity: 0; transform: translateX(50px); transition: 1s all ease; }
.reveal-left.active, .reveal-right.active { opacity: 1; transform: translateX(0); }
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Lato", sans-serif;
    color: var(--brand-charcoal);
    background:
        radial-gradient(circle at top right, rgba(246, 196, 51, 0.14), transparent 28%),
        linear-gradient(180deg, #fffdf9 0%, #f6f6f4 100%);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, .navbar-brand {
    font-family: "Montserrat", sans-serif;
}

.section-padding {
    padding: 50px 0;
}

.topbar {
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(52, 52, 52, 0.08);
    box-shadow: 0 10px 30px rgba(18, 18, 18, 0.05);
}

.navbar-brand img {
    height: 65px;
    width: auto;
}

.nav-link {
    color: var(--brand-charcoal);
    font-weight: 600;
    position: relative;
    font-size: 15px;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
    color: var(--brand-orange);
}

.topbar .dropdown-menu {
    margin-top: 16px;
    padding: 12px;
    min-width: 320px;
    border: 1px solid rgba(52, 52, 52, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 50px rgba(18, 18, 18, 0.12);
}

.topbar .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 28px;
    width: 16px;
    height: 16px;
    background: var(--brand-white);
    border-left: 1px solid rgba(52, 52, 52, 0.08);
    border-top: 1px solid rgba(52, 52, 52, 0.08);
    transform: rotate(45deg);
}

.topbar .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    border-radius: 12px;
    color: var(--brand-charcoal);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    white-space: normal;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.topbar .dropdown-item::before {
    content: "";
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-radius: 50%;
    background: var(--brand-orange);
    box-shadow: 0 0 0 5px rgba(242, 101, 34, 0.10);
}

.topbar .dropdown-item:hover,
.topbar .dropdown-item:focus {
    background: rgba(242, 101, 34, 0.08);
    color: var(--brand-orange);
    transform: translateX(4px);
}

.btn-brand {
    background: linear-gradient(135deg, var(--brand-orange), #ff7a2f);
    color: var(--brand-white);
    border: none;
    border-radius: 999px;
    padding: 13px 22px;
    font-weight: 700;
    box-shadow: 0 12px 25px rgba(242, 101, 34, 0.22);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-brand:hover {
    color: var(--brand-white);
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(242, 101, 34, 0.28);
}

.btn-outline-brand {
    border: 1px solid rgba(52, 52, 52, 0.16);
    border-radius: 999px;
    padding: 14px 26px;
    font-weight: 700;
    color: var(--brand-charcoal);
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.btn-outline-brand:hover {
    background: var(--brand-charcoal);
    color: var(--brand-white);
    border-color: var(--brand-charcoal);
}

.hero {
    padding: 0;
    position: relative;
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: -1;
}

.hero::before {
    top: 30px;
    right: -70px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(242, 101, 34, 0.18), transparent 72%);
    animation: pulseOrb 9s ease-in-out infinite;
}

.hero::after {
    bottom: -70px;
    left: -100px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(246, 196, 51, 0.18), transparent 72%);
    animation: pulseOrb 11s ease-in-out infinite reverse;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(52, 52, 52, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(52, 52, 52, 0.035) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent);
    pointer-events: none;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(246, 196, 51, 0.14);
    color: var(--brand-charcoal);
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 12px;
}

.eyebrow::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--brand-orange);
    box-shadow: 0 0 0 6px rgba(242, 101, 34, 0.14);
}

.hero-slider {
    position: relative;
    width: 100%;
    isolation: isolate;
}

.carousel-item {
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.hero-slider .carousel-inner {
    border-radius: 0;
}

.hero-slide {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center;
    transform: scale(1.015);
    filter: saturate(1.02) brightness(1.02);
    will-change: transform, filter;
    transform-origin: center center;
}

.carousel-item.active .hero-slide::before {
    animation: heroKenBurns 8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 28%, rgba(255, 255, 255, 0.20), transparent 22%),
        radial-gradient(circle at 80% 22%, rgba(246, 196, 51, 0.14), transparent 20%),
        linear-gradient(115deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 38%, rgba(12, 12, 12, 0.06) 100%);
    mix-blend-mode: screen;
    opacity: 0.78;
    will-change: transform, opacity;
}

.carousel-item.active .hero-slide::after {
    animation: heroOverlayDrift 8s ease-in-out forwards;
}

.hero-cinematic {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.hero-light-band,
.hero-grain,
.hero-frame-glow {
    position: absolute;
    inset: 0;
}

.hero-light-band {
    inset: -10% auto -10% -25%;
    width: 42%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.06) 42%, rgba(255, 255, 255, 0.22) 50%, rgba(255, 255, 255, 0.06) 58%, transparent 100%);
    transform: skewX(-18deg) translateX(-120%);
    filter: blur(4px);
    opacity: 0.9;
}

.carousel-item.active .hero-light-band {
    animation: heroLightSweep 6.6s ease-in-out infinite;
}

.hero-grain {
    background-image:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.10) 0 1px, transparent 1px),
        radial-gradient(circle at 80% 30%, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px);
    background-size: 22px 22px, 28px 28px, 32px 32px;
    opacity: 0.16;
    mix-blend-mode: soft-light;
}

.carousel-item.active .hero-grain {
    animation: heroGrainShift 1.4s steps(2) infinite;
}

.hero-frame-glow {
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 28px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    opacity: 0.7;
}

.carousel-item.active .hero-frame-glow {
    animation: heroFramePulse 4.5s ease-in-out infinite;
}

.hero-slide .container {
    position: relative;
}

.hero-slide .container::before {
    content: "";
    position: absolute;
    right: 4%;
    top: 10%;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 68%);
    filter: blur(10px);
    opacity: 0;
    pointer-events: none;
}

.carousel-item.active .hero-slide .container::before {
    animation: heroSpotGlow 3.6s ease-out 0.2s both;
}

.hero-content-wrap {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 60px 0 70px;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    align-items: end;
}

.hero-body {
    position: relative;
    z-index: 1;
    max-width: 560px;
    padding: 26px 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.66);
    box-shadow: 0 18px 44px rgba(18, 18, 18, 0.10);
    backdrop-filter: blur(6px);
}

.hero-body::after {
    content: none;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(242, 101, 34, 0.10);
    color: var(--brand-charcoal);
    border: 1px solid rgba(242, 101, 34, 0.12);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-label::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-yellow));
    box-shadow: 0 0 0 6px rgba(242, 101, 34, 0.10);
}

.hero h1 {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 800;
    margin: 18px 0 14px;
    max-width: 520px;
    color: var(--brand-charcoal);
    letter-spacing: -0.02em;
}

.hero h1 span {
    color: var(--brand-orange);
}

.hero p {
    font-size: 16px;
    color: var(--brand-slate);
    max-width: 500px;
    margin-bottom: 0;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.carousel-item.active .hero-body > * {
    animation: heroContentIn 0.95s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.carousel-item.active .hero-body > *:nth-child(2) {
    animation-delay: 0.12s;
}

.carousel-item.active .hero-body > *:nth-child(3) {
    animation-delay: 0.2s;
}

.carousel-item.active .hero-body > *:nth-child(4) {
    animation-delay: 0.28s;
}

.carousel-item.active .hero-body > *:nth-child(5) {
    animation-delay: 0.36s;
}

.hero-slider .carousel-indicators {
    bottom: 28px;
    margin-bottom: 0;
    gap: 10px;
}

.hero-slider .carousel-indicators [data-bs-target] {
    width: 42px;
    height: 5px;
    margin: 0;
    border: none;
    border-radius: 999px;
    opacity: 1;
    background: rgba(255, 255, 255, 0.52);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    position: relative;
}

.hero-slider .carousel-indicators .active {
    background: var(--brand-orange);
    box-shadow: 0 2px 12px rgba(242, 101, 34, 0.4);
}

.hero-slider .carousel-indicators [data-bs-target]::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    transform: translateX(-120%);
}

.hero-slider .carousel-indicators .active::after {
    animation: indicatorSweep 4.5s linear infinite;
}

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 58px;
    height: 58px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    opacity: 1;
    margin: 0 24px;
    backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.28);
    transform: translateY(-50%) scale(1.08);
}

.hero-slider .carousel-control-prev::before,
.hero-slider .carousel-control-next::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 55%);
    opacity: 0.7;
}

.hero-slider .carousel-control-prev-icon,
.hero-slider .carousel-control-next-icon {
    width: 1.2rem;
    height: 1.2rem;
}

.hero-progress-wrap {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: min(420px, calc(100% - 48px));
    height: 4px;
    border-radius: 999px 999px 0 0;
    overflow: hidden;
    z-index: 3;
}

.hero-progress-track,
.hero-progress-bar {
    position: absolute;
    inset: 0;
    border-radius: inherit;
}

.hero-progress-track {
    background: rgba(255, 255, 255, 0.22);
}

.hero-progress-bar {
    width: 100%;
    transform-origin: left center;
    transform: scaleX(0);
    background: linear-gradient(90deg, var(--brand-yellow), var(--brand-orange));
    box-shadow: 0 0 18px rgba(242, 101, 34, 0.35);
}

.hero-progress-bar.is-animating {
    animation: heroProgressFill 4.5s linear forwards;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 38px;
}

.stat-box,
.service-card,
.feature-card,
.cta-panel,
.showcase-panel {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(52, 52, 52, 0.07);
    box-shadow: var(--shadow-soft);
    border-radius: var(--radius-xl);
}

.stat-box {
    padding: 24px 18px;
}

.stat-box strong {
    display: block;
    font-family: "Outfit", sans-serif;
    font-size: 29px;
    color: var(--brand-orange);
}

.section-title {
    max-width: 700px;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 30px;
    margin-bottom: 14px;
    font-weight: 600;
}

.section-title p {
    color: var(--brand-slate);
    margin-bottom: 0;
}

.service-card {
    padding: 28px;
    height: 100%;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 46px rgba(242, 101, 34, 0.16);
    border-color: rgba(242, 101, 34, 0.2);
}

.service-icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-light);
    margin-bottom: 20px;
    overflow: hidden;
    border: 3px solid var(--brand-white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-icon {
    border-color: var(--brand-orange);
    box-shadow: 0 12px 28px rgba(242, 101, 34, 0.22);
    transform: scale(1.05);
}

.service-card:hover .service-icon img {
    transform: scale(1.15);
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--brand-slate);
    margin-bottom: 0;
}

.about-visual {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-single {
    position: relative;
    width: min(100%, 540px);
    min-height: 560px;
    overflow: hidden;
    animation: aboutImageFloat 7s ease-in-out infinite;
}

.about-image-single img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.about-content-card {
    max-width: 620px;
    padding: 44px 42px;
    background: transparent;
    border: 1px solid rgba(52, 52, 52, 0.16);
    box-shadow: none;
    border-radius: 0;
}

.about-content-card h2 {
    font-size: 30px;
    margin: 18px 0 16px;
    font-weight: 600;
}

.about-content-card p {
    color: var(--brand-slate);
    margin-bottom: 0;
    line-height: 1.8;
}

.about-strip {
    background: linear-gradient(135deg, #2f2f2f 0%, #494949 100%);
    color: var(--brand-white);
    overflow: hidden;
    position: relative;
}

.about-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.25;
}

.about-strip .container {
    position: relative;
    z-index: 1;
}

.feature-card {
    padding: 28px;
    height: 100%;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-yellow), #ffe287);
    color: var(--brand-charcoal);
    font-weight: 800;
    margin-bottom: 16px;
}

.showcase-panel {
    padding: 36px;
    position: relative;
    overflow: hidden;
}

.showcase-panel::after {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(246, 196, 51, 0.12);
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
    color: var(--brand-slate);
}

.check-list li::before {
    content: "";
    width: 12px;
    height: 12px;
    margin-top: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-yellow));
    flex: 0 0 12px;
}

/* Why Choose Us */
.why-choose-section {
    position: relative;
    overflow: hidden;
    background: 
        radial-gradient(circle at 95% 95%, rgba(242, 101, 34, 0.12), transparent 35%),
        radial-gradient(circle at 5% 5%, rgba(246, 196, 51, 0.1), transparent 30%), #fdfdfd;
}

.why-visual {
    position: relative;
    min-height: 570px;
    padding: 18px;
}

.why-visual::before {
    content: "";
    position: absolute;
    inset: 58px 0 30px 54px;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-yellow));
    opacity: 0.16;
    transform: rotate(-4deg);
}

.why-main-img {
    position: relative;
    z-index: 1;
    width: 86%;
    height: 520px;
    display: block;
    object-fit: cover;
    border-radius: 28px;
    border: 8px solid var(--brand-white);
    box-shadow: 0 24px 60px rgba(31, 31, 31, 0.16);
    animation: whyImageFloat 6s ease-in-out infinite;
}

.why-experience-card,
.why-mini-card {
    position: absolute;
    z-index: 2;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(52, 52, 52, 0.08);
    box-shadow: 0 18px 42px rgba(31, 31, 31, 0.14);
    backdrop-filter: blur(12px);
}

.why-experience-card {
    right: 8px;
    bottom: 50px;
    width: min(240px, 52%);
    padding: 24px;
    border-radius: 22px;
    animation: whyCardFloat 5s ease-in-out infinite;
}

.why-experience-card strong {
    display: block;
    color: var(--brand-orange);
    font-family: "Outfit", sans-serif;
    font-size: 48px;
    line-height: 1;
}

.why-experience-card span {
    display: block;
    margin-top: 8px;
    color: var(--brand-charcoal);
    font-weight: 800;
    line-height: 1.35;
}

.why-mini-card {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 16px;
    border-radius: 999px;
    color: var(--brand-charcoal);
    font-weight: 800;
    font-size: 14px;
}

.why-mini-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
    color: var(--brand-white);
    font-size: 17px;
}

.why-mini-card-one {
    top: 48px;
    right: 36px;
    animation: whyBadgeDrift 5.8s ease-in-out infinite;
}

.why-mini-card-two {
    left: 0;
    bottom: 118px;
    animation: whyBadgeDrift 6.6s ease-in-out infinite reverse;
}

.why-points-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    perspective: 1200px;
}

.why-point {
    min-height: 190px;
    padding: 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(52, 52, 52, 0.07);
    box-shadow: 0 16px 36px rgba(31, 31, 31, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.why-point:hover {
    transform: translateY(-10px) rotateY(8deg) scale(1.02);
    border-color: rgba(242, 101, 34, 0.22);
    box-shadow: 0 24px 50px rgba(242, 101, 34, 0.18);
}

.why-point-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(242, 101, 34, 0.12), rgba(246, 196, 51, 0.18));
    color: var(--brand-orange);
    font-size: 25px;
}

.why-point h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--brand-charcoal);
}

.why-point p {
    margin: 0;
    color: var(--brand-slate);
    line-height: 1.65;
    font-size: 14px;
}

.why-point .inline-editable {
    display: block;
    max-width: 100%;
    overflow-wrap: anywhere;
}

.why-point .inline-about-input {
    display: block;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    resize: vertical;
    overflow-wrap: anywhere;
}

.why-stats-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
}

.why-stats-row div {
    padding: 18px 14px;
    border-radius: 18px;
    background: var(--brand-charcoal);
    color: var(--brand-white);
    text-align: center;
}

.why-stats-row strong {
    display: block;
    color: var(--brand-yellow);
    font-family: "Outfit", sans-serif;
    font-size: 26px;
    line-height: 1;
    margin-bottom: 8px;
}

.why-stats-row span {
    display: block;
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    font-weight: 700;
}

@keyframes whyImageFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes whyCardFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(1deg);
    }
}

@keyframes whyBadgeDrift {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-9px);
    }
}

/* Projects, Testimonials & Blog */
.projects-section,
.blog-section {
    background: rgba(255, 255, 255, 0.58);
}

.project-card,
.testimonial-card,
.blog-card {
    height: 100%;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(52, 52, 52, 0.07);
    box-shadow: 0 18px 44px rgba(31, 31, 31, 0.09);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.project-card:hover,
.testimonial-card:hover,
.blog-card:hover {
    transform: translateY(-9px);
    border-color: rgba(242, 101, 34, 0.22);
    box-shadow: 0 26px 54px rgba(242, 101, 34, 0.15);
}

.project-card img,
.blog-card img {
    display: block;
    width: 100%;
    height: 245px;
    object-fit: cover;
    transition: transform 0.55s ease, filter 0.55s ease;
}

.project-card:hover img,
.blog-card:hover img {
    transform: scale(1.06);
    filter: saturate(1.08);
}

.project-card-body,
.blog-card-body {
    padding: 26px;
}

.project-card-body span,
.blog-card-body span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(246, 196, 51, 0.16);
    color: var(--brand-charcoal);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.project-card-body h3,
.blog-card-body h3 {
    font-size: 21px;
    line-height: 1.3;
    font-weight: 800;
    margin-bottom: 12px;
}

.project-card-body p {
    color: var(--brand-slate);
    line-height: 1.7;
    margin-bottom: 0;
}

.testimonials-section {
    background:
        linear-gradient(135deg, rgba(52, 52, 52, 0.05), rgba(246, 196, 51, 0.08)),
        rgba(247, 247, 245, 0.92);
}

.testimonial-card {
    position: relative;
    padding: 32px;
}

.testimonial-card::before {
    content: "\F6B0";
    position: absolute;
    right: 26px;
    top: 18px;
    font-family: "bootstrap-icons";
    color: rgba(242, 101, 34, 0.10);
    font-size: 58px;
    line-height: 1;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    color: var(--brand-yellow);
    margin-bottom: 18px;
}

.testimonial-card p {
    position: relative;
    color: var(--brand-slate);
    line-height: 1.8;
    margin-bottom: 26px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 13px;
}

.testimonial-author > span {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-white);
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
    font-weight: 800;
}

.testimonial-author strong,
.testimonial-author small {
    display: block;
}

.testimonial-author strong {
    color: var(--brand-charcoal);
    font-weight: 800;
}

.testimonial-author small {
    color: var(--brand-slate);
    margin-top: 2px;
}

.blog-card {
    display: flex;
    flex-direction: column;
}

.blog-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-body h3 {
    margin-bottom: 22px;
}

.blog-card-body a {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-orange);
    text-decoration: none;
    font-weight: 800;
}

.blog-card-body a:hover {
    color: var(--brand-orange-dark);
}

.cta-panel {
    padding: 40px;
    background:
        linear-gradient(135deg, rgba(242, 101, 34, 0.96), rgba(255, 145, 64, 0.94)),
        var(--brand-orange);
    color: var(--brand-white);
}

.cta-panel p {
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 0;
}

.footer {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(38, 38, 38, 0.96), rgba(20, 20, 20, 0.98)),
        #262626;
    color: rgba(255, 255, 255, 0.82);
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.22;
    pointer-events: none;
}

.footer-main,
.footer-bottom {
    position: relative;
    z-index: 1;
}

.footer-main {
    padding: 72px 0 48px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 22px;
    padding: 12px 16px;
    border-radius: 18px;
    background: var(--brand-white);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.footer-logo img {
    width: 170px;
    height: auto;
    display: block;
}

.footer-brand p {
    max-width: 380px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
    margin-bottom: 22px;
}

.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.footer-social a:hover {
    transform: translateY(-4px);
    background: var(--brand-orange);
    border-color: var(--brand-orange);
}

.footer-widget h3 {
    position: relative;
    color: var(--brand-white);
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 24px;
    padding-bottom: 14px;
}

.footer-widget h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 46px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand-yellow), var(--brand-orange));
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    line-height: 1.4;
    transition: color 0.25s ease, transform 0.25s ease;
}

.footer-links a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand-orange);
    box-shadow: 0 0 0 5px rgba(242, 101, 34, 0.10);
}

.footer-links a:hover {
    color: var(--brand-white);
    transform: translateX(4px);
}

.footer-contact {
    position: relative;
    display: grid;
    gap: 14px;
}

.footer-brand .inline-editable,
.footer-contact .inline-editable {
    display: inline-block;
    max-width: 100%;
}

.footer-contact .inline-about-input,
.footer-brand .inline-about-input {
    color: var(--brand-charcoal);
    min-width: 0;
}

.footer-contact h3 {
    margin-bottom: 10px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.74);
    text-decoration: none;
    line-height: 1.55;
}

.footer-contact-item i {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-white);
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
}

a.footer-contact-item:hover {
    color: var(--brand-white);
}

.map-container {
    position: relative;
}

.map-edit-btn {
    position: absolute;
    z-index: 5;
    top: 16px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: rgba(52, 52, 52, 0.9);
    box-shadow: 0 12px 26px rgba(31, 31, 31, 0.2);
    font-size: 13px;
    font-weight: 800;
}

.footer-quote-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin-top: 8px;
    padding: 12px 20px;
    border-radius: 999px;
    color: var(--brand-charcoal);
    background: linear-gradient(135deg, var(--brand-yellow), #ffe48a);
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(246, 196, 51, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.footer-quote-btn:hover {
    color: var(--brand-charcoal);
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(246, 196, 51, 0.26);
}

.footer-bottom {
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

@keyframes floatUp {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(48px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulseOrb {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}

@keyframes bannerStageFloat {
    0%, 100% {
        transform: rotateX(0deg) rotateY(0deg);
    }
    50% {
        transform: rotateX(-3deg) rotateY(3deg);
    }
}

@keyframes rotateRing {
    from {
        transform: rotateZ(0deg) rotateX(70deg);
    }
    to {
        transform: rotateZ(360deg) rotateX(70deg);
    }
}

@keyframes heroContentIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroKenBurns {
    from {
        transform: scale(1.015);
        filter: saturate(1.02) brightness(1.02);
    }
    to {
        transform: scale(1.06);
        filter: saturate(1.05) brightness(1.04);
    }
}

@keyframes aboutImageFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-14px);
    }
}

@keyframes heroOverlayDrift {
    0% {
        opacity: 0.45;
        transform: translate3d(-1.5%, 0, 0) scale(1);
    }
    50% {
        opacity: 0.78;
        transform: translate3d(1.2%, -1.2%, 0) scale(1.02);
    }
    100% {
        opacity: 0.62;
        transform: translate3d(0.6%, 1%, 0) scale(1.03);
    }
}

@keyframes heroSpotGlow {
    0% {
        opacity: 0;
        transform: scale(0.85);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes indicatorSweep {
    0% {
        transform: translateX(-120%);
    }
    100% {
        transform: translateX(120%);
    }
}

@keyframes heroLightSweep {
    0% {
        transform: skewX(-18deg) translateX(-130%);
        opacity: 0;
    }
    16% {
        opacity: 0.9;
    }
    50% {
        opacity: 0.65;
    }
    100% {
        transform: skewX(-18deg) translateX(340%);
        opacity: 0;
    }
}

@keyframes heroGrainShift {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-1%, 1%);
    }
    100% {
        transform: translate(1%, -1%);
    }
}

@keyframes heroFramePulse {
    0%, 100% {
        opacity: 0.42;
        transform: scale(1);
    }
    50% {
        opacity: 0.75;
        transform: scale(1.008);
    }
}

@keyframes heroProgressFill {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

@media (max-width: 991.98px) {
    .hero {
        padding: 0;
    }

    .hero-body {
        padding: 34px 30px 36px;
    }

    .hero-slide {
        min-height: 72vh;
    }

    .hero-content-wrap {
        padding: 48px 0 58px;
    }

    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next {
        margin: 0 14px;
    }

    .hero-slide .container::before {
        width: 180px;
        height: 180px;
    }

    .hero-frame-glow {
        inset: 14px;
    }

    .about-visual {
        min-height: 540px;
        margin-bottom: 8px;
    }

    .about-image-single {
        min-height: 480px;
    }

    .about-content-card {
        padding: 34px 30px;
    }

    .why-visual {
        min-height: 500px;
        max-width: 650px;
        margin: 0 auto;
    }

    .why-main-img {
        width: 88%;
        height: 460px;
    }

    .why-content h2 {
        font-size: 34px;
    }
}

@media (max-width: 767.98px) {
    .sticky-social-bar {
        left: 50%;
        top: auto;
        bottom: 14px;
        flex-direction: row;
        gap: 7px;
        max-width: calc(100vw - 28px);
        padding: 8px;
        transform: translateX(-50%);
    }

    .sticky-social-bar a {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .sticky-social-bar a:hover,
    .sticky-social-bar a:focus-visible {
        transform: translateY(-4px) scale(1.06);
    }

    .sticky-social-bar a::after {
        content: none;
    }

    .section-padding {
        padding: 60px 0;
    }

    .navbar-brand img {
        height: 44px;
    }

    .topbar .navbar-collapse {
        padding: 18px 0 8px;
    }

    .topbar .navbar-nav {
        align-items: stretch !important;
    }

    .topbar .nav-link {
        padding: 11px 4px;
    }

    .topbar .dropdown-menu {
        min-width: 100%;
        margin: 6px 0 10px;
        padding: 8px;
        border-radius: 14px;
        box-shadow: none;
        background: rgba(247, 247, 245, 0.96);
    }

    .topbar .dropdown-menu::before {
        content: none;
    }

    .topbar .dropdown-item {
        padding: 10px;
        font-size: 13px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero-body {
        padding: 22px 20px 24px;
        max-width: 100%;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.78);
    }

    .hero-slide {
        min-height: 215px;
    }

    .hero-slide::after {
        background:
            linear-gradient(180deg, rgba(12, 12, 12, 0.06) 0%, rgba(12, 12, 12, 0.14) 100%);
    }

    .hero-content-wrap {
        padding: 34px 0 46px;
    }

    .hero-slide::after {
        opacity: 0.56;
    }

    .hero-slide .container::before {
        display: none;
    }

    .hero-cinematic {
        opacity: 0.72;
    }

    .hero-frame-glow {
        inset: 10px;
        border-radius: 18px;
    }

    .hero-actions {
        gap: 10px;
    }

    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next {
        display: none;
    }

    .hero-slider .carousel-indicators {
        bottom: 20px;
    }

    .hero-progress-wrap {
        width: calc(100% - 24px);
    }

    .about-visual {
        min-height: auto;
    }

    .about-image-single {
        width: 100%;
        min-height: 300px;
    }

    .about-content-card {
        padding: 28px 22px;
    }

    .showcase-panel,
    .cta-panel,
    .service-card,
    .feature-card {
        padding: 24px;
    }

    .why-visual {
        min-height: auto;
        padding: 0 0 86px;
    }

    .why-visual::before {
        inset: 46px 10px 74px 24px;
        border-radius: 22px;
    }

    .why-main-img {
        width: 100%;
        height: 320px;
        border-width: 5px;
        border-radius: 22px;
    }

    .why-experience-card {
        right: 14px;
        bottom: 18px;
        width: min(220px, 64%);
        padding: 18px;
        border-radius: 18px;
    }

    .why-experience-card strong {
        font-size: 38px;
    }

    .why-mini-card {
        padding: 10px 12px;
        font-size: 12px;
    }

    .why-mini-card i {
        width: 30px;
        height: 30px;
        font-size: 15px;
    }

    .why-mini-card-one {
        top: 16px;
        right: 12px;
    }

    .why-mini-card-two {
        left: 12px;
        bottom: 20px;
    }

    .why-content h2 {
        font-size: 28px;
    }

    .why-points-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .why-point {
        min-height: auto;
        padding: 22px;
    }

    .why-stats-row {
        grid-template-columns: 1fr;
    }

    .footer-main {
        padding: 54px 0 34px;
    }

    .footer-logo img {
        width: 148px;
    }

    .footer-widget h3 {
        margin-bottom: 18px;
    }

    .footer-bottom {
        text-align: center;
    }

    .project-card img,
    .blog-card img {
        height: 210px;
    }

    .project-card-body,
    .blog-card-body,
    .testimonial-card {
        padding: 22px;
    }
}

/* Custom Multi-item Carousel (for Videos) */
.videos-section {
    overflow: hidden;
    position: relative;
}

.custom-carousel {
    position: relative;
    padding: 6px 0 14px;
    perspective: 1800px;
}

.custom-carousel-slider {
    position: relative;
    z-index: 1;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 16px 2px 30px;
}

.custom-carousel-slider::-webkit-scrollbar {
    display: none;
}

.custom-carousel-track {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

.custom-carousel-card {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 0;
    scroll-snap-align: start;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.custom-carousel-card > div {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.custom-carousel-card:hover > div {
    transform: translateY(-12px) translateZ(40px);
    box-shadow: 0 28px 58px rgba(242, 101, 34, 0.22) !important;
}

.custom-carousel-btn {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 50px;
    height: 50px;
    border: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-white);
    background: linear-gradient(135deg, var(--brand-charcoal), #1f1f1f);
    box-shadow: 0 16px 32px rgba(31, 31, 31, 0.18);
    transform: translateY(-50%);
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.custom-carousel-btn:hover,
.custom-carousel-btn:focus-visible {
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
    box-shadow: 0 18px 34px rgba(242, 101, 34, 0.26);
    transform: translateY(-50%) scale(1.08);
}

.custom-carousel-btn i {
    font-size: 22px;
    line-height: 1;
}

.custom-carousel-prev {
    left: -25px;
}

.custom-carousel-next {
    right: -25px;
}

.custom-carousel-dots {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 10px;
    min-height: 18px;
    margin-top: 2px;
}

.custom-carousel-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(52, 52, 52, 0.22);
    transition: width 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.custom-carousel-dot.active {
    width: 34px;
    background: linear-gradient(90deg, var(--brand-yellow), var(--brand-orange));
    box-shadow: 0 6px 16px rgba(242, 101, 34, 0.24);
}

/* Services Carousel */
.services-section {
    background: #fcfcfc;
    overflow: hidden;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: 
        radial-gradient(circle at 15% 25%, rgba(242, 101, 34, 0.12), transparent 35%),
        radial-gradient(circle at 85% 75%, rgba(246, 196, 51, 0.1), transparent 40%);
    animation: pulseOrb 15s ease-in-out infinite;
}

.services-carousel {
    position: relative;
    padding: 6px 0 14px;
    perspective: 1800px;
}

.services-slider {
    position: relative;
    z-index: 1;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 16px 2px 30px;
}

.services-slider::-webkit-scrollbar {
    display: none;
}

.services-track {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

.service-slide-card {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 0;
    min-height: 455px;
    scroll-snap-align: start;    
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    border-radius: 24px;
    box-shadow: 0 18px 44px rgba(31, 31, 31, 0.10);
    overflow: hidden;    border: 1px solid rgba(52, 52, 52, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-slide-card::after {
    content: "";
    position: absolute;
    inset: auto 22px 0;
    height: 4px;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(90deg, var(--brand-yellow), var(--brand-orange));
    transform: scaleX(0.34);
    transform-origin: left center;
    transition: transform 0.35s ease;
}

.service-slide-card:hover {
    transform: translateY(-12px) translateZ(40px);
    border-color: rgba(242, 101, 34, 0.22);
    box-shadow: 0 28px 58px rgba(242, 101, 34, 0.22);
}

.service-slide-card:hover::after {
    transform: scaleX(1);
}

.service-slide-img {
    width: 100%;
    height: 205px;
    overflow: hidden;
    position: relative;
    background: var(--brand-light);
}

.service-slide-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 44%, rgba(0, 0, 0, 0.24) 100%);
    pointer-events: none;
}

.service-slide-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s ease, filter 0.65s ease;
}

.service-slide-img iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.service-slide-card:hover .service-slide-img img {
    transform: scale(1.08);
    filter: saturate(1.08);
}

.service-slide-content {
    padding: 42px 28px 32px;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-slide-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
    color: var(--brand-white);
    border-radius: 18px;
    position: absolute;
    top: -35px;
    right: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 28px rgba(242, 101, 34, 0.28);
    border: 5px solid var(--brand-white);
    z-index: 2;
    transition: transform 0.35s ease;
}

.service-slide-icon i {
    font-size: 30px;
    line-height: 1;
}

.service-slide-card:hover .service-slide-icon {
    transform: translateY(-4px) rotate(4deg);
}

.service-label {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 12px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(246, 196, 51, 0.16);
    color: var(--brand-charcoal);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.service-slide-content h3 {
    min-height: 58px;
    font-size: 21px;
    line-height: 1.3;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--brand-charcoal);
}

.service-slide-content p {
    color: var(--brand-slate);
    line-height: 1.7;
    margin-bottom: 0;
}

.service-carousel-btn {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 50px;
    height: 50px;
    border: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-white);
    background: linear-gradient(135deg, var(--brand-charcoal), #1f1f1f);
    box-shadow: 0 16px 32px rgba(31, 31, 31, 0.18);
    transform: translateY(-50%);
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.service-carousel-btn:hover,
.service-carousel-btn:focus-visible {
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
    box-shadow: 0 18px 34px rgba(242, 101, 34, 0.26);
    transform: translateY(-50%) scale(1.08);
}

.service-carousel-btn i {
    font-size: 22px;
    line-height: 1;
}

.service-carousel-prev {
    left: -25px;
}

.service-carousel-next {
    right: -25px;
}

.service-carousel-dots {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 10px;
    min-height: 18px;
    margin-top: 2px;
}

.service-carousel-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(52, 52, 52, 0.22);
    transition: width 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.service-carousel-dot.active {
    width: 34px;
    background: linear-gradient(90deg, var(--brand-yellow), var(--brand-orange));
    box-shadow: 0 6px 16px rgba(242, 101, 34, 0.24);
}

@media (max-width: 991.98px) {
    .services-title {
        max-width: 620px;
    }

    .custom-carousel-card {
        flex-basis: calc((100% - 24px) / 2);
    }

    .custom-carousel-prev {
        left: -10px;
    }

    .custom-carousel-next {
        right: -10px;
    }

    .service-slide-card {
        flex-basis: calc((100% - 24px) / 2);
    }

    .service-carousel-prev {
        left: -10px;
    }

    .service-carousel-next {
        right: -10px;
    }
}

@media (max-width: 767.98px) {
    .services-title {
        margin-bottom: 18px;
    }

    .custom-carousel-track {
        gap: 16px;
    }

    .custom-carousel-card {
        flex-basis: 100%;
    }

    .custom-carousel-btn {
        top: auto;
        bottom: 0;
        width: 42px;
        height: 42px;
        transform: none;
    }
    
    .custom-carousel-btn:hover,
    .custom-carousel-btn:focus-visible {
        transform: scale(1.06);
    }

    .custom-carousel-prev {
        left: 8px;
    }

    .custom-carousel-next {
        right: 8px;
    }

    .custom-carousel-dots {
        padding-inline: 54px;
        margin-top: -4px;
    }

    .services-title h2 {
        font-size: 27px;
    }

    .services-carousel {
        padding: 4px 0 48px;
    }

    .services-slider {
        padding: 12px 1px 22px;
    }

    .services-track {
        gap: 16px;
    }

    .service-slide-card {
        flex-basis: 100%;
        min-height: 425px;
        border-radius: 20px;
    }

    .service-slide-img {
        height: 185px;
    }

    .service-slide-content {
        padding: 38px 22px 28px;
    }

    .service-slide-content h3 {
        min-height: auto;
        font-size: 20px;
    }

    .service-slide-icon {
        width: 62px;
        height: 62px;
        top: -31px;
        right: 20px;
        border-radius: 16px;
    }

    .service-slide-icon i {
        font-size: 26px;
    }

    .service-carousel-btn {
        top: auto;
        bottom: 0;
        width: 42px;
        height: 42px;
        transform: none;
    }

    .service-carousel-btn:hover,
    .service-carousel-btn:focus-visible {
        transform: scale(1.06);
    }

    .service-carousel-prev {
        left: 8px;
    }

    .service-carousel-next {
        right: 8px;
    }

    .service-carousel-dots {
        padding-inline: 54px;
        margin-top: -4px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .services-slider {
        scroll-behavior: auto;
    }

    .service-slide-card,
    .service-slide-img img,
    .service-carousel-btn,
    .service-carousel-dot {
        transition: none;
    }
}

/* About Page Hero Banner Image Edit Button */
.inner-page-hero .inline-image-form {
    top: 20px;
    right: 20px;
    z-index: 10;
}

/* Contact Page Form Styles */
.contact-form-wrapper .form-control {
    border-radius: 12px;
    border: 1px solid rgba(52, 52, 52, 0.15);
    background-color: #fdfdfd;
    transition: all 0.3s ease;
}

.contact-form-wrapper .form-control:focus {
    border-color: var(--brand-orange);
    box-shadow: 0 0 0 0.25rem rgba(242, 101, 34, 0.15);
    background-color: #ffffff;
}

/* ========================================= */
/* Inner Pages specific Styles (About Us)   */
/* ========================================= */

/* Inner Page Hero Banner */
.inner-page-hero {
    padding: 140px 0 110px;
    background-color: var(--brand-charcoal);
    overflow: hidden;
}

.inner-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    transform: scale(1.05);
    animation: heroKenBurns 12s ease-out forwards;
}

.inner-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgb(31 31 31 / 32%), rgb(20 20 20 / 29%));

}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

/* Director Section */
.executive-director-section {
    background-color: var(--brand-light);
    padding: 100px 0;
}

.executive-card {
    background: linear-gradient(145deg, #1f1f1f, var(--brand-charcoal));
    border-radius: 30px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    position: relative;
}

/* Ambient glow effect inside the card */
.executive-card::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(242, 101, 34, 0.15), transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.executive-image {
    position: relative;
    height: 100%;
    min-height: 550px;
}

.executive-image img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    border-right: 4px solid var(--brand-orange);
}

.executive-badge {
    position: absolute;
    top: 50px;
    right: -60px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
    border: 8px solid #1f1f1f;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--brand-white);
    z-index: 2;
    box-shadow: 0 20px 40px rgba(242, 101, 34, 0.3);
    animation: float 4s ease-in-out infinite;
}

.executive-badge .num {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

.executive-badge .text {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    line-height: 1.2;
}

.executive-content {
    padding: 70px 60px 70px 80px;
    position: relative;
    z-index: 1;
}

.executive-eyebrow {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.glass-quote-panel {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid var(--brand-orange);
    padding: 35px 40px;
    border-radius: 0 20px 20px 0;
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-quote-icon {
    position: absolute;
    top: -20px; left: 20px;
    font-size: 80px;
    color: rgba(242, 101, 34, 0.2);
    line-height: 1;
}

.executive-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.executive-signature {
    font-family: 'Brush Script MT', 'Dancing Script', cursive, sans-serif;
    font-size: 46px;
    color: var(--brand-white);
    opacity: 0.8;
}

@media (max-width: 991.98px) {
    .executive-image {
        min-height: 450px;
    }
    .executive-image img {
        border-right: none;
        border-bottom: 4px solid var(--brand-orange);
    }
    .executive-badge {
        right: 30px;
        top: auto;
        bottom: -60px;
        border-color: var(--brand-charcoal);
    }
    .executive-content {
        padding: 80px 30px 50px;
    }
    .executive-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

/* Team Section */
#team .row {
    perspective: 1200px;
}

.team-card {
    background: var(--brand-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(52, 52, 52, 0.05);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    transform-style: preserve-3d;
    position: relative;
}

.team-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, transparent 50%, rgba(242, 101, 34, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 5;
}

.team-card:hover {
    transform: translateY(-16px) rotateX(8deg) rotateY(-6deg) scale(1.02);
    box-shadow: 
        25px 35px 50px rgba(242, 101, 34, 0.15),
        -10px -10px 30px rgba(255, 255, 255, 0.8);
    border-color: rgba(242, 101, 34, 0.3);
}

.col-lg-3:nth-child(even) .team-card:hover {
    transform: translateY(-16px) rotateX(8deg) rotateY(6deg) scale(1.02);
    box-shadow: 
        -25px 35px 50px rgba(242, 101, 34, 0.15),
        10px -10px 30px rgba(255, 255, 255, 0.8);
}

.team-card:hover::after {
    opacity: 1;
}

.team-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-card:hover .team-img img {
    transform: scale(1.08);
}

.team-social {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    transition: bottom 0.4s ease;
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    width: 42px;
    height: 42px;
    background: var(--brand-orange);
    color: var(--brand-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.team-social a:hover {
    background: var(--brand-white);
    color: var(--brand-orange);
    transform: translateY(-4px);
}

.team-info {
    padding: 26px 20px;
    text-align: center;
    background: var(--brand-white);
    position: relative;
    z-index: 1;
}

.team-info h4 {
    font-size: 21px;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--brand-charcoal);
}

.team-info span {
    color: var(--brand-orange);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* 3D Leadership Card Highlight */
.leadership-3d-card {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: linear-gradient(145deg, #ffffff, #f8f8f8);
    border: 1px solid rgba(52, 52, 52, 0.08);
    border-radius: 16px;
    color: var(--brand-charcoal);
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 
        0 10px 20px rgba(31, 31, 31, 0.06), 
        inset 0 4px 0 rgba(255, 255, 255, 1),
        inset 0 -4px 0 rgba(242, 101, 34, 0.15);
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
}

.leadership-3d-card:hover {
    transform: translateY(-8px) scale(1.05) rotateX(10deg);
    background: linear-gradient(145deg, #ffffff, #fff0e6);
    border-color: var(--brand-orange);
    box-shadow: 
        0 20px 35px rgba(242, 101, 34, 0.18),
        inset 0 4px 0 rgba(255, 255, 255, 1),
        inset 0 -4px 0 var(--brand-orange);
}

/* Complete Director Section 3D Wrapper */
#director .container {
    perspective: 1500px;
}

.director-3d-wrapper {
    background: var(--brand-white);
    border-radius: var(--radius-xl);
    padding: 60px 50px;
    box-shadow: 0 25px 60px rgba(31, 31, 31, 0.06);
    border: 1px solid rgba(52, 52, 52, 0.05);
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.director-3d-wrapper:hover {
    transform: translateY(-16px) rotateX(3deg) rotateY(-2deg) scale(1.01);
    box-shadow: 
        30px 40px 60px rgba(242, 101, 34, 0.12),
        -15px -15px 40px rgba(255, 255, 255, 0.8);
    border-color: rgba(242, 101, 34, 0.2);
}

.director-img-wrapper, .director-content {
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@media (max-width: 991.98px) {
    .director-3d-wrapper {
        padding: 40px 20px;
    }
    .director-3d-wrapper:hover {
        transform: translateY(-10px);
    }
}

/* ========================================= */
/* Service Details Page Styles              */
/* ========================================= */

/* Sidebar Styles */
.service-sidebar {
    background: var(--brand-white);
    border: 1px solid rgba(52, 52, 52, 0.08);
    border-radius: 24px;
    padding: 32px 28px;
    box-shadow: 0 15px 40px rgba(31, 31, 31, 0.04);
    position: sticky;
    top: 120px;
}

.sidebar-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--brand-charcoal);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(52, 52, 52, 0.06);
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 22px;
    background: #fdfdfd;
    border: 1px solid rgba(52, 52, 52, 0.05);
    border-radius: 16px;
    color: var(--brand-slate);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-link i {
    font-size: 14px;
    opacity: 0.5;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.service-link:hover {
    background: rgba(242, 101, 34, 0.04);
    color: var(--brand-orange);
    border-color: rgba(242, 101, 34, 0.2);
    transform: translateX(6px);
}

.service-link:hover i {
    transform: translateX(4px);
    opacity: 1;
}

.service-link.active {
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
    color: var(--brand-white);
    border-color: transparent;
    box-shadow: 0 12px 24px rgba(242, 101, 34, 0.25);
    transform: scale(1.02);
}

.service-link.active i {
    opacity: 1;
}

.sidebar-contact-widget {
    background: linear-gradient(145deg, #1f1f1f, var(--brand-charcoal));
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    color: var(--brand-white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(31, 31, 31, 0.15);
}

.widget-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--brand-orange);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 16px;
}

.contact-number {
    display: inline-block;
    margin-top: 10px;
    font-size: 22px;
    font-weight: 800;
    color: var(--brand-yellow);
    text-decoration: none;
}

/* Service Main Content */
.service-feature-image {
    position: relative;
}

.service-feature-image img {
    height: 480px;
    object-fit: cover;
}

.service-icon-badge {
    position: absolute;
    bottom: -30px;
    right: 40px;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--brand-yellow), var(--brand-orange));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--brand-charcoal);
    border: 6px solid var(--brand-white);
    box-shadow: 0 15px 30px rgba(242, 101, 34, 0.2);
}

/* Bottom CTA/Quote Panel */
.service-quote-panel {
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));
    border-radius: 30px;
    padding: 50px 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(242, 101, 34, 0.25);
}

.cta-shape-1, .cta-shape-2 {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.cta-shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -50px;
}

.cta-shape-2 {
    width: 150px;
    height: 150px;
    bottom: -50px;
    left: 10%;
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(31, 31, 31, 0.2) !important;
}

@media (max-width: 991.98px) {
    .service-feature-image img {
        height: 350px;
    }
    .service-quote-panel {
        padding: 40px 30px;
    }
}

/* ========================================= */
/* 3D Project Cards (Portfolio Pages)        */
/* ========================================= */

.projects-3d-grid {
    perspective: 1200px;
}

.project-3d-card {
    background: var(--brand-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(31, 31, 31, 0.08);
    border: 1px solid rgba(52, 52, 52, 0.05);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.project-3d-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, transparent 50%, rgba(242, 101, 34, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 5;
}

.project-3d-card:hover {
    transform: translateY(-16px) rotateX(8deg) rotateY(-6deg) scale(1.02);
    box-shadow: 25px 35px 50px rgba(242, 101, 34, 0.15), -10px -10px 30px rgba(255, 255, 255, 0.8);
    border-color: rgba(242, 101, 34, 0.3);
}

.col-lg-4:nth-child(even) .project-3d-card:hover {
    transform: translateY(-16px) rotateX(8deg) rotateY(6deg) scale(1.02);
    box-shadow: -25px 35px 50px rgba(242, 101, 34, 0.15), 10px -10px 30px rgba(255, 255, 255, 0.8);
}

.project-3d-card:hover::after {
    opacity: 1;
}

.project-3d-img {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.project-3d-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-3d-card:hover .project-3d-img img {
    transform: scale(1.1);
}

.project-3d-content {
    padding: 35px 30px;
    flex-grow: 1;
    background: var(--brand-white);
    position: relative;
    z-index: 1;
}

.project-3d-content .badge {
    background: rgba(242, 101, 34, 0.1);
    color: var(--brand-orange);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
    display: inline-block;
}

.project-3d-content h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--brand-charcoal);
    margin-bottom: 12px;
}

.project-3d-content p {
    color: var(--brand-slate);
    margin-bottom: 0;
    line-height: 1.7;
}
