.contact-mega {
    width: min(560px, calc(100vw - 24px));
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: linear-gradient(145deg, #ffffff 0%, rgba(248, 250, 252, 0.95) 70%, rgba(238, 244, 246, 0.92) 100%);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(12px);
}

.client-logo-modal-content {
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: 0 26px 70px rgba(2, 6, 23, 0.25);
    overflow: hidden;
}

.client-logo-modal-stage {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.95) 0%, rgba(255, 255, 255, 1) 100%);
    border: 1px solid rgba(15, 23, 42, 0.08);
    min-height: 340px;
}

.client-logo-modal-image {
    max-width: 100%;
    max-height: 60vh;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.client-logo-modal-actions {
    display: flex;
    justify-content: center;
    padding-top: 14px;
}

.contact-mega-header {
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    padding-bottom: 10px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact-mega-kicker {
    font-size: 11px;
    letter-spacing: 0.28em;
    font-weight: 800;
    color: rgba(38, 80, 115, 0.75);
    margin-left: 5%;
}

.contact-mega-kicker--minimal {
    font-size: 11px;
    letter-spacing: 0.32em;
    font-weight: 700;
    color: rgba(15, 23, 42, 0.55);
}

.contact-mega-title {
    margin: 6px 0 2px;
    font-size: 22px;
    font-weight: 800;
    color: var(--secondary-color);
}

.contact-mega-subtitle {
    font-size: 13px;
    color: rgba(15, 23, 42, 0.65);
    margin-bottom: 0;
}

.contact-mega-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-mega-grid--columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.contact-mega-grid--columns .contact-mega-card {
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 14px;
    border-radius: 14px;
    gap: 12px;
}

.contact-mega-grid--columns .contact-mega-card-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-mega-card {
    display: flex;
    gap: 14px;
    text-decoration: none;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.05);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: transform 220ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 220ms ease, border-color 220ms ease;
    align-items: stretch;
}

.contact-mega-card:hover {
    transform: translateY(-3px);
    border-color: rgba(45, 149, 150, 0.4);
    box-shadow: 0 12px 32px rgba(45, 149, 150, 0.16);
}

.contact-mega-icon {
    width: 48px;
    min-width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--secondary-color);
    background: rgba(45, 149, 150, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.contact-mega-icon-primary { background: linear-gradient(145deg, rgba(45,149,150,0.18), rgba(38,80,115,0.18)); color: #1b5d5e; }
.contact-mega-icon-secondary { background: linear-gradient(145deg, rgba(116, 128, 255, 0.18), rgba(65, 76, 178, 0.18)); color: #3c42a8; }
.contact-mega-icon-tertiary { background: linear-gradient(145deg, rgba(255, 164, 116, 0.18), rgba(255, 204, 149, 0.24)); color: #c25721; }

.contact-mega-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-mega-label-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.contact-mega-label {
    font-weight: 700;
    color: var(--dark-gray);
    font-size: 16px;
}

.contact-mega-pill {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.08);
    color: rgba(15, 23, 42, 0.65);
}

.contact-mega-pill-priority { background: rgba(45, 149, 150, 0.18); color: #1a5f60; }
.contact-mega-pill-hiring { background: rgba(76, 111, 255, 0.18); color: #2b3dc8; }
.contact-mega-pill-visit { background: rgba(255, 187, 122, 0.18); color: #aa5a20; }

.contact-mega-desc {
    font-size: 13px;
    color: rgba(15, 23, 42, 0.7);
    margin: 0;
}

.contact-mega-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    color: rgba(15, 23, 42, 0.7);
}

.contact-mega-meta-link {
    font-weight: 600;
    color: var(--primary-color);
}

.contact-mega-arrow {
    align-self: center;
    color: rgba(15, 23, 42, 0.35);
    transition: color 0.2s ease, transform 0.2s ease;
}

.contact-mega-card:hover .contact-mega-arrow {
    color: var(--primary-color);
    transform: translateX(4px);
}

.contact-mega-footer {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.contact-mega-hotline-block {
    flex: 1;
    min-width: 200px;
}

.contact-mega-hotline-label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.12em;
    color: rgba(15, 23, 42, 0.6);
    margin-bottom: 4px;
}

.contact-mega-hotline {
    font-size: 20px;
    font-weight: 800;
    color: var(--secondary-color);
    text-decoration: none;
}

.contact-mega-hotline-desc {
    font-size: 12px;
    color: rgba(15, 23, 42, 0.6);
    margin: 2px 0 0;
}

.contact-mega-hotline:hover {
    color: var(--primary-color);
}

.contact-mega-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.contact-mega-action {
    min-width: 120px;
}

.contact-mega-footer--compact {
    justify-content: flex-end;
    padding-top: 10px;
}

.contact-mega-all {
    font-weight: 600;
    color: var(--secondary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.contact-mega-all:hover {
    color: var(--primary-color);
}

.contact-mega-all--pill {
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(38,80,115,0.18);
    background: rgba(255,255,255,0.9);
    font-size: 13px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

.contact-mega-all--pill:hover {
    border-color: rgba(45,149,150,0.35);
    background: rgba(248,250,252,1);
}

@media (max-width: 575.98px) {
    .contact-mega {
        width: calc(100vw - 16px);
        padding: 14px;
        border-radius: 16px;
    }

    .contact-mega-grid--columns {
        grid-template-columns: 1fr;
    }

    .contact-mega-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-mega-icon {
        margin-bottom: 6px;
    }

    .contact-mega-arrow {
        align-self: flex-end;
    }

    .contact-mega-meta {
        flex-direction: column;
        gap: 6px;
    }

    .contact-mega-actions {
        width: 100%;
        justify-content: stretch;
    }

    .contact-mega-action {
        flex: 1 1 auto;
        text-align: center;
    }
}

:root {
    --primary-color: #2D9596;
    --secondary-color: #265073;
    --accent-color: #9AD0C2;
    --light-gray: #f8f9fa;
    --dark-gray: #333;
    --text-color: #555;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.hero-section,
.hero-section .display-4 {
    font-weight: 400 !important;
}

 .blog-content-detail {
     text-align: justify;
     text-justify: inter-word;
     hyphens: auto;
 }

 .blog-content-detail p {
     margin-bottom: 1rem;
 }

/* Top Header */
.top-header {
    background: linear-gradient(110deg, #1f4a66 0%, #265073 45%, #1e3d57 100%);
    color: rgba(255, 255, 255, 0.9);
    padding: 6px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
}

.top-header .row {
    align-items: center;
}

.top-header a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    margin-left: 10px;
    font-weight: 500;
}

.top-header a:hover {
    color: var(--accent-color);
}

.top-header i {
    margin-right: 6px;
    color: var(--accent-color);
    font-size: 13px;
}

 .social-icon-link {
     width: 34px;
     height: 34px;
     border-radius: 999px;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     text-decoration: none;
     color: #fff;
     background: rgba(255, 255, 255, 0.12);
     border: 1px solid rgba(255, 255, 255, 0.28);
     transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
 }

 .social-icon-link i {
     margin-right: 0;
     font-size: 14px;
 }

 .social-icon-link:hover {
     color: #fff;
     background: rgba(255, 255, 255, 0.18);
     border-color: rgba(255, 255, 255, 0.40);
     transform: translateY(-2px);
 }

 .social-icon-link:focus,
 .social-icon-link:focus-visible {
     outline: none;
     box-shadow: 0 0 0 4px rgba(45, 149, 150, 0.25);
 }

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    padding: 0;
    transition: all 0.3s ease;
    z-index: 1030;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

/* Brand Styling */
.navbar-brand {
    gap: clamp(10px, 1.8vw, 18px);
    padding: clamp(12px, 1.8vw, 18px) 0;
    margin-left: clamp(0px, 3vw, 32px);
    margin-right: clamp(18px, 5vw, 64px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    flex-wrap: wrap;
}

.brand-identity {
    text-decoration: none;
    color: inherit;
}

.brand-identity::before {
    content: '';
    position: absolute;
    inset: -10px -16px;
    background: radial-gradient(circle at left, rgba(38, 80, 115, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 0px;
    pointer-events: none;
}

/* .brand-identity:hover {
    transform: translateY(-2px);
}

.brand-identity:hover::before {
    opacity: 1;
} */

.brand-mark {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s ease, background 0.3s ease, border 0.3s ease;
}

.brand-mark--image {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.92));
    border: 1px solid rgba(231, 236, 240, 0.9);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}

.brand-mark--initials {
    background: linear-gradient(145deg, rgba(45, 149, 150, 0.16), rgba(38, 80, 115, 0.16));
    border: 1px solid rgba(38, 80, 115, 0.18);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.brand-mark__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    filter: drop-shadow(0 4px 14px rgba(15, 23, 42, 0.18));
}

.brand-mark__initials {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--secondary-color);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
    max-width: clamp(180px, 32vw, 360px);
}

.brand-name {
    font-size: clamp(14px, 1vw, 18px);
    font-weight: 600;
    color: var(--secondary-color);
    letter-spacing: 0.12em;
}

.brand-divider {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    margin: 6px 0 8px;
    display: inline-flex;
}

.brand-tagline {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(38, 80, 115, 0.75);
    font-weight: 500;
}

@media (max-width: 575.98px) {
    .brand-mark {
        width: 52px;
        height: 52px;
    }

    .brand-name {
        letter-spacing: 0.18em;
    }

    .brand-tagline {
        letter-spacing: 0.14em;
    }

    .navbar .nav-link {
        padding: 14px 12px !important;
    }
}

@media (max-width: 1399.98px) {
    .navbar-brand {
        margin-left: clamp(0px, 2vw, 24px);
    }

    .navbar .nav-link {
        font-size: 14px;
        padding: 22px 12px !important;
    }
}

@media (max-width: 1199.98px) {
    .navbar .navbar-collapse {
        padding: 0 12px 16px;
    }

    .navbar-nav {
        gap: 0;
    }

    .navbar .nav-link {
        justify-content: flex-start;
        text-align: left;
        min-height: 48px;
        width: 100%;
    }

    .navbar .dropdown-menu-end {
        right: 16px !important;
        left: 16px !important;
        width: calc(100vw - 32px);
    }

    .dropdown-menu.dropdown-menu-modern {
        width: calc(100vw - 32px);
        max-width: none;
    }
}

/* Navigation Items - Perfect Horizontal Alignment */
.navbar-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(0px, 0.6vw, 8px);
    flex-wrap: wrap;
}

.nav-item {
    display: flex;
    align-items: center;
    height: 100%;
}

.navbar .nav-link {
    color: var(--dark-gray) !important;
    font-weight: 500;
    font-size: 15px;
    padding: 22px 14px !important;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: normal;
    height: 100%;
    border: none !important;
    outline: none !important;
    line-height: 1.25;
    min-height: 54px;
    text-align: center;
}

.navbar .nav-link:focus,
.navbar .nav-link:active,
.navbar .nav-link:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

/* Active and Hover States */
.navbar .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.navbar .nav-link:hover::before {
    width: 60%;
}

.navbar .nav-link.active::before {
    width: 80%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.navbar .nav-link:hover {
    color: var(--primary-color) !important;
    background: rgba(45, 149, 150, 0.05);
}

.navbar .nav-link.active {
    color: var(--primary-color) !important;
    background: rgba(45, 149, 150, 0.08);
    font-weight: 600;
}

/* Dropdown toggle active state when child is active */
.dropdown-toggle.active {
    color: var(--primary-color) !important;
    background: rgba(45, 149, 150, 0.08);
}

.dropdown-toggle.active::before {
    width: 80%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

/* Dropdown Styling */
.nav-item.dropdown {
    position: relative;
}

.dropdown-toggle {
    border: none !important;
    outline: none !important;
}

.dropdown-toggle:focus,
.dropdown-toggle:active,
.dropdown-toggle:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
}

.dropdown-toggle::after {
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 8px;
    padding: 8px 0;
    margin-top: 0 !important;
    top: 100% !important;
    left: 0;
    animation: fadeInDown 0.3s ease;
    position: absolute;
}

.navbar .dropdown-menu-end {
    left: auto !important;
    right: 0 !important;
    transform-origin: top right;
}

.dropdown-menu.dropdown-menu-modern {
    max-width: min(640px, calc(100vw - 32px));
}

/* Gallery mega menu */
.gallery-mega {
    width: min(760px, calc(100vw - 32px));
    padding: 14px;
    border-radius: 14px;
    overflow: hidden;
}

.gallery-mega-header {
    padding: 6px 6px 12px;
}

.gallery-mega-title {
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 0.2px;
}

.gallery-mega-subtitle {
    font-size: 13px;
    color: rgba(0,0,0,0.6);
    margin-top: 2px;
}

.gallery-mega-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.gallery-mega-card {
    display: flex;
    align-items: center;
    text-decoration: none;
    border-radius: 14px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    padding: 16px;
    gap: 14px;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.gallery-mega-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.14);
}

.gallery-mega-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(45, 149, 150, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--secondary-color);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

.gallery-mega-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.gallery-mega-label {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 2px;
    white-space: normal;
    line-height: 1.25;    
    word-break: normal;
}

.gallery-mega-meta {
    font-size: 12px;
    color: rgba(0,0,0,0.6);
}

.gallery-mega-footer {
    margin-top: 12px;
    padding: 10px 6px 4px;
    border-top: 1px solid rgba(0,0,0,0.08);
    display: flex;
    justify-content: flex-end;
}

.gallery-mega-all {
    font-weight: 600;
    color: var(--secondary-color);
    text-decoration: none;
    padding: 8px 10px;
    border-radius: 10px;
    transition: background 0.18s ease, color 0.18s ease;
}

.gallery-mega-all:hover {
    background: rgba(38, 80, 115, 0.08);
    color: var(--primary-color);
}

/* Gallery hub cards ( /gallery ) */
.gallery-hub-card {
    display: block;
    text-decoration: none;
    border-radius: 0;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.gallery-hub-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(0,0,0,0.14);
}

.gallery-hub-media {
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Gallery listing cards ( /gallery/{type} and /gallery/{type}/{id} ) */
.gallery-page .project-card {
    border-radius: 0;
    height: 360px;
}

.gallery-hub-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.0) 30%, rgba(0,0,0,0.30) 100%);
}

.gallery-hub-body {
    padding: 14px 14px 16px;
}

.gallery-hub-title {
    font-weight: 700;
    color: var(--secondary-color);
}

.gallery-hub-meta {
    font-size: 13px;
    color: rgba(0,0,0,0.6);
    margin-top: 4px;
}

@media (max-width: 991.98px) {
    .gallery-mega {
        width: min(680px, calc(100vw - 24px));
    }

    .gallery-mega-grid {
        grid-template-columns: 1fr;
    }
}

.dropdown-menu-end {
    left: auto !important;
    right: 0 !important;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUpFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu-modern {
    min-width: 220px;
}

.dropdown-item {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-gray);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.dropdown-item i {
    color: var(--primary-color);
    width: 20px;
    font-size: 14px;
}

.dropdown-item:hover {
    background: linear-gradient(90deg, rgba(45, 149, 150, 0.1), transparent);
    color: var(--primary-color);
    padding-left: 28px;
}

.dropdown-item.active {
    background: var(--primary-color);
    color: white;
}

.dropdown-item.active i {
    color: white;
}

.dropdown-divider {
    margin: 8px 0;
    border-color: rgba(0,0,0,0.08);
}

/* Navbar Toggler */
.navbar-toggler {
    border: 2px solid var(--primary-color);
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    background: var(--primary-color);
}

.navbar-toggler:hover .navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(45, 149, 150, 0.25);
}

/* Mobile Responsive */
@media (max-width: 1199px) {
    .navbar-nav {
        padding: 15px 0;
        gap: 0;
    }
    
    .navbar .nav-link {
        padding: 12px 16px !important;
    }
    
    .navbar .nav-link::before {
        display: none;
    }
    
    .navbar .nav-link:hover,
    .navbar .nav-link.active {
        background: rgba(45, 149, 150, 0.1);
        border-radius: 6px;
    }
    
    .dropdown-menu {
        border: 1px solid rgba(0,0,0,0.08);
        box-shadow: none;
        margin-left: 15px;
    }
    
    .navbar-brand {
        font-size: 20px;
        padding: 15px 0;
    }

    .navbar-brand .navbar-logo {
        height: 45px;
        max-width: 180px;
    }
}

@media (min-width: 1200px) {
    .navbar-nav {
        height: 100%;
    }
    
    /* Show dropdown on hover - positioned below nav item */
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }
    
    /* Ensure dropdown appears directly below */
    .navbar-nav .dropdown-menu {
        transform-origin: top center;
    }
}

/* Hero Section */
.hero-section {
    padding: 5px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

 .hero-section .hero-standard-title {
     font-weight: 800;
     color: rgba(15, 23, 42, 0.45);
     line-height: 1.02;
     letter-spacing: -0.02em;
     text-wrap: balance;
 }

 .hero-section .hero-standard-line {
     font-size: clamp(34px, 4.2vw, 52px);
     text-wrap: balance;
     word-break: break-word;
 }

 .hero-section .hero-standard-line:nth-child(3n + 1) {
     color: var(--secondary-color);
 }

 .hero-section .hero-standard-line:nth-child(3n + 2) {
     color: var(--primary-color);
 }

 .hero-section .hero-standard-line:nth-child(3n) {
     color: #f08a22;
 }

 .hero-section .hero-standard-quote {
     margin-top: 18px;
     max-width: none;
     font-size: 18px;
     font-weight: 600;
     line-height: 1.5;
     color: rgba(15, 23, 42, 0.78);
     letter-spacing: 0.2px;
     font-style: italic;
     width: 80%;
     margin: 18px 0 4px 20%;
     text-align: left;
     white-space: nowrap;
     overflow: visible;
     text-overflow: clip;
 }

 .hero-section .hero-standard-ctas {
     margin-top: 4px;
 }

 @media (max-width: 991.98px) {
     .hero-section .hero-standard-quote {
         font-size: 16px;
         line-height: 1.6;
         width: auto;
         margin: 18px auto 4px auto;
         text-align: center;
         white-space: normal;
         word-break: break-word;
     }
 }

 .hero-section .hero-snap {
     display: flex;
     overflow-x: auto;
     scroll-snap-type: x mandatory;
     scroll-behavior: smooth;
     -webkit-overflow-scrolling: touch;
     scroll-snap-stop: always;
     overscroll-behavior-x: contain;
     scrollbar-width: none;
     -ms-overflow-style: none;
 }

 .hero-section .hero-snap:focus-visible {
     outline: none;
     box-shadow: 0 0 0 4px rgba(45, 149, 150, 0.16);
     border-radius: 14px;
 }

 .hero-section .hero-snap::-webkit-scrollbar {
     display: none;
 }

 .hero-section .hero-snap-slide {
     flex: 0 0 100%;
     scroll-snap-align: start;
     padding: 5px 0;
     min-height: 500px;
     display: flex;
     align-items: center;
 }

@media (max-width: 575.98px) {
    .hero-section .hero-snap-slide {
        padding: 16px 0 28px;
        min-height: auto;
    }

    .hero-section .hero-snap-slide .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .hero-section .hero-standard-line {
        font-size: clamp(26px, 8vw, 34px);
    }

    .hero-section .hero-standard-title,
    .hero-section .hero-standard-quote {
        max-width: calc(100vw - 48px);
    }
}

 .hero-section .btn.btn-lg {
     padding: 12px 22px;
     border-radius: 999px;
     font-weight: 600;
     letter-spacing: 0.2px;
     box-shadow: none;
 }

 .hero-section .btn.btn-lg:focus,
 .hero-section .btn.btn-lg:focus-visible {
     box-shadow: 0 0 0 4px rgba(45, 149, 150, 0.20);
 }

 .hero-section .btn.btn-primary.btn-lg {
     background: var(--primary-color);
     border: 1px solid rgba(45, 149, 150, 0.35);
 }

 .hero-section .btn.btn-primary.btn-lg:hover {
     background: var(--secondary-color);
     border-color: rgba(38, 80, 115, 0.35);
     transform: none;
     box-shadow: none;
 }

 .hero-section .btn.btn-outline-primary.btn-lg {
     background: rgba(45, 149, 150, 0.10);
     border: 1px solid rgba(45, 149, 150, 0.55);
     color: var(--secondary-color);
 }

 .hero-section .btn.btn-outline-primary.btn-lg:hover {
     background: rgba(45, 149, 150, 0.16);
     border-color: rgba(45, 149, 150, 0.70);
     color: var(--secondary-color);
     transform: none;
 }

 .hero-section .hero-media {
     position: relative;
 }

 .hero-section .hero-media {
     perspective: 1200px;
 }

 .hero-section .hero-media::before {
     content: "";
     position: absolute;
     inset: -18px;
     border-radius: 28px;
     background:
         radial-gradient(60% 60% at 60% 40%, rgba(45, 149, 150, 0.22) 0%, rgba(45, 149, 150, 0.00) 70%),
         radial-gradient(55% 55% at 30% 70%, rgba(38, 80, 115, 0.18) 0%, rgba(38, 80, 115, 0.00) 70%);
     filter: blur(2px);
     pointer-events: none;
 }

 .hero-section .hero-media-frame {
     position: relative;
     border-radius: 22px;
     padding: 2px;
     background: linear-gradient(135deg, rgba(45, 149, 150, 0.55), rgba(38, 80, 115, 0.45));
     box-shadow: 0 22px 45px rgba(0, 0, 0, 0.12);
 }

 .hero-section .hero-media-frame::after {
     content: "";
     position: absolute;
     inset: 2px;
     border-radius: 20px;
     background: rgba(255, 255, 255, 0.55);
     pointer-events: none;
 }

 .hero-section .hero-float-card {
     position: absolute;
     left: 14px;
     bottom: 14px;
     z-index: 2;
     padding: 12px 14px;
     border-radius: 16px;
     background: rgba(255, 255, 255, 0.82);
     border: 1px solid rgba(15, 23, 42, 0.08);
     backdrop-filter: blur(10px);
     -webkit-backdrop-filter: blur(10px);
     box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
     max-width: min(320px, calc(100% - 28px));
 }

 .hero-section .hero-float-title {
     font-size: 12px;
     font-weight: 800;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     color: rgba(38, 80, 115, 0.85);
     margin-bottom: 1px;
 }

 .hero-section .hero-float-desc {
     font-size: 13px;
     color: rgba(15, 23, 42, 0.75);
     line-height: 1.45;
     white-space: nowrap;
     overflow: hidden;
     text-overflow: ellipsis;
 }

 .hero-section .hero-media-img {
     position: relative;
     z-index: 1;
     width: 100%;
     height: 420px;
     border-radius: 20px;
     object-fit: cover;
     display: block;
     transform-style: preserve-3d;
     animation: heroFloat3d 6.5s ease-in-out infinite;
     will-change: transform;
 }

 @keyframes heroFloat3d {
     0%,
     100% {
         transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg);
     }
     50% {
         transform: translate3d(0, -16px, 0) rotateX(2deg) rotateY(-2deg);
     }
 }

 @media (prefers-reduced-motion: reduce) {
     .hero-section .hero-media-img {
         animation: none;
     }
 }

 .about-overview-media {
     position: relative;
     perspective: 1200px;
 }

 .about-overview-media::before {
     content: "";
     position: absolute;
     inset: -18px;
     border-radius: 28px;
     background:
         radial-gradient(60% 60% at 60% 40%, rgba(45, 149, 150, 0.22) 0%, rgba(45, 149, 150, 0.00) 70%),
         radial-gradient(55% 55% at 30% 70%, rgba(38, 80, 115, 0.18) 0%, rgba(38, 80, 115, 0.00) 70%);
     filter: blur(2px);
     pointer-events: none;
 }

 .about-overview-frame {
     position: relative;
     border-radius: 22px;
     padding: 2px;
     background: linear-gradient(135deg, rgba(45, 149, 150, 0.55), rgba(38, 80, 115, 0.45));
     box-shadow: 0 22px 45px rgba(0, 0, 0, 0.12);
 }

 .about-overview-frame::after {
     content: "";
     position: absolute;
     inset: 2px;
     border-radius: 20px;
     background: rgba(255, 255, 255, 0.55);
     pointer-events: none;
 }

 .about-overview-img {
     position: relative;
     z-index: 1;
     width: 100%;
     height: 420px;
     border-radius: 20px;
     object-fit: cover;
     display: block;
     transform-style: preserve-3d;
     animation: heroFloat3d 6.5s ease-in-out infinite;
     will-change: transform;
 }

 @media (prefers-reduced-motion: reduce) {
     .about-overview-img {
         animation: none;
     }
 }

.hero-section h1 {
    color: var(--secondary-color);
}

.hero-section .lead {
    color: var(--text-color);
    font-size: 18px;
}

.hero-section .carousel-item {
    padding: 5px 0;
    min-height: 500px;
}

.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

.hero-section .carousel-control-prev {
    left: 20px;
}

.hero-section .carousel-control-next {
    right: 20px;
}

.hero-section .carousel-control-prev:hover,
.hero-section .carousel-control-next:hover {
    opacity: 1;
}

.hero-section .carousel-indicators {
    bottom: -40px;
}

.hero-section .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

/* Buttons */
.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 149, 150, 0.3);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
}

/* Section Padding */
.section-padding {
    /* padding: 80px 0; */
    padding-top: 3% !important;
    padding-bottom: 2% !important;

}

/* Team Section - Override padding for carousel */
#team.section-padding {
    padding: 0;
}

#team .section-title {
    padding-top: 80px;
    margin-bottom: 0;
}

.bg-light-gray {
    background: var(--light-gray);
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 2px;
}

.section-title h2 {
    font-size: clamp(28px, 2.4vw + 10px, 46px);
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 12px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.section-title h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: min(140px, 60%);
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    box-shadow: 0 10px 24px rgba(45, 149, 150, 0.18);
}

.section-title p {
    font-size: 18px;
    color: var(--text-color);
}

.section-kicker {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.22em;
    color: rgba(15, 23, 42, 0.45);
    margin-bottom: 12px;
    text-transform: uppercase;
}

#about .about-content {
    max-width: 560px;
}

#about .about-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.18em;
    color: rgba(15, 23, 42, 0.60);
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 6px 10px;
    border-radius: 999px;
    margin-bottom: 16px;
}

