/* ==============================================
   IT Core Services Page - Custom Styles
   ============================================== */

:root {
    --shore-green: #7abd30;
    --shore-green-dark: #5da029;
    --charcoal: #1A1A1A;
    --gray: #4A4A4A;
    --light-gray: #F8F9FA;
    --border-color: #E5E5E5;
}

/* Page Class */
.itcore-page {
    overflow-x: hidden;
}

/* ==============================================
   Header - Transparent on Hero
   ============================================== */
.itcore-page #sticky-header {
    background: transparent !important;
    position: absolute;
    width: 100%;
    z-index: 999;
}

.itcore-page #sticky-header .techno_menu ul li a {
    color: #fff !important;
}

.itcore-page #sticky-header .techno_menu ul li a:hover {
    color: var(--shore-green) !important;
}

.itcore-page #sticky-header .techno_menu ul li ul.sub-menu {
    background: #fff;
    border: none;
}

.itcore-page #sticky-header .techno_menu ul li ul.sub-menu li a {
    color: #232323 !important;
}

.itcore-page #sticky-header .techno_menu ul li ul.sub-menu li a:hover {
    color: #fff !important;
    background: var(--shore-green) !important;
}

.itcore-page #sticky-header.sticky {
    background: #fff !important;
    position: fixed;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.itcore-page #sticky-header.sticky .techno_menu ul li a {
    color: #232323 !important;
}

.itcore-page #sticky-header.sticky .techno_menu ul li a:hover {
    color: var(--shore-green) !important;
}

.itcore-page #sticky-header.sticky .techno_menu ul li ul.sub-menu {
    background: #fff;
    border: none;
}

.itcore-page #sticky-header.sticky .techno_menu ul li ul.sub-menu li a {
    color: #232323 !important;
}

.itcore-page #sticky-header.sticky .techno_menu ul li ul.sub-menu li a:hover {
    color: #fff !important;
    background: var(--shore-green) !important;
}

/* Mobile menu */
.itcore-page .mobile-menu-area {
    background: transparent;
    position: absolute;
    width: 100%;
    z-index: 999;
}

/* ==============================================
   Hero Section
   ============================================== */
.itcore-hero {
    background-image: url('https://d2xsxph8kpxj0f.cloudfront.net/310519663295466757/ZShMHyS6yaNAaEZppwE56T/infrastructure_mgmt-5XYQFLPfgSvgq7MGryu4AJ.webp');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.itcore-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.75), rgba(0,0,0,0.65), rgba(0,0,0,0.8));
}

.itcore-hero .container {
    position: relative;
    z-index: 2;
}

.itcore-hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 25px;
}

.itcore-hero h1 .hero-typewriter-text {
    color: var(--shore-green);
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 3px;
}

.itcore-hero h1 .hero-typewriter-cursor {
    display: inline-block;
    width: 3px;
    height: 0.9em;
    background-color: var(--shore-green);
    margin-left: 4px;
    animation: blink-cursor 0.8s step-end infinite;
    vertical-align: text-bottom;
}

@keyframes blink-cursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.itcore-hero .lead {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 35px;
    line-height: 1.6;
    transition: opacity 0.3s;
}

.itcore-hero .lead.hero-carousel-desc {
    min-height: 2em;
}

.itcore-hero .lead.fade-out {
    opacity: 0;
}

/* Scroll Down Button */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
    text-align: center;
}

.scroll-down a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.scroll-down a i {
    display: block;
}

.scroll-down a:hover {
    color: var(--shore-green);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-8px); }
}

@media (max-width: 992px) {
    .itcore-hero h1 { font-size: 2.5rem; }
    .itcore-hero .lead { font-size: 1.1rem; }
    .itcore-hero h1 .hero-typewriter-cursor { height: 0.85em; width: 2px; }
}

@media (max-width: 576px) {
    .itcore-hero h1 { font-size: 1.8rem; }
    .itcore-hero .lead { font-size: 1rem; }
    .itcore-hero h1 .hero-typewriter-cursor { height: 0.8em; width: 2px; margin-left: 2px; }
}

/* ==============================================
   Section Styles
   ============================================== */
.section-green-tag {
    display: inline-block;
    color: var(--shore-green);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title-modern {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--charcoal);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.text-green {
    color: var(--shore-green) !important;
}

/* ==============================================
   Services Section
   ============================================== */
.services-section {
    background: var(--light-gray);
}

.services-section .container {
    max-width: 1400px;
}

/* Featured Cards */
.featured-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 280px;
}

.featured-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.2), transparent);
}