#about .about-title {
    font-size: clamp(22px, 1.8vw + 14px, 38px);
    font-weight: 500;
    color: var(--secondary-color);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

#about .about-subtitle {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

#about .about-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    color: rgba(15, 23, 42, 0.70);
    margin-bottom: 10px;
}

#about .about-desc {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.75;
    text-align: justify;
    text-justify: inter-word;
    margin-bottom: 0;
}

#about .about-story {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

#about .about-story-title {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: rgba(15, 23, 42, 0.72);
    text-transform: uppercase;
    margin-bottom: 12px;
}

#about .about-story-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

#about .about-story-list li {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 12px;
    align-items: start;
}

#about .about-story-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: rgba(45, 149, 150, 0.12);
    border: 1px solid rgba(45, 149, 150, 0.20);
    color: #2d9596;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

#about .about-story-heading {
    font-size: 14px;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 2px;
}

#about .about-story-text {
    font-size: 12.5px;
    line-height: 1.55;
    color: rgba(15, 23, 42, 0.72);
}

#about .about-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(45, 149, 150, 1) 0%, rgba(32, 126, 127, 1) 100%);
    border: 0;
    box-shadow: 0 14px 34px rgba(45, 149, 150, 0.30);
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

#about .about-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(45, 149, 150, 0.36);
    filter: saturate(1.05);
}

#about .about-cta:active {
    transform: translateY(0);
    box-shadow: 0 12px 26px rgba(45, 149, 150, 0.26);
}

#about .about-cta:focus-visible {
    outline: 3px solid rgba(45, 149, 150, 0.35);
    outline-offset: 3px;
}

#about .about-media {
    position: relative;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    padding: 0;
}

 #about .about-home-media {
     position: relative;
     perspective: 1200px;
 }

 #about .about-home-media::before {
     content: "";
     position: absolute;
     inset: -18px;
     border-radius: 28px;
     background:
         radial-gradient(60% 60% at 60% 40%, rgba(45, 149, 150, 0.22) 0%, rgba(45, 149, 150, 0.00) 70%),
         radial-gradient(55% 55% at 30% 70%, rgba(38, 80, 115, 0.18) 0%, rgba(38, 80, 115, 0.00) 70%);
     filter: blur(2px);
     pointer-events: none;
 }

 #about .about-home-frame {
     position: relative;
     border-radius: 22px;
     padding: 2px;
     background: linear-gradient(135deg, rgba(45, 149, 150, 0.55), rgba(38, 80, 115, 0.45));
     box-shadow: 0 22px 45px rgba(0, 0, 0, 0.12);
 }

 #about .about-home-frame::after {
     content: "";
     position: absolute;
     inset: 2px;
     border-radius: 20px;
     background: rgba(255, 255, 255, 0.55);
     pointer-events: none;
 }

 #about .about-home-img {
     position: relative;
     z-index: 1;
     width: 100%;
     height: 360px;
     border-radius: 20px;
     object-fit: cover;
     display: block;
     transform-style: preserve-3d;
     animation: heroFloat3d 6.5s ease-in-out infinite;
     will-change: transform;
 }

 @media (prefers-reduced-motion: reduce) {
     #about .about-home-img {
         animation: none;
     }
 }

#about .about-media-gallery {
    width: 100%;
    height: 360px;
}

#about .about-slideshow {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#about .about-slideshow-tilt {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.16);
    transform-style: preserve-3d;
    transition: transform 260ms ease;
    background: #fff;
    position: relative;
}

#about .about-slideshow-tilt::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(70% 65% at 18% 85%, rgba(45, 149, 150, 0.22) 0%, rgba(45, 149, 150, 0.10) 38%, rgba(45, 149, 150, 0.00) 70%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.00) 40%, rgba(15, 23, 42, 0.10) 100%);
}

#about .about-slideshow-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: translateZ(0);
    transition: opacity 220ms ease, transform 220ms ease;
}

#about .about-slideshow-image.is-enter {
    opacity: 0.92;
    transform: scale(1.01);
}

#about .about-image {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 22px;
    display: block;
}

#about .about-float-card {
    position: absolute;
    left: 12px;
    bottom: 12px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 14px;
    padding: 12px 14px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
    transform: none;
    max-width: calc(100% - 24px);
    z-index: 3;
}

#about .about-float-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: #2d9596;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    box-shadow: 0 10px 22px rgba(45, 149, 150, 0.35);
}

#about .about-float-card,
#projects .project-float-card {
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

#services .service-float-card {
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

#about .about-float-title {
    font-size: 14px;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 0;
}

#projects .project-float-title,
#services .service-float-title {
    font-size: 14px;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 0;
}

#about .about-float-desc {
    font-size: 12.5px;
    color: rgba(15, 23, 42, 0.70);
    line-height: 1.55;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#projects .project-float-desc,
#services .service-float-desc {
    font-size: 12.5px;
    color: rgba(15, 23, 42, 0.70);
    line-height: 1.55;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#about .about-feature-row {
    margin-top: 26px !important;
}