.featured-tags {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.featured-tags span {
    padding: 4px 10px;
    font-size: 0.65rem;
    font-weight: 600;
    color: #fff;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    border-radius: 4px;
}

.featured-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 2;
}

.featured-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.featured-content p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin: 0;
    line-height: 1.5;
}

/* Service Cards */
.service-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--shore-green);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover {
    border-color: rgba(122, 189, 48, 0.4);
    box-shadow: 0 8px 30px rgba(122, 189, 48, 0.08);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: #F0FDF4;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: all 0.3s;
}

.service-card:hover .service-icon {
    background: var(--shore-green);
}

.service-icon i {
    font-size: 24px;
    color: var(--shore-green);
    transition: color 0.3s;
}

.service-card:hover .service-icon i {
    color: #fff;
}

.service-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.service-tag {
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--shore-green);
    background: #F0FDF4;
    border-radius: 6px;
}

/* Scope Notes */
.scope-notes {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.scope-notes p {
    font-size: 0.75rem;
    color: #999;
    margin: 0;
}

/* ==============================================
   Engagement Section
   ============================================== */
.engagement-section {
    background: #fff;
}

.engagement-section .container {
    max-width: 1200px;
}

.engagement-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.engagement-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    border-color: rgba(122, 189, 48, 0.4);
}

.engagement-card.accent {
    background: #F0FDF4;
    border-color: var(--shore-green);
    box-shadow: 0 4px 20px rgba(122, 189, 48, 0.1);
}

.recommended-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--shore-green);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 20px;
}

.eng-icon {
    width: 60px;
    height: 60px;
    background: #F0FDF4;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.engagement-card.accent .eng-icon {
    background: var(--shore-green);
}

.eng-icon i {
    font-size: 28px;
    color: var(--shore-green);
}

.engagement-card.accent .eng-icon i {
    color: #fff;
}

.engagement-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.eng-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--shore-green);
    margin-bottom: 12px;
}

.eng-desc {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.engagement-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.engagement-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--gray);
}

.check-circle {
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: rgba(122, 189, 48, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.check-circle i {
    font-size: 10px;
    color: var(--shore-green);
}

/* ==============================================
   Team Section
   ============================================== */
.team-section {
    background: var(--light-gray);
}

.team-section .container {
    max-width: 1400px;
}

/* Category Tabs */
.category-tabs-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.category-tab-h {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #fff;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray);
    transition: all 0.25s ease;
}

.category-tab-h i {
    font-size: 16px;
    color: var(--shore-green);
}

.category-tab-h:hover {
    border-color: rgba(122, 189, 48, 0.4);
    color: var(--shore-green);
}

.category-tab-h.active {
    background: var(--shore-green);
    border-color: var(--shore-green);
    color: #fff;
    box-shadow: 0 4px 16px rgba(122, 189, 48, 0.25);
}

.category-tab-h.active i {
    color: #fff;
}

@media (max-width: 992px) {
    .category-tab-h span {
        display: none;
    }
    .category-tab-h {
        padding: 10px 14px;
    }
}

/* Category Content */
.category-content-full {
    animation: fadeInUp 0.3s ease;
}

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

/* Role Cards - Modern */
.role-card-modern {
    background: #fff;
    border-radius: 14px;
    padding: 24px 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.role-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--shore-green), #84CC16);
    opacity: 0;
    transition: opacity 0.3s;
}

.role-card-modern:hover {
    border-color: rgba(122, 189, 48, 0.4);
    box-shadow: 0 8px 30px rgba(122, 189, 48, 0.1);
    transform: translateY(-2px);
}

.role-card-modern:hover::before {
    opacity: 1;
}

.role-card-modern:hover .role-card-icon {
    background: var(--shore-green);
}

.role-card-modern:hover .role-card-icon i {
    color: #fff;
}

.role-card-icon {
    width: 56px;
    height: 56px;
    background: #F0FDF4;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: all 0.3s;
}

.role-card-icon i {
    font-size: 26px;
    color: var(--shore-green);
    transition: color 0.3s;
}

.role-card-modern h5 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--charcoal);
    margin: 0;
    line-height: 1.3;
}

/* Profile CTA */
.profile-cta-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 14px;
    padding: 25px 30px;
    border: 1px solid var(--border-color);
    margin-top: 30px;
    gap: 20px;
}

.profile-cta-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.profile-cta-content p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

.btn-cta-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--shore-green);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-cta-modern:hover {
    background: var(--shore-green-dark);
    color: #fff;
    box-shadow: 0 6px 20px rgba(122, 189, 48, 0.3);
}

.btn-cta-modern i {
    transition: transform 0.3s;
}

.btn-cta-modern:hover i {
    transform: translateX(4px);
}