#about .about-feature-item {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    padding: 24px;
    height: 100%;
}

#about .about-feature-row > div:nth-child(odd) .about-feature-item {
    background: #c5edff;
}

#about .about-feature-row > div:nth-child(even) .about-feature-item {
    background: #fff;
}

#about .about-feature-desc,
#about .about-feature-desc-paragraph {
    text-align: justify;
    text-justify: inter-word;
}

#about .about-feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: rgba(45, 149, 150, 0.14);
    border: 1px solid rgba(45, 149, 150, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1f6f70;
    margin-bottom: 14px;
}

#about .about-feature-title {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.10em;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

#about .about-feature-desc {
    margin: 0;
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 0;
}

#about .about-feature-desc-paragraph {
    margin: 0 0 0.5em;
}

#about .about-feature-desc-paragraph:last-child {
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    #about .about-media {
        padding: 5px;
    }

    #about .about-image {
        height: 260px;
    }

    #about .about-media-gallery {
        height: 260px;
    }
}

@media (max-width: 575.98px) {
    #about .about-image {
        height: 220px;
    }

    #about .about-media-gallery {
        height: 220px;
    }
}

#services .services-showcase {
    margin-top: 18px;
}

 #services .services-showcase-card {
     background: #fff;
     border-radius: 18px;
     box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
     overflow: hidden;
     border: 1px solid rgba(15, 23, 42, 0.08);
     position: relative;
     margin-bottom: 18px;
 }

 #services .service-category-tabs .nav-pills {
     gap: 12px;
     justify-content: flex-start !important;
     flex-wrap: wrap;
     border-bottom: 1px solid rgba(15, 23, 42, 0.08);
     padding-bottom: 10px;
 }

 #services .service-category-tabs .nav-link {
     appearance: none;
     border: 0;
     padding: 12px 16px !important;
     border-radius: 14px;
     font-weight: 800;
     font-size: 13px;
     color: rgba(15, 23, 42, 0.75);
     background: rgba(15, 23, 42, 0.04);
     box-shadow: none;
     position: relative;
     transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
     letter-spacing: 0.01em;
     min-width: 120px;
     text-align: center;
     height: auto !important;
 }

 #projects .project-category-tabs .nav-link,
 #services .service-category-tabs .nav-link {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     min-height: 40px;
     line-height: 1.1;
     white-space: nowrap;
     overflow: hidden;
     text-overflow: ellipsis;
 }

 #services .service-category-tabs .nav-link::before,
 #services .service-category-tabs .nav-link::after {
     display: none !important;
 }

 #services .service-category-tabs .nav-link:hover {
     color: var(--secondary-color);
     background: rgba(45, 149, 150, 0.10);
     transform: translateY(-1px);
 }

 #services .service-category-tabs a[data-services-more].nav-link {
     border: 1px solid rgba(45, 149, 150, 0.25);
     background: rgba(45, 149, 150, 0.06);
 }

 #services .service-category-tabs a[data-services-more].nav-link:hover {
     border-color: rgba(45, 149, 150, 0.45);
     background: rgba(45, 149, 150, 0.10);
 }

 #services .service-category-tabs .nav-link.active {
     color: #fff !important;
     background: linear-gradient(135deg, rgba(45, 149, 150, 1) 0%, rgba(32, 126, 127, 1) 100%) !important;
     box-shadow: 0 14px 34px rgba(45, 149, 150, 0.22), inset 0 -3px 0 rgba(255, 255, 255, 0.35);
 }

 #services .service-category-tabs a[data-services-more].nav-link.active {
     box-shadow: 0 14px 34px rgba(45, 149, 150, 0.24), inset 0 -3px 0 rgba(255, 255, 255, 0.40);
 }

 #services .service-showcase-actions {
     margin-top: auto;
     padding-top: 16px;
     padding-bottom: 0;
 }

 #services .service-showcase-actions .btn.btn-primary {
     border-radius: 999px;
     padding: 11px 18px;
     background: linear-gradient(135deg, rgba(45, 149, 150, 1) 0%, rgba(32, 126, 127, 1) 100%);
     border: 0;
     box-shadow: 0 14px 34px rgba(45, 149, 150, 0.26);
     transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
 }

 #services .service-showcase-actions .btn.btn-primary:hover {
     transform: translateY(-2px);
     box-shadow: 0 18px 42px rgba(45, 149, 150, 0.34);
     filter: saturate(1.05);
 }

 #services .service-showcase-actions .btn.btn-outline-primary {
     border-radius: 999px;
     padding: 11px 18px;
     border-color: rgba(45, 149, 150, 0.45);
     color: rgba(15, 23, 42, 0.78);
     background: rgba(45, 149, 150, 0.06);
     transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
 }

 #services .service-showcase-actions .btn.btn-outline-primary:hover {
     transform: translateY(-2px);
     border-color: rgba(45, 149, 150, 0.65);
     background: rgba(45, 149, 150, 0.10);
     box-shadow: 0 14px 34px rgba(15, 23, 42, 0.10);
 }

#services .service-tabs {
    display: flex;
    gap: 12px;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    align-items: center;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

 #services .service-tabs::-webkit-scrollbar {
     height: 6px;
 }

 #services .service-tabs::-webkit-scrollbar-thumb {
     background: rgba(15, 23, 42, 0.18);
     border-radius: 999px;
 }

 #services .service-tabs::-webkit-scrollbar-track {
     background: rgba(15, 23, 42, 0.06);
     border-radius: 999px;
 }

#services .service-tabs-more {
    flex-shrink: 0;
    position: relative;
    align-self: center;
}

#services .service-tabs-more .dropdown-menu {
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    padding: 8px;
    z-index: 20;
    margin-top: 6px;
    inset: auto !important;
    top: 100% !important;
    left: 0 !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
}

#services .service-tabs-more .dropdown-item {
    border-radius: 12px;
    font-weight: 800;
    font-size: 13px;
    padding: 10px 12px;
}

#services .service-tabs-more .dropdown-item.active,
#services .service-tabs-more .dropdown-item:active {
    color: #fff;
    background: linear-gradient(135deg, rgba(45, 149, 150, 1) 0%, rgba(32, 126, 127, 1) 100%);
}

#services .service-tabs .nav-link {
    appearance: none;
    border: 0;
    padding: 10px 14px !important;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.04);
    color: rgba(15, 23, 42, 0.75);
    font-weight: 800;
    font-size: 12.5px;
    letter-spacing: 0.02em;
    line-height: 1;
    transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
    user-select: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    flex: 0 0 auto;
    min-width: 0;
    width: auto;
    height: auto !important;
}

#services .service-tabs .nav-link::before,
#services .service-tabs .nav-link::after {
    display: none !important;
}

#services .service-tabs .nav-link:hover {
    color: var(--secondary-color);
    background: rgba(45, 149, 150, 0.10);
    transform: translateY(-1px);
}

#services .service-tabs .nav-link.active {
    color: #fff !important;
    background: linear-gradient(135deg, rgba(45, 149, 150, 1) 0%, rgba(32, 126, 127, 1) 100%) !important;
    box-shadow: 0 14px 34px rgba(45, 149, 150, 0.22), inset 0 -3px 0 rgba(255, 255, 255, 0.35);
}

#services .services-feature-row {
    margin-bottom: 0;
}

#services .services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 32px;
}

#services .service-mini-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 20px;
    padding: 18px 20px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04), 0 2px 6px rgba(15, 23, 42, 0.02);
    transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

#services .service-mini-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(45, 149, 150, 0.6) 0%, rgba(38, 80, 115, 0.6) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

#services .service-mini-card.is-active {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9f9 100%);
    border-color: rgba(45, 149, 150, 0.25);
    box-shadow: 0 8px 32px rgba(45, 149, 150, 0.15), 0 4px 12px rgba(45, 149, 150, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

#services .service-mini-card.is-active::before {
    transform: scaleX(1);
}

#services .service-mini-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12), 0 6px 16px rgba(15, 23, 42, 0.06);
    border-color: rgba(45, 149, 150, 0.15);
}

#services .service-mini-card:hover::before {
    transform: scaleX(1);
}

#services .service-mini-card.is-active:hover {
    border-color: rgba(45, 149, 150, 0.35);
    box-shadow: 0 12px 48px rgba(45, 149, 150, 0.18), 0 6px 20px rgba(45, 149, 150, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(-5px);
}

#services .service-mini-head {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    margin-bottom: 14px;
}

#services .service-mini-index {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(45, 149, 150, 0.12) 0%, rgba(38, 80, 115, 0.08) 100%);
    border: 1.5px solid rgba(45, 149, 150, 0.20);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 13px;
    letter-spacing: 0.02em;
    color: #1f6f70;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(45, 149, 150, 0.08);
    transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

#services .service-mini-card:hover .service-mini-index {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(45, 149, 150, 0.12);
}

#services .service-mini-card.is-active .service-mini-index {
    background: linear-gradient(135deg, rgba(45, 149, 150, 0.18) 0%, rgba(38, 80, 115, 0.12) 100%);
    border-color: rgba(45, 149, 150, 0.30);
    color: #1a5f60;
}

#services .service-mini-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.04) 0%, rgba(15, 23, 42, 0.02) 100%);
    border: 1.5px solid rgba(15, 23, 42, 0.08);
    color: rgba(15, 23, 42, 0.65);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    transition: all 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

#services .service-mini-card:hover .service-mini-icon {
    transform: scale(1.05);
    background: linear-gradient(135deg, rgba(45, 149, 150, 0.08) 0%, rgba(38, 80, 115, 0.04) 100%);
    border-color: rgba(45, 149, 150, 0.15);
    color: rgba(45, 149, 150, 0.85);
}

#services .service-mini-card.is-active .service-mini-icon {
    background: linear-gradient(135deg, rgba(45, 149, 150, 0.14) 0%, rgba(38, 80, 115, 0.10) 100%);
    border-color: rgba(45, 149, 150, 0.25);
    color: #2d9596;
    box-shadow: 0 2px 8px rgba(45, 149, 150, 0.12);
}

#services .service-mini-title {
    font-size: 16px;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 6px;
    line-height: 1.3;
    letter-spacing: -0.01em;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 280ms ease;
}

#services .service-mini-card:hover .service-mini-title {
    color: rgba(45, 149, 150, 1);
}

#services .service-mini-desc {
    color: rgba(15, 23, 42, 0.68);
    margin: 0;
    font-size: 13px;
    line-height: 1.65;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 280ms ease;
}

#services .service-mini-card:hover .service-mini-desc {
    color: rgba(15, 23, 42, 0.78);
}

#services a.service-mini-card {
    text-decoration: none;
}

#services .services-feature {
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 48px 52px 28px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 420px;
}

#services .services-feature::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: transparent;
    z-index: 0;
}

#services .services-feature > * {
    position: relative;
    z-index: 1;
}

#services .services-eyebrow {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 900;
    color: rgba(45, 149, 150, 0.75);
    background: linear-gradient(135deg, rgba(45, 149, 150, 0.08) 0%, rgba(38, 80, 115, 0.06) 100%);
    border: 1.5px solid rgba(45, 149, 150, 0.15);
    padding: 7px 14px;
    border-radius: 999px;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(45, 149, 150, 0.06);
}

#services .services-feature-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.18em;
    color: rgba(15, 23, 42, 0.60);
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 6px 10px;
    border-radius: 999px;
    margin-bottom: 16px;
}

#services .services-feature-title {
    font-size: clamp(24px, 1.5vw + 18px, 36px);
    font-weight: 900;
    color: var(--secondary-color);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

#services .services-feature-desc {
    color: rgba(15, 23, 42, 0.72);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 20px;
}

#services .services-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: grid;
    gap: 12px;
}

#services .services-feature-list li {
    position: relative;
    padding-left: 28px;
    color: rgba(15, 23, 42, 0.82);
    font-size: 14.5px;
    line-height: 1.55;
    opacity: 0.92;
}

#services .services-feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.1em;
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: rgba(45, 149, 150, 0.12);
    border: 1px solid rgba(45, 149, 150, 0.22);
    color: #2d9596;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 900;
}

#services .services-feature-actions {
    margin-bottom: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
    padding-top: 16px;
    justify-content: flex-start;
}

#services .services-feature-actions .btn.btn-primary {
    border-radius: 999px;
    padding: 11px 18px;
    background: linear-gradient(135deg, rgba(45, 149, 150, 1) 0%, rgba(32, 126, 127, 1) 100%);
    border: 0;
    box-shadow: 0 14px 34px rgba(45, 149, 150, 0.26);
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

#services .services-feature-actions .btn.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(45, 149, 150, 0.34);
    filter: saturate(1.05);
}

#services .services-feature-actions .btn.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 12px 26px rgba(45, 149, 150, 0.24);
}

#services .services-feature-actions .btn.btn-outline-primary {
    border-radius: 999px;
    padding: 11px 18px;
    border-color: rgba(45, 149, 150, 0.45);
    color: rgba(15, 23, 42, 0.78);
    background: rgba(45, 149, 150, 0.06);
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

#services .services-feature-actions .btn.btn-outline-primary:hover {
    transform: translateY(-2px);
    border-color: rgba(45, 149, 150, 0.65);
    background: rgba(45, 149, 150, 0.10);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.10);
}

#services .services-feature-media {
    border-radius: 0;
    overflow: visible;
    border: 0;
    position: relative;
    height: 100%;
    min-height: 370px;
    background: #fff;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
}

#services .service-slideshow {
    width: 100%;
    height: 360px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

 #services .service-slideshow.is-enter {
     animation: slideUpFadeIn 650ms cubic-bezier(0.22, 1, 0.36, 1) both;
     will-change: transform, opacity;
 }

#services .service-slideshow::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(70% 65% at 18% 85%, rgba(45, 149, 150, 0.18) 0%, rgba(45, 149, 150, 0.08) 38%, rgba(45, 149, 150, 0.00) 70%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.00) 40%, rgba(15, 23, 42, 0.10) 100%);
    z-index: 2;
}

#services .service-slideshow-tilt {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.16);
    transition: transform 360ms ease, opacity 360ms ease;
    background: #fff;
    position: relative;
    z-index: 1;
}

 @media (min-width: 992px) {
     #services .services-feature-media {
         padding: 18px;
         padding-left: 8px;
     }
 }

#services .service-slideshow-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform-style: preserve-3d;
    animation: heroFloat3d 6.5s ease-in-out infinite;
    will-change: transform;
}

#services .service-slideshow-image.is-enter {
    opacity: 1;
}

#services .service-float-card {
    position: absolute;
    left: 12px;
    bottom: 12px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 14px;
    padding: 12px 14px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
    transform: none;
    max-width: calc(100% - 24px);
    z-index: 3;
}

#services .service-float-card.service-float-highlight {
    min-height: 62px;
}

#services .service-float-label {
    font-size: 14px;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 0;
    letter-spacing: normal;
    text-transform: none;
    opacity: 1;
}

#services .service-float-value {
    font-size: 12.5px;
    font-weight: 500;
    color: rgba(15, 23, 42, 0.70);
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#services .services-feature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 991.98px) {
    #services .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    #services .service-mini-card {
        padding: 16px 18px;
    }

    #services .services-feature-media {
        min-height: 260px;
        padding: 12px;
    }

    #services .services-feature {
        padding: 24px 18px;
        min-height: auto;
    }

    #services .service-slideshow {
        height: 260px;
    }
}

@media (max-width: 575.98px) {
    #services .services-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        overflow-x: hidden;
        padding: 0;
        margin: 0;
    }

    #services .service-category-tabs {
        overflow-x: auto;
        overflow-y: hidden;
        gap: 14px;
        margin-top: 20px;
        margin-bottom: 8px;
        padding: 0 4px 14px 4px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(45, 149, 150, 0.4) rgba(15, 23, 42, 0.06);
    }


    #services .service-mini-card {
        padding: 16px 18px;
        width: 100%;
    }


    #services .service-mini-head {
        margin-bottom: 12px;
        gap: 12px;
    }

    #services .service-mini-index,
    #services .service-mini-icon {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }

    #services .service-mini-title {
        font-size: 15px;
        margin-bottom: 5px;
        line-height: 1.25;
    }

    #services .service-mini-desc {
        font-size: 12.5px;
        line-height: 1.6;
    }

    #services .service-category-tabs {
        margin-bottom: 14px !important;
    }

    #services .service-category-tabs .nav-pills {
        gap: 10px;
        justify-content: flex-start !important;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    #services .service-category-tabs .nav-pills::-webkit-scrollbar {
        display: none;
    }

    #services .service-category-tabs .nav-link {
        padding: 9px 12px !important;
        font-size: 12px;
        border-radius: 12px;
        min-width: 0;
        flex: 0 0 auto;
    }

    #services .service-tabs {
        gap: 10px;
        margin-bottom: 14px;
        padding-bottom: 8px;
        scrollbar-width: none;
    }

    #services .service-tabs::-webkit-scrollbar {
        display: none;
    }

    #services .service-tabs .nav-link {
        padding: 9px 12px !important;
        font-size: 12px;
        border-radius: 12px;
    }

    #services .services-feature-actions {
        flex-wrap: wrap;
    }

    #services .services-feature-media {
        min-height: 220px;
        padding: 10px;
    }

    #services .services-feature {
        min-height: auto;
        padding: 18px 14px;
    }

    #services .service-slideshow {
        height: 210px;
    }
}

/* Service Cards */
.service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: white;
}

.service-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-color);
    margin-bottom: 10px;
    line-height: 1.6;
}

.service-card ul {
    text-align: left;
    margin-top: 15px;
    margin-bottom: 0;
}

.service-card ul li {
    padding: 3px 0;
    color: var(--text-color);
    font-size: 14px;
    display: flex;
    align-items: center;
    line-height: 1.4;
}

.service-card ul li i {
    margin-right: 8px;
    font-size: 11px;
    flex-shrink: 0;
}

/* Project Cards */
.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 300px;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(0);
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px;
    color: white;
}

.project-overlay h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.project-overlay p {
    margin-bottom: 15px;
}

/* Projects page: Enhanced project cards */
.projects-page .project-card {
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: 0 12px 28px rgba(2, 6, 23, 0.10);
    transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.projects-page .project-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(2, 6, 23, 0.14);
    border-color: rgba(15, 23, 42, 0.16);
}

.projects-page .project-overlay {
    padding: 16px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    column-gap: 12px;
    row-gap: 8px;
    background: #2d9596;
}

.projects-page .project-overlay h4 {
    grid-column: 1 / -1;
    font-size: 16px;
    line-height: 1.25;
    margin: 0;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.projects-page .project-overlay p {
    margin: 0;
    font-size: 13px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.82);
    grid-column: 1;
}

.projects-page .project-overlay .btn {
    grid-column: 2;
    justify-self: end;
    border-radius: 10px;
    padding: 8px 12px;
    font-weight: 800;
    font-size: 12px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.96);
    transition: background-color 180ms ease, border-color 180ms ease;
}

.projects-page .project-overlay .btn:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.34);
}

#projects .project-category-tabs .nav-pills {
    gap: 12px;
    justify-content: flex-start !important;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    padding-bottom: 10px;
}

#projects .project-category-tabs .nav-link {
    appearance: none;
    border: 0;
    padding: 12px 16px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 13px;
    color: rgba(15, 23, 42, 0.75);
    background: rgba(15, 23, 42, 0.04);
    box-shadow: none;
    position: relative;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
    letter-spacing: 0.01em;
    min-width: 120px;
    text-align: center;
}

#projects .project-category-tabs .nav-link::before {
    display: none !important;
}

#projects .project-category-tabs .nav-link:hover {
    color: var(--secondary-color);
    background: rgba(45, 149, 150, 0.10);
    transform: translateY(-1px);
}

#projects .project-category-tabs .nav-link.active {
    color: #fff !important;
    background: linear-gradient(135deg, rgba(45, 149, 150, 1) 0%, rgba(32, 126, 127, 1) 100%) !important;
    box-shadow: 0 14px 34px rgba(45, 149, 150, 0.22), inset 0 -3px 0 rgba(255, 255, 255, 0.35);
}

#projects .project-category-tabs .nav-link.active::after {
    display: none;
}

#projects .project-showcase {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    position: relative;
}

#projects .project-showcase::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    pointer-events: none;
}

#projects .project-showcase-content {
    padding: 42px 46px 22px;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 412px;
    position: relative;
    z-index: 1;
}

#projects .project-topbar {
    margin-bottom: 18px;
}

#projects .project-category-tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

#projects .project-showcase-actions {
    margin-top: auto;
    padding-top: 16px;
    padding-bottom: 0;
}

#projects .project-showcase-actions .btn.btn-primary {
    border-radius: 999px;
    padding: 11px 18px;
    background: linear-gradient(135deg, rgba(45, 149, 150, 1) 0%, rgba(32, 126, 127, 1) 100%);
    border: 0;
    box-shadow: 0 14px 34px rgba(45, 149, 150, 0.26);
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