/* ==============================================
   Stories Section
   ============================================== */
.stories-section {
    background: var(--light-gray);
}

.stories-section .container {
    max-width: 1200px;
}

.story-card {
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;
}

.story-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    border-color: rgba(122, 189, 48, 0.3);
}

.story-bar {
    height: 4px;
    background: linear-gradient(90deg, var(--shore-green), #84CC16);
}

.story-body {
    padding: 28px;
}

.story-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.story-icon {
    width: 44px;
    height: 44px;
    background: #F0FDF4;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.story-card:hover .story-icon {
    background: var(--shore-green);
}

.story-icon i {
    font-size: 20px;
    color: var(--shore-green);
    transition: color 0.3s;
}

.story-card:hover .story-icon i {
    color: #fff;
}

.story-industry {
    font-size: 0.7rem;
    font-weight: 600;
    color: #999;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.story-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 12px;
    line-height: 1.4;
}

.story-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.story-impact {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid #EAEAEA;
}

.impact-dot {
    width: 8px;
    height: 8px;
    background: var(--shore-green);
    border-radius: 50%;
}

.story-impact span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--shore-green);
}

/* ==============================================
   Utility Classes
   ============================================== */
.pt-80 { padding-top: 80px; }
.pb-80 { padding-bottom: 80px; }
.mb-60 { margin-bottom: 60px; }
.mb-40 { margin-bottom: 40px; }
.mb-30 { margin-bottom: 30px; }

/* ==============================================
   Responsive Adjustments
   ============================================== */