#projects .project-showcase-actions .btn.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(45, 149, 150, 0.34);
    filter: saturate(1.05);
}

#projects .project-showcase-actions .btn.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 12px 26px rgba(45, 149, 150, 0.24);
}

#projects .project-showcase-actions .btn.btn-outline-primary {
    border-radius: 999px;
    padding: 11px 18px;
    border-color: rgba(45, 149, 150, 0.45);
    color: rgba(15, 23, 42, 0.78);
    background: rgba(45, 149, 150, 0.06);
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

#projects .project-showcase-actions .btn.btn-outline-primary:hover {
    transform: translateY(-2px);
    border-color: rgba(45, 149, 150, 0.65);
    background: rgba(45, 149, 150, 0.10);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.10);
}

#projects .project-eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.12em;
    font-weight: 700;
    color: var(--primary-color);
    background: rgba(15, 23, 42, 0.04);
    padding: 6px 10px;
    border-radius: 999px;
    margin-bottom: 16px;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

#projects .project-title {
    font-size: clamp(24px, 1.6vw + 18px, 38px);
    line-height: 1.15;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 16px;
    overflow-wrap: anywhere;
    word-break: break-word;
}

#projects .project-desc {
    color: var(--text-color);
    margin-bottom: 22px;
    line-height: 1.7;
    overflow-wrap: anywhere;
    word-break: break-word;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    overflow: hidden;
    min-height: calc(1.7em * 4);
}

#projects .project-meta {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 2px;
}

#projects .project-meta li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    font-size: 14px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

#projects .project-meta i {
    color: var(--primary-color);
}

#projects .project-showcase-media {
    position: relative;
    height: 100%;
    min-height: 370px;
    overflow: visible;
    background: #fff;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
}

#projects .project-showcase-media::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 0;
    pointer-events: none;
}

#projects .project-media-gallery {
    height: 360px;
    padding: 0;
    position: relative;
    z-index: 1;
    width: 100%;
}

#projects .project-slideshow {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

 #projects .project-slideshow.is-enter {
     animation: slideUpFadeIn 650ms cubic-bezier(0.22, 1, 0.36, 1) both;
     will-change: transform, opacity;
 }

#projects .project-float-card.project-float-metric {
    position: absolute;
    left: 12px;
    bottom: 12px;
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 10px;
    align-items: center;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
    transform: none;
    max-width: calc(100% - 24px);
    z-index: 3;
    overflow: hidden;
}

#projects .project-float-metric-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: rgba(45, 149, 150, 0.12);
    border: 1px solid rgba(45, 149, 150, 0.20);
    color: #2d9596;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

#projects .project-float-metric-label {
    font-size: 10.5px;
    font-weight: 900;
    letter-spacing: 0.14em;
    color: rgba(15, 23, 42, 0.60);
}

#projects .project-float-metric-value {
    font-size: 14px;
    font-weight: 900;
    color: var(--secondary-color);
    line-height: 1.2;
}

@media (max-width: 575px) {
    #projects .project-float-card.project-float-metric {
        width: calc(100% - 24px);
    }
}

#projects .project-slideshow-tilt {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.16);
    transition: transform 360ms ease, opacity 360ms ease;
    background: #fff;
    position: relative;
}

#projects .project-slideshow-tilt::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(70% 65% at 18% 85%, rgba(45, 149, 150, 0.18) 0%, rgba(45, 149, 150, 0.08) 38%, rgba(45, 149, 150, 0.00) 70%),
        linear-gradient(180deg, rgba(15, 23, 42, 0.00) 40%, rgba(15, 23, 42, 0.10) 100%);
}

#projects .project-slideshow-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform-style: preserve-3d;
    animation: heroFloat3d 6.5s ease-in-out infinite;
    will-change: transform;
}

#projects .project-slideshow-image.is-enter {
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    #projects .project-slideshow-image,
    #services .service-slideshow-image {
        animation: none;
    }
}

#projects .project-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    height: 100%;
    align-content: start;
}

#projects .project-gallery-card {
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    text-align: left;
}

#projects .project-gallery-tilt {
    display: block;
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

#projects .project-gallery-card.is-active .project-gallery-tilt {
    box-shadow: 0 18px 45px rgba(13, 110, 253, 0.32);
    outline: 2px solid rgba(13, 110, 253, 0.75);
    outline-offset: 3px;
}

#projects .project-gallery-tilt img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transform: none;
}

@media (min-width: 992px) {
    #projects .project-showcase-media {
        border-left: 0;
        padding: 5px;
    }
}

#projects .project-showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: none;
    transition: transform 500ms ease, filter 500ms ease;
    filter: saturate(1.05) contrast(1.03);
}

#projects .project-float-card {
    position: absolute;
    left: 12px;
    bottom: 12px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 12px;
    padding: 14px 16px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
    transform: translateZ(50px);
    max-width: calc(100% - 24px);
    z-index: 3;
}

#projects .project-float-label {
    font-size: 14px;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 0;
    letter-spacing: normal;
    text-transform: none;
    opacity: 1;
}

#projects .project-float-value {
    font-size: 12.5px;
    font-weight: 500;
    color: rgba(15, 23, 42, 0.70);
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#about .about-float-card,
#projects .project-float-card,
#services .service-float-card {
    min-width: 220px;
}

@media (max-width: 575px) {
    #about .about-float-card,
    #projects .project-float-card,
    #services .service-float-card {
        min-width: 0;
        width: calc(100% - 24px);
    }
}

@media (max-width: 991px) {
    #projects .project-showcase-content {
        padding: 28px 22px;
        min-height: 296px;
    }

    #projects .project-title {
        font-size: 28px;
    }

    #projects .project-showcase-media {
        min-height: 270px;
        padding: 5px;
    }

    #projects .project-media-gallery {
        height: 260px;
    }

    #projects .project-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #projects .project-gallery-tilt img {
        height: 150px;
    }
}

@media (max-width: 575px) {
    #projects .project-showcase-media {
        min-height: 230px;
        padding: 5px;
    }

    #projects .project-gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Team Cards */
.team-page .team-hero {
    padding: 70px 0;
    background: linear-gradient(135deg, rgba(45, 149, 150, 0.10), rgba(15, 23, 42, 0.04));
}

.team-page .team-section-enhanced {
    background: linear-gradient(180deg, #ffffff 0%, #f6f9fc 100%);
}

.team-page .team-section-enhanced .section-title {
    margin-bottom: 32px;
}

.team-page .team-section-enhanced .section-title h2 {
    letter-spacing: 0.2px;
}

.team-page .team-section-enhanced .section-title p {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.team-page .team-card {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.team-page .team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.14);
}

.team-page .team-image {
    background: #f8fafc;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.team-page .team-image img {
    border-radius: 0;
}

.team-page .team-info {
    padding: 16px 14px 18px;
    text-align: center;
}

.team-page .team-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
}

.team-page .team-info p {
    margin: 6px 0 0;
    font-size: 13px;
    font-weight: 600;
    color: rgba(15, 23, 42, 0.65);
}

.team-page .team-social {
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.72), rgba(15, 23, 42, 0.55));
    backdrop-filter: blur(6px);
}

.team-page .team-social a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    margin: 0 4px;
    transition: transform 200ms ease, background 200ms ease;
}

.team-page .team-social a:hover {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-2px);
}

.team-page .team-pagination-links .text-muted.small,
.client-page .team-pagination-links .text-muted.small,
.projects-page .team-pagination-links .text-muted.small,
.services-page .team-pagination-links .text-muted.small,
.blogs-page .team-pagination-links .text-muted.small {
    display: none;
}

.team-page .team-per-page-btn,
.client-page .team-per-page-btn,
.projects-page .team-per-page-btn,
.services-page .team-per-page-btn {
    border: 1px solid rgba(15, 23, 42, 0.18);
    background: #ffffff;
    color: rgba(15, 23, 42, 0.78);
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.team-page .team-per-page-btn:hover,
.client-page .team-per-page-btn:hover,
.projects-page .team-per-page-btn:hover,
.services-page .team-per-page-btn:hover {
    border-color: rgba(45, 149, 150, 0.40);
    background: rgba(45, 149, 150, 0.06);
    color: rgba(15, 23, 42, 0.86);
}

.team-page .team-per-page-btn:focus,
.client-page .team-per-page-btn:focus,
.projects-page .team-per-page-btn:focus,
.services-page .team-per-page-btn:focus {
    box-shadow: 0 0 0 0.2rem rgba(45, 149, 150, 0.15);
}

.team-page .team-per-page-label,
.client-page .team-per-page-label,
.projects-page .team-per-page-label,
.services-page .team-per-page-label {
    color: rgba(15, 23, 42, 0.55);
    font-weight: 600;
}

.team-page .team-per-page-value,
.client-page .team-per-page-value,
.projects-page .team-per-page-value,
.services-page .team-per-page-value {
    color: rgba(15, 23, 42, 0.90);
    font-weight: 700;
}

.team-page .team-per-page-dropdown .dropdown-menu,
.client-page .team-per-page-dropdown .dropdown-menu,
.projects-page .team-per-page-dropdown .dropdown-menu,
.services-page .team-per-page-dropdown .dropdown-menu,
.gallery-page .team-per-page-dropdown .dropdown-menu {
    border: 1px solid rgba(15, 23, 42, 0.18);
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.10);
    border-radius: 10px;
    padding: 6px;
    min-width: 170px;
    z-index: 1060;
}

.team-page .team-per-page-dropdown.dropup .dropdown-menu,
.client-page .team-per-page-dropdown.dropup .dropdown-menu,
.projects-page .team-per-page-dropdown.dropup .dropdown-menu,
.services-page .team-per-page-dropdown.dropup .dropdown-menu,
.gallery-page .team-per-page-dropdown.dropup .dropdown-menu {
    top: auto !important;
    bottom: 100% !important;
    transform: none !important;
    margin-bottom: 8px;
}

.team-page .team-per-page-dropdown.dropup .dropdown-menu[data-bs-popper],
.client-page .team-per-page-dropdown.dropup .dropdown-menu[data-bs-popper],
.projects-page .team-per-page-dropdown.dropup .dropdown-menu[data-bs-popper],
.services-page .team-per-page-dropdown.dropup .dropdown-menu[data-bs-popper],
.gallery-page .team-per-page-dropdown.dropup .dropdown-menu[data-bs-popper] {
    top: auto !important;
    bottom: 100% !important;
    inset: auto auto 100% auto !important;
    transform: none !important;
    margin-bottom: 8px;
}

.team-page .team-per-page-dropdown.dropup .dropdown-menu.dropdown-menu-end[data-bs-popper],
.client-page .team-per-page-dropdown.dropup .dropdown-menu.dropdown-menu-end[data-bs-popper],
.projects-page .team-per-page-dropdown.dropup .dropdown-menu.dropdown-menu-end[data-bs-popper],
.services-page .team-per-page-dropdown.dropup .dropdown-menu.dropdown-menu-end[data-bs-popper],
.gallery-page .team-per-page-dropdown.dropup .dropdown-menu.dropdown-menu-end[data-bs-popper] {
    left: auto !important;
    right: 0 !important;
}

.team-page .team-per-page-dropdown .dropdown-item,
.client-page .team-per-page-dropdown .dropdown-item,
.projects-page .team-per-page-dropdown .dropdown-item,
.services-page .team-per-page-dropdown .dropdown-item,
.gallery-page .team-per-page-dropdown .dropdown-item {
    border-radius: 8px;
    padding: 10px 12px;
    font-weight: 600;
    color: rgba(15, 23, 42, 0.82);
}

.team-page .team-per-page-dropdown .dropdown-item:hover,
.client-page .team-per-page-dropdown .dropdown-item:hover,
.projects-page .team-per-page-dropdown .dropdown-item:hover,
.services-page .team-per-page-dropdown .dropdown-item:hover,
.gallery-page .team-per-page-dropdown .dropdown-item:hover {
    background: rgba(45, 149, 150, 0.10);
    color: rgba(15, 23, 42, 0.92);
}

.team-page .team-pagination-links .pagination,
.client-page .team-pagination-links .pagination,
.projects-page .team-pagination-links .pagination,
.services-page .team-pagination-links .pagination,
.blogs-page .team-pagination-links .pagination {
    margin-bottom: 0;
}

.team-page .team-pagination-links .page-link,
.client-page .team-pagination-links .page-link,
.projects-page .team-pagination-links .page-link,
.services-page .team-pagination-links .page-link,
.blogs-page .team-pagination-links .page-link {
    border-color: rgba(15, 23, 42, 0.12);
    color: rgba(15, 23, 42, 0.78);
    padding: 6px 10px;
    font-weight: 600;
}

.team-page .team-pagination-links .page-link:hover,
.client-page .team-pagination-links .page-link:hover,
.projects-page .team-pagination-links .page-link:hover,
.services-page .team-pagination-links .page-link:hover,
.blogs-page .team-pagination-links .page-link:hover {
    background: rgba(45, 149, 150, 0.10);
    color: rgba(15, 23, 42, 0.86);
    border-color: rgba(45, 149, 150, 0.40);
}

.team-page .team-pagination-links .page-item.active .page-link,
.client-page .team-pagination-links .page-item.active .page-link,
.projects-page .team-pagination-links .page-item.active .page-link,
.services-page .team-pagination-links .page-item.active .page-link,
.blogs-page .team-pagination-links .page-item.active .page-link {
    background: rgba(45, 149, 150, 1);
    border-color: rgba(45, 149, 150, 1);
    color: #ffffff;
}

.team-page .team-pagination-links .page-item.disabled .page-link,
.client-page .team-pagination-links .page-item.disabled .page-link,
.projects-page .team-pagination-links .page-item.disabled .page-link,
.services-page .team-pagination-links .page-item.disabled .page-link,
.blogs-page .team-pagination-links .page-item.disabled .page-link {
    color: rgba(15, 23, 42, 0.35);
    background: #ffffff;
    border-color: rgba(15, 23, 42, 0.10);
}

.team-page .team-pagination-left,
.team-page .team-pagination-center,
.team-page .team-pagination-right,
.client-page .team-pagination-left,
.client-page .team-pagination-center,
.client-page .team-pagination-right,
.projects-page .team-pagination-left,
.projects-page .team-pagination-center,
.projects-page .team-pagination-right,
.services-page .team-pagination-left,
.services-page .team-pagination-center,
.services-page .team-pagination-right,
.blogs-page .team-pagination-left,
.blogs-page .team-pagination-center,
.blogs-page .team-pagination-right {
    flex: 1 1 240px;
}

.team-page .team-pagination-center,
.client-page .team-pagination-center,
.projects-page .team-pagination-center,
.services-page .team-pagination-center,
.blogs-page .team-pagination-center {
    display: flex;
    justify-content: center;
}

.team-page .team-pagination-right,
.client-page .team-pagination-right,
.projects-page .team-pagination-right,
.services-page .team-pagination-right,
.blogs-page .team-pagination-right {
    display: flex;
    justify-content: flex-end;
}

.team-page .team-pagination,
.client-page .team-pagination,
.projects-page .team-pagination,
.services-page .team-pagination,
.blogs-page .team-pagination {
    margin-bottom: 90px;
}

.team-page .team-per-page-dropdown,
.client-page .team-per-page-dropdown,
.projects-page .team-per-page-dropdown,
.services-page .team-per-page-dropdown,
.gallery-page .team-per-page-dropdown {
    width: 170px;
    display: flex;
    justify-content: center;
}

.team-card {
    background: white;
    border-radius: 10px;
    overflow: visible;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.team-image {
    position: relative;
    overflow: hidden;
    height: 350px;
    padding: 5px;
    padding-top: 10px;
    box-sizing: border-box;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transform-origin: top center;
    transition: all 0.3s;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.client-card .team-image {
    height: 220px;
    padding: 12px;
    background: #ffffff;
}

.client-card .team-image img {
    object-fit: contain;
    object-position: center;
    transform-origin: center;
}

.client-card:hover .team-image img {
    transform: none;
}

.client-list-wrap {
    max-width: 980px;
    margin: 0 auto;
}

.client-ul {
    margin: 0;
    padding-left: 1.2rem;
    list-style: none; /* Remove default bullets */
}

.client-li {
    break-inside: avoid;
    padding: 3px 0;
    color: rgba(15, 23, 42, 0.80);
    font-size: 16px;
    line-height: 1.5;
    position: relative;
    padding-left: 20px; /* Space for custom bullet */
}

.client-li--group-gap {
    margin-top: 14px;
    padding-top: 6px;
}

.client-li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-weight: bold;
    font-size: 18px;
    line-height: 1;
}

.client-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.client-link:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.client-link i {
    font-size: 12px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.client-link:hover i {
    opacity: 1;
}

@media (max-width: 991.98px) {
    .client-ul {
        padding-left: 1.1rem;
    }
}

.team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    text-align: center;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.team-card:hover .team-social {
    transform: translateY(0);
}

#design-philosophy {
    background: #f3f8f7;
}

#design-philosophy .section-title {
    text-align: center;
    margin-bottom: 26px;
}

#design-philosophy .section-title h2 {
    text-transform: uppercase;
}

#design-philosophy .design-philosophy-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

#design-philosophy .design-philosophy-item {
    text-decoration: none;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 12px;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
    padding: 16px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 76px;
    color: var(--secondary-color);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

#design-philosophy .design-philosophy-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 28px rgba(15, 23, 42, 0.10);
}

#design-philosophy .design-philosophy-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(45, 149, 150, 0.14);
    border: 1px solid rgba(45, 149, 150, 0.22);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1f6f70;
    flex: 0 0 auto;
}

#design-philosophy .design-philosophy-icon i {
    font-size: 16px;
}

#design-philosophy .design-philosophy-label {
    font-size: 12px;
    font-weight: 800;
    color: rgba(15, 23, 42, 0.78);
    line-height: 1.2;
    text-align: center;
}

@media (max-width: 991.98px) {
    #design-philosophy .design-philosophy-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    #design-philosophy .design-philosophy-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

#clients {
    background: #fff;
}

#clients .clients-marquee {
    position: relative;
    overflow: hidden;
    padding: 4px 0;
    padding-left: 18px;
    padding-right: 18px;
    -webkit-mask-image: none;
    mask-image: none;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.95) 0%, rgba(255, 255, 255, 1) 100%);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.06);
}

#clients .clients-marquee-track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: clients-marquee-scroll var(--clients-marquee-duration, 42s) linear infinite;
}

#clients .clients-marquee:hover .clients-marquee-track {
    animation-play-state: paused;
}

#clients .clients-strip {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 18px;
    padding: 0;
    margin: 0;
}

#clients .clients-strip-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: 0 10px 26px rgba(2, 6, 23, 0.08);
    min-height: unset;
    height: calc(var(--clients-logo-height, 54px) + 18px);
    min-width: 120px;
    text-decoration: none;
    flex: 0 0 auto;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

#clients .clients-strip-logo,
#clients .clients-strip-item img {
    height: var(--clients-logo-height, 42px);
    width: auto;
    max-width: 190px;
    object-fit: contain;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    filter: none;
    opacity: 1;
    transition: transform 220ms ease, filter 220ms ease, opacity 220ms ease;
}

#clients .clients-strip-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 46px rgba(2, 6, 23, 0.14);
    border-color: rgba(45, 149, 150, 0.40);
}

#clients .clients-strip-item:hover .clients-strip-logo,
#clients .clients-strip-item:hover img {
    transform: scale(1.03);
    filter: saturate(1) contrast(1.05);
    opacity: 1;
}

.services-grid.is-highlighted {
    position: relative;
    border-radius: 18px;
    outline: none;
    box-shadow: 0 10px 28px rgba(2, 6, 23, 0.10);
}

.services-grid.is-highlighted::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(45, 149, 150, 0.55) 0%, rgba(38, 80, 115, 0.35) 55%, rgba(45, 149, 150, 0.18) 100%);
    filter: blur(0.2px);
    opacity: 0.55;
    pointer-events: none;
}

.services-grid.is-highlighted::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(255, 255, 255, 0.75);
    pointer-events: none;
}

.services-grid.is-highlighted > * {
    position: relative;
    z-index: 1;
}

#clients .clients-strip-item:focus,
#clients .clients-strip-item:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(45, 149, 150, 0.22), 0 18px 46px rgba(2, 6, 23, 0.14);
    border-color: rgba(45, 149, 150, 0.55);
}