@media (max-width: 1200px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .pt-80 { padding-top: 45px !important; }
    .pb-80 { padding-bottom: 45px !important; }
    .mb-60 { margin-bottom: 25px !important; }
    .mb-40 { margin-bottom: 20px !important; }
    .mb-30 { margin-bottom: 15px !important; }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .section-title-modern {
        font-size: 1.7rem;
        margin-bottom: 12px;
    }

    .section-desc {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .section-green-tag {
        font-size: 0.65rem;
        margin-bottom: 10px;
    }

    .featured-card {
        height: 220px;
    }

    .service-card {
        padding: 20px;
    }

    .engagement-card {
        padding: 25px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .pt-80 { padding-top: 30px !important; }
    .pb-80 { padding-bottom: 30px !important; }
    .mb-60 { margin-bottom: 18px !important; }
    .mb-40 { margin-bottom: 14px !important; }
    .mb-30 { margin-bottom: 10px !important; }

    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .row {
        margin-left: -6px;
        margin-right: -6px;
    }

    .row > [class*="col-"] {
        padding-left: 6px;
        padding-right: 6px;
    }

    .section-title-modern {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }

    .section-desc {
        font-size: 0.85rem;
        margin-bottom: 15px;
        line-height: 1.5;
    }

    .section-green-tag {
        font-size: 0.6rem;
        letter-spacing: 2px;
        margin-bottom: 8px;
    }

    .itcore-hero {
        padding: 80px 12px 40px;
    }

    .itcore-hero h1 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .itcore-hero .lead {
        font-size: 0.9rem;
    }

    .featured-card {
        height: 200px;
    }

    .featured-content h3 {
        font-size: 1.1rem;
    }

    .featured-content p {
        font-size: 0.8rem;
    }

    .service-card {
        padding: 16px;
        margin-bottom: 10px;
    }

    .service-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 12px;
    }

    .service-icon i {
        font-size: 20px;
    }

    .service-card h4 {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }

    .service-card p {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }

    .service-tag {
        font-size: 0.6rem;
        padding: 3px 8px;
    }

    .engagement-card {
        padding: 20px;
        margin-bottom: 15px;
    }

    .eng-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 15px;
    }

    .engagement-card h4 {
        font-size: 1.1rem;
    }

    .eng-desc {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    .engagement-card ul li {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }

    .check-circle {
        width: 18px;
        height: 18px;
        min-width: 18px;
    }

    .check-circle i {
        font-size: 8px;
    }

    .category-tabs-horizontal {
        gap: 6px;
        margin-bottom: 20px;
    }

    .category-tab-h {
        padding: 8px 12px;
    }

    .category-tab-h i {
        font-size: 14px;
    }

    .role-card-modern {
        padding: 18px 16px;
    }

    .role-card-icon {
        width: 46px;
        height: 46px;
        margin-bottom: 12px;
    }

    .role-card-icon i {
        font-size: 22px;
    }

    .role-card-modern h5 {
        font-size: 0.85rem;
    }

    .profile-cta-modern {
        flex-direction: column;
        padding: 20px;
        text-align: center;
        gap: 15px;
    }

    .profile-cta-content h4 {
        font-size: 1rem;
    }

    .profile-cta-content p {
        font-size: 0.85rem;
    }

    .btn-cta-modern {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .story-body {
        padding: 20px;
    }

    .story-icon {
        width: 38px;
        height: 38px;
    }

    .story-card h4 {
        font-size: 1rem;
    }

    .story-card p {
        font-size: 0.85rem;
    }
}

/* ==============================================
   Floating Side Navigation
   ============================================== */
.itcore-sidenav {
    position: fixed;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.itcore-sidenav.visible {
    opacity: 1;
    visibility: visible;
}

.itcore-sidenav .sidenav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 32px;
    height: 32px;
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.itcore-sidenav .sidenav-item:hover {
    width: auto;
    padding: 0 14px;
    background: rgba(26, 26, 26, 0.9);
    border-color: rgba(122, 189, 48, 0.4);
}

.itcore-sidenav .sidenav-item.active {
    border-color: rgba(122, 189, 48, 0.5);
}

.itcore-sidenav .sidenav-dot {
    width: 8px;
    height: 8px;
    min-width: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.itcore-sidenav .sidenav-item:hover .sidenav-dot {
    background: var(--shore-green);
}

.itcore-sidenav .sidenav-item.active .sidenav-dot {
    background: var(--shore-green);
    box-shadow: 0 0 8px rgba(122, 189, 48, 0.6);
}

.itcore-sidenav .sidenav-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    display: none;
}

.itcore-sidenav .sidenav-item:hover .sidenav-label {
    display: block;
}

@media (max-width: 1200px) {
    .itcore-sidenav {
        left: 15px;
    }
}

@media (max-width: 992px) {
    .itcore-sidenav {
        display: none;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .pt-80 { padding-top: 24px !important; }
    .pb-80 { padding-bottom: 24px !important; }
    .mb-60 { margin-bottom: 14px !important; }
    .mb-30 { margin-bottom: 8px !important; }

    .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .section-title-modern {
        font-size: 1.25rem;
    }

    .section-desc {
        font-size: 0.8rem;
    }

    .itcore-hero h1 {
        font-size: 1.3rem;
    }

    .itcore-hero .lead {
        font-size: 0.85rem;
    }

    .featured-card {
        height: 180px;
    }

    .service-card {
        padding: 14px;
    }

    .engagement-card {
        padding: 16px;
    }

    .role-card-modern {
        padding: 14px 12px;
    }

    .role-card-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }

    .role-card-icon i {
        font-size: 18px;
    }

    .role-card-modern h5 {
        font-size: 0.8rem;
    }

    .story-body {
        padding: 16px;
    }
}

/* ==============================================
   Profile Request Modal
   ============================================== */
.profile-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.profile-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.profile-modal {
    background: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 580px;
    max-height: 90vh;
    overflow: hidden;
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
}

.profile-modal-overlay.active .profile-modal {
    transform: translateY(0) scale(1);
}

.profile-modal-close {
    background: rgba(0, 0, 0, 0.08);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #666;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    flex-shrink: 0;
}

.profile-modal-close:hover {
    background: rgba(0, 0, 0, 0.15);
    color: #333;
    transform: rotate(90deg);
}

.profile-modal-body {
    padding: 0;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

/* HubSpot Form Styling Override */
.profile-modal-body .hs-form-frame {
    min-height: 300px;
    margin-bottom: -40px;
}

.profile-modal-body input[type="text"],
.profile-modal-body input[type="email"],
.profile-modal-body input[type="tel"],
.profile-modal-body textarea,
.profile-modal-body select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fafafa;
}

.profile-modal-body input:focus,
.profile-modal-body textarea:focus,
.profile-modal-body select:focus {
    border-color: var(--shore-green);
    outline: none;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(122, 189, 48, 0.1);
}

.profile-modal-body label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--charcoal);
    font-size: 0.9rem;
}

.profile-modal-body button[type="submit"],
.profile-modal-body input[type="submit"] {
    background: linear-gradient(135deg, var(--shore-green) 0%, var(--shore-green-dark) 100%);
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.profile-modal-body button[type="submit"]:hover,
.profile-modal-body input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(122, 189, 48, 0.35);
}

/* Responsive */
@media (max-width: 768px) {
    .profile-modal {
        max-width: 100%;
        max-height: 95vh;
        border-radius: 16px;
    }

    .profile-modal-close {
        width: 32px;
        height: 32px;
        font-size: 14px;
        top: 8px;
        right: 8px;
    }
}

@media (max-width: 480px) {
    .profile-modal-overlay {
        padding: 10px;
    }

    .profile-modal-close {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }
}