@keyframes clients-marquee-scroll {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (max-width: 575.98px) {
    #clients .clients-marquee {
        padding-left: 12px;
        padding-right: 12px;
        -webkit-mask-image: none;
        mask-image: none;
        border-radius: 16px;
    }

    #clients .clients-strip {
        gap: 14px;
    }

    #clients .clients-strip-item {
        height: calc(var(--clients-logo-height, 36px) + 16px);
        min-width: 104px;
    }

    #clients .clients-strip-logo,
    #clients .clients-strip-item img {
        height: var(--clients-logo-height, 36px);
        max-width: 160px;
    }

    .client-logo-modal-stage {
        min-height: 240px;
        padding: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    #clients .clients-marquee-track {
        animation: none;
    }
    #clients .clients-marquee {
        overflow: auto;
        -webkit-mask-image: none;
        mask-image: none;
    }
}

#contact-us .contact-us-panel {
    background: transparent;
    border-radius: 18px;
    padding: 16px 6px;
}

#contact-us .contact-us-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.18em;
    color: rgba(15, 23, 42, 0.60);
    background: rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 6px 10px;
    border-radius: 999px;
    margin-bottom: 14px;
}

#contact-us .contact-us-title {
    font-size: clamp(22px, 1.6vw + 16px, 34px);
    font-weight: 900;
    color: var(--secondary-color);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

#contact-us .contact-us-desc {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 18px;
    max-width: 520px;
}

#contact-us .contact-us-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

#contact-us .contact-us-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: rgba(15, 23, 42, 0.78);
    line-height: 1.5;
}

#contact-us .contact-us-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(45, 149, 150, 0.14);
    border: 1px solid rgba(45, 149, 150, 0.22);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1f6f70;
    flex: 0 0 auto;
}

#contact-us .contact-us-form-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    padding: 22px;
    height: 100%;
}

#contact-us .contact-us-form .form-control {
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    padding: 12px 14px;
}

#contact-us .contact-us-form .form-control:focus {
    border-color: rgba(13, 110, 253, 0.55);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.15);
}

@media (max-width: 991.98px) {
    #contact-us .contact-us-panel {
        padding: 0;
    }

    #contact-us .contact-us-form-card {
        padding: 18px;
    }
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.team-info h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.team-info p {
    color: var(--text-color);
    margin-bottom: 0;
}

.team-social a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s;
}

.team-social a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Client Cards */
.client-card .client-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.85);
    padding: 20px;
    text-align: center;
    transform: translateY(100%);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 120px;
}

.client-card:hover .client-overlay {
    transform: translateY(0);
}

.client-description {
    color: white;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
    text-align: center;
}

.client-website-btn {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-color);
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.client-website-btn:hover {
    background-color: #0056b3;
}

.floating-cta {
    position: fixed;
    color: white;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.floating-cta:hover {
    color: white;
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

.whatsapp-cta {
    background-color: #25D366;
    bottom: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    font-size: 32px;
}

.call-cta {
    bottom: 12%;
    right: 0;
    background-color: #2d9596;
    padding: 10px 20px;
    font-size: 16px;
    gap: 10px;
    border-radius: 50px 0 0 50px;
}

.call-cta.cta-hidden {
    pointer-events: none;
}

.call-cta:hover {
    background-color: #267d7e;
}

.call-cta span {
    font-weight: 600;
}

/* Mobile adjustments */
@media (max-width: 767.98px) {
    .call-cta {
        top: auto;
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        padding: 0;
        font-size: 24px;
        border-radius: 50%;
        transform: none;
    }

    .call-cta span {
        display: none;
    }
}

/* Contact Modal Styling */
.modal-content {
    border-radius: 12px;
}

.contact-number {
    font-weight: 700;
    color: #2d9596;
    font-size: 1.75rem;
    letter-spacing: 1px;
}

/* Multi-Item Carousel Styling */
.center-carousel {
    position: relative;
    padding: 80px 0 120px 0;
    overflow: visible;
}

.center-carousel .carousel-inner {
    padding: 60px 0;
    overflow: visible;
}

.multi-item-carousel {
    display: flex;
    gap: 30px;
    padding: 0 100px;
    transition: transform 0.5s ease;
    align-items: center;
    justify-content: flex-start;
}

.carousel-card-item {
    flex: 0 0 350px;
    min-width: 350px;
    transition: all 0.4s ease;
}

.carousel-card-item:nth-child(1) {
    opacity: 0.6;
    transform: scale(0.85);
}

.carousel-card-item:nth-child(2) {
    opacity: 1;
    transform: scale(1.15);
    z-index: 10;
}

.carousel-card-item:nth-child(3) {
    opacity: 0.6;
    transform: scale(0.85);
}

.carousel-card-item:nth-child(n+4) {
    opacity: 0.3;
    transform: scale(0.75);
}

.center-carousel .carousel-control-prev,
.center-carousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: all 0.3s;
    z-index: 20;
}

.center-carousel .carousel-control-prev {
    left: 20px;
}

.center-carousel .carousel-control-next {
    right: 20px;
}

.center-carousel .carousel-control-prev:hover,
.center-carousel .carousel-control-next:hover {
    background: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

.center-carousel .carousel-control-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: white;
    font-size: 20px;
}

.center-carousel .carousel-control-prev-icon,
.center-carousel .carousel-control-next-icon {
    background-image: none;
}

.center-carousel .carousel-indicators {
    bottom: -30px;
    margin-bottom: 0;
}

.center-carousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    border: none;
    margin: 0 5px;
    transition: all 0.3s;
}

.center-carousel .carousel-indicators button.active {
    background-color: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

.center-carousel .carousel-item {
    transition: transform 0.6s ease-in-out;
}

/* Clients Carousel Specific */
.clients-carousel .carousel-inner {
    padding: 20px 80px;
}

.clients-carousel .client-logo {
    transition: all 0.3s;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.clients-carousel .client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.clients-carousel .client-logo img {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.clients-carousel .client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive Carousel */
@media (max-width: 992px) {
    .center-carousel-container {
        padding: 0 60px;
        gap: 20px;
    }
    
    .carousel-center-item {
        flex: 0 0 320px;
        max-width: 320px;
    }
    
    .carousel-side-item {
        flex: 0 0 240px;
        max-width: 240px;
    }
}

@media (max-width: 768px) {
    .center-carousel-container {
        padding: 0 40px;
        gap: 15px;
    }
    
    .carousel-center-item {
        flex: 0 0 280px;
        max-width: 280px;
        transform: scale(1.1);
    }
    
    .carousel-side-item {
        flex: 0 0 200px;
        max-width: 200px;
        opacity: 0.5;
    }
    
    .center-carousel .carousel-control-prev,
    .center-carousel .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .center-carousel .carousel-control-icon {
        font-size: 16px;
    }
    
    .center-carousel .carousel-control-prev {
        left: 10px;
    }
    
    .center-carousel .carousel-control-next {
        right: 10px;
    }
}

@media (max-width: 576px) {
    .center-carousel-container {
        padding: 0 20px;
        gap: 10px;
    }
    
    .carousel-center-item {
        flex: 0 0 220px;
        max-width: 220px;
    }
    
    .carousel-side-item {
        flex: 0 0 150px;
        max-width: 150px;
        opacity: 0.4;
    }
}

/* Blog Cards */
.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.blog-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-color);
}

.blog-meta i {
    margin-right: 5px;
}

.blog-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.blog-card p {
    color: var(--text-color);
    margin-bottom: 15px;
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.btn-link:hover {
    color: var(--secondary-color);
}

/* Client Logos */
.client-logo {
    background: white;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.client-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

/* Contact Section */
.contact-info {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-item {
    display: flex;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-details h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.contact-details p {
    color: var(--text-color);
    margin-bottom: 0;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-control {
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(45, 149, 150, 0.25);
}

/* About Card */
.about-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 100%;
}

.about-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 60px 0 0;
}

.footer h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer p {
    color: rgba(255,255,255,0.8);
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s;
}

.footer ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.8);
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--text-color);
}

/* Smooth Transitions */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Navbar Animation */
.navbar {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Accessibility Improvements */
.navbar .nav-link:focus,
.navbar .nav-link:active,
.navbar .nav-link:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
}

a:focus,
a:active,
a:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

.dropdown-item:focus {
    outline: none;
}

.navbar-toggler:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Skip to main content link for accessibility */
.skip-to-main {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 9999;
}

.skip-to-main:focus {
    top: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0;
    }

     .hero-section .hero-media-img {
         height: 280px;
     }
    
    .section-padding {
        padding: 40px 0;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .project-card {
        height: 250px;
    }
    
    .team-card img {
        height: 250px;
    }
    
    .navbar-brand {
        font-size: 18px;
    }
    
    .navbar-brand .brand-text,
    .navbar-brand .brand-accent {
        display: inline;
    }

    .navbar-brand .navbar-logo {
        height: 40px;
        max-width: 160px;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 16px;
    }

    .navbar-brand .navbar-logo {
        height: 36px;
        max-width: 140px;
    }
    
    .top-header {
        font-size: 12px;
    }
}

/* Stat Card */
.stat-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Pagination */
.pagination .page-link {
    color: var(--primary-color);
    border: 1px solid #ddd;
    padding: 10px 15px;
    margin: 0 5px;
    border-radius: 5px;
}

.pagination .page-link:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.pagination .page-item.active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}

/* CTA Section */
.bg-primary {
    background: var(--primary-color) !important;
}

/* Enhanced Clients Section Title */
.team-section .section-title {
    position: relative;
    font-style: italic;
    font-size: 20px;
    font-weight: 500;
    color: var(--secondary-color);
    background: linear-gradient(135deg, rgba(45, 149, 150, 0.08), rgba(38, 80, 115, 0.06));
    padding: 24px 36px;
    border-radius: 16px;
    border-left: 5px solid var(--primary-color);
    margin-bottom: 50px;
    text-align: center;
    line-height: 1.6;
    box-shadow: 0 8px 24px rgba(45, 149, 150, 0.12);
    animation: fadeInUp 1s ease-out;
}

.team-section .section-title::before {
    content: '"';
    font-size: 72px;
    color: var(--primary-color);
    position: absolute;
    top: -12px;
    left: 24px;
    font-family: serif;
    opacity: 0.6;
    animation: fadeIn 1.5s ease-out;
}

.team-section .section-title::after {
    content: '"';
    font-size: 72px;
    color: var(--primary-color);
    position: absolute;
    bottom: -12px;
    right: 24px;
    font-family: serif;
    opacity: 0.6;
    animation: fadeIn 1.5s ease-out 0.5s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991.98px) {
    .team-section .section-title {
        font-size: 18px;
        padding: 20px 28px;
    }
    .team-section .section-title::before,
    .team-section .section-title::after {
        font-size: 52px;
    }
}
