/* ==============================================
   Software Development Page Styles
   ============================================== */

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

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

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

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

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

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

.softdev-page #sticky-header .techno_menu ul li ul.sub-menu li a:hover {
    color: #fff !important;
    background: #70ba32 !important;
}

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

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

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

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

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

.softdev-page #sticky-header.sticky .techno_menu ul li ul.sub-menu li a:hover {
    color: #fff !important;
    background: #70ba32 !important;
}

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

.softdev-page .mobile-menu-area .techno_menu ul li a {
    color: #fff !important;
}

/* ==============================================
   Floating Side Navigation
   ============================================== */
.softdev-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;
}

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

.softdev-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;
}

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

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

.softdev-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;
}

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

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

.softdev-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;
}

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

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

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

/* ==============================================
   Hero Section with Video Background (Left-Aligned)
   ============================================== */
.softdev-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0a0a0a;
}

.softdev-hero .hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5) saturate(1.1);
}

/* Green overlay on video */
.softdev-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgba(122, 189, 48, 0.35) 0%, rgba(90, 154, 31, 0.2) 50%, transparent 85%);
    z-index: 2;
    pointer-events: none;
}

.softdev-hero .container-fluid {
    position: relative;
    z-index: 10;
}

.softdev-hero .hero-text-content {
    padding: 120px 0 80px;
    max-width: 750px;
}

.softdev-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    margin-bottom: 25px;
}

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

.softdev-hero-badge span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.softdev-hero h1 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 10px;
}

.softdev-hero .hero-typewriter-line {
    font-size: 1.5rem;
    color: var(--shore-green);
    font-weight: 900;
    margin-top: 10px;
    margin-bottom: 0;
    min-height: 1.4em;
}

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

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

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

.softdev-hero .hero-paragraphs {
    margin-top: 25px;
}

.softdev-hero .hero-paragraphs p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 12px;
}

.softdev-hero .hero-paragraphs p:last-child {
    margin-bottom: 0;
}

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

.softdev-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;
}

.softdev-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) {
    .softdev-hero h1 { font-size: 1.65rem; }
    .softdev-hero .hero-typewriter-line { font-size: 1.1rem; }
    .softdev-hero .hero-paragraphs p { font-size: 0.72rem; }
    .softdev-hero .hero-text-content { padding: 100px 0 60px; }
}

@media (max-width: 768px) {
    .softdev-hero h1 { font-size: 1.5rem; }
    .softdev-hero .hero-typewriter-line { font-size: 1rem; }
    .softdev-hero .hero-paragraphs p { font-size: 0.68rem; }
}

@media (max-width: 576px) {
    .softdev-hero h1 { font-size: 1.3rem; }
    .softdev-hero .hero-typewriter-line { font-size: 0.9rem; }
    .softdev-hero .hero-paragraphs p { font-size: 0.65rem; }
}

@media (max-width: 480px) {
    .softdev-hero h1 { font-size: 1.1rem; }
    .softdev-hero .hero-typewriter-line { font-size: 0.8rem; min-height: 1.5em; }
    .softdev-hero .hero-typewriter-text {
        text-underline-offset: 3px;
        text-decoration-thickness: 2px;
    }
    .softdev-hero .hero-typewriter-cursor { height: 0.85em; width: 2px; }
    .softdev-hero .hero-paragraphs { margin-top: 15px; }
    .softdev-hero .hero-paragraphs p { font-size: 0.6rem; line-height: 1.5; margin-bottom: 8px; }
}

@media (max-width: 380px) {
    .softdev-hero h1 { font-size: 0.95rem; }
    .softdev-hero .hero-typewriter-line { font-size: 0.7rem; min-height: 1.6em; }
    .softdev-hero .hero-typewriter-text {
        text-underline-offset: 2px;
        text-decoration-thickness: 1px;
    }
    .softdev-hero .hero-typewriter-cursor { height: 0.8em; width: 2px; margin-left: 2px; }
    .softdev-hero .hero-paragraphs p { font-size: 0.55rem; }
}

/* ==============================================
   Section Titles
   ============================================== */
.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: 700;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.section-title-modern .text-green {
    color: var(--shore-green);
}

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

@media (max-width: 768px) {
    .section-title-modern { font-size: 1.8rem; }
    .section-desc { font-size: 0.95rem; }
}

/* ==============================================
   Value Proposition Section
   ============================================== */
.value-section {
    background: #fff;
}

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

.value-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    border: 1px solid #E5E5E5;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

.value-tag {
    display: inline-block;
    padding: 5px 12px;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--shore-green);
    background: #F0FDF4;
    border-radius: 6px;
}

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

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

.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #E5E5E5;
    transition: all 0.3s;
    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::before {
    opacity: 1;
}

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

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

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

.service-card .service-icon i {
    font-size: 22px;
    color: var(--shore-green);
    transition: all 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: 12px;
}

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

.service-tag {
    display: inline-block;
    padding: 5px 12px;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--shore-green);
    background: #F0FDF4;
    border-radius: 6px;
    margin: 3px;
}

/* ==============================================
   Delivery Approach Section (Horizontal)
   ============================================== */
.delivery-section {
    background: var(--light-gray);
}

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

.delivery-horizontal {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    position: relative;
}

.delivery-h-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 10px;
}

.delivery-h-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #F0FDF4 0%, #fff 100%);
    border: 2px solid #E5E5E5;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
    z-index: 2;
}

.delivery-h-step:hover .delivery-h-icon {
    border-color: var(--shore-green);
    background: linear-gradient(135deg, var(--shore-green), #84CC16);
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(122, 189, 48, 0.3);
}

.delivery-h-step.active .delivery-h-icon {
    border-color: var(--shore-green);
    background: linear-gradient(135deg, var(--shore-green), #84CC16);
    box-shadow: 0 10px 30px rgba(122, 189, 48, 0.3);
}

.delivery-h-num {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    background: var(--shore-green);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(122, 189, 48, 0.4);
}

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

.delivery-h-step:hover .delivery-h-icon i,
.delivery-h-step.active .delivery-h-icon i {
    color: #fff;
}

.delivery-h-connector {
    position: absolute;
    top: 40px;
    left: calc(50% + 45px);
    width: calc(100% - 90px);
    display: flex;
    align-items: center;
    z-index: 1;
}

.connector-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--shore-green), #E5E5E5);
}

.connector-arrow {
    color: var(--shore-green);
    font-size: 10px;
    margin-left: 5px;
    animation: arrowPulse 1.5s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { opacity: 0.5; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(3px); }
}

.delivery-h-content {
    margin-top: 20px;
    max-width: 160px;
}

.delivery-h-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.delivery-h-content p {
    color: var(--gray);
    font-size: 0.75rem;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 1200px) {
    .delivery-horizontal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }
    .delivery-h-step {
        flex: 0 0 30%;
        max-width: 200px;
    }
    .delivery-h-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .delivery-h-step {
        flex: 0 0 45%;
    }
}

@media (max-width: 576px) {
    .delivery-h-step {
        flex: 0 0 100%;
        max-width: 280px;
    }
    .delivery-h-icon {
        width: 70px;
        height: 70px;
    }
    .delivery-h-icon i {
        font-size: 24px;
    }
}

/* ==============================================
   Accelerated Entry Points Section
   ============================================== */
.entry-points-section {
    background: var(--charcoal);
}

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

.entry-points-section .section-title-modern {
    color: #fff;
}

.entry-points-section .section-desc {
    color: rgba(255, 255, 255, 0.6);
}

.entry-points-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.entry-points-grid .entry-point-card {
    flex: 0 0 calc(33.333% - 14px);
    max-width: calc(33.333% - 14px);
}

.entry-point-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.entry-point-card::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;
}

.entry-point-card:hover::before {
    opacity: 1;
}

.entry-point-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(122, 189, 48, 0.3);
    transform: translateY(-4px);
}

.entry-point-icon {
    width: 50px;
    height: 50px;
    background: rgba(122, 189, 48, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s;
}

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

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

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

.entry-point-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.entry-point-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

.entry-points-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--shore-green);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
}

.entry-points-btn:hover {
    background: var(--shore-green-dark);
    box-shadow: 0 8px 30px rgba(122, 189, 48, 0.3);
    color: #fff;
}

.mt-50 {
    margin-top: 50px;
}

@media (max-width: 992px) {
    .entry-points-grid .entry-point-card {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
}

@media (max-width: 576px) {
    .entry-points-grid .entry-point-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .entry-point-card {
        padding: 22px;
    }
}

/* ==============================================
   Engagement Models Section
   ============================================== */
.engagement-section {
    background: var(--light-gray);
}

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

.engagement-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px;
    border: 2px solid #E5E5E5;
    transition: all 0.3s;
    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.featured {
    background: #F0FDF4;
    border-color: var(--shore-green);
    box-shadow: 0 4px 20px rgba(122,189,48,0.1);
}

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

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

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

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

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

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

.engagement-card .eng-subtitle {
    color: var(--shore-green);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

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

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

.engagement-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
}

.engagement-card ul li .check-circle {
    width: 22px;
    height: 22px;
    background: rgba(122,189,48,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

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

.engagement-card ul li span {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ==============================================
   Why SHORE Section (Dark Background)
   ============================================== */
.why-section {
    background: var(--charcoal);
}

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

.why-section .section-title-modern {
    color: #fff;
}

.why-section .section-desc {
    color: rgba(255, 255, 255, 0.6);
}

.why-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.why-item-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.why-item:hover .why-item-icon {
    border-color: rgba(122, 189, 48, 0.5);
    background: rgba(122, 189, 48, 0.1);
}

.why-item-icon i {
    font-size: 20px;
    color: var(--shore-green);
}

.why-item-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.why-item-content p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.why-image {
    border-radius: 16px;
    overflow: hidden;
}

.why-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

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

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

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

/* Horizontal Category Tabs */
.category-tabs-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding: 0 20px;
}

.category-tab-h {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #fff;
    border: 1px solid #E5E5E5;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
    white-space: nowrap;
}

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

.category-tab-h:hover {
    border-color: var(--shore-green);
    color: var(--shore-green);
    box-shadow: 0 4px 15px rgba(122,189,48,0.1);
}

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

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

@media (max-width: 992px) {
    .category-tabs-horizontal {
        gap: 6px;
        padding: 0;
    }
    .category-tab-h {
        padding: 8px 12px;
        font-size: 0.7rem;
    }
    .category-tab-h span {
        display: none;
    }
    .category-tab-h i {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .category-tabs-horizontal {
        gap: 4px;
    }
    .category-tab-h {
        padding: 6px 10px;
    }
    .category-tab-h i {
        font-size: 14px;
    }
}

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

/* Category Header Banner - Compact Layout */
.category-header-banner {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: linear-gradient(135deg, #FAFFFE 0%, #F0FDF4 100%);
    border: 1px solid rgba(122, 189, 48, 0.2);
    border-radius: 16px;
    padding: 24px 28px;
}

.category-header-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, var(--shore-green), #84CC16);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(122, 189, 48, 0.25);
}

.category-header-icon i {
    font-size: 26px;
    color: #fff;
}

.category-header-info {
    flex: 1;
}

.category-header-top {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.category-header-banner h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--charcoal);
    margin: 0;
}

.category-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    background: var(--shore-green);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

.category-header-desc {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* Modern Role Cards */
.role-card-modern {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    border: 1px solid #E5E5E5;
    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: 4px;
    background: linear-gradient(90deg, var(--shore-green), #84CC16);
    opacity: 0;
    transition: opacity 0.3s;
}

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

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

.role-card-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(122,189,48,0.1);
    line-height: 1;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.role-card-modern:hover .role-card-number {
    color: rgba(122,189,48,0.25);
}

.role-card-modern h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--charcoal);
    margin: 0 0 15px;
}

.role-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.role-skill-tag {
    display: inline-block;
    padding: 5px 12px;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--gray);
    background: var(--light-gray);
    border: 1px solid #E5E5E5;
    border-radius: 6px;
    transition: all 0.3s;
}

.role-card-modern:hover .role-skill-tag {
    border-color: rgba(122,189,48,0.3);
    color: var(--shore-green);
}

/* Profile CTA Modern */
.profile-cta-modern {
    background: linear-gradient(135deg, #fff, #F0FDF4);
    border-radius: 16px;
    padding: 30px 40px;
    border: 2px solid rgba(122,189,48,0.2);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
}

.profile-cta-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--charcoal);
    margin: 0 0 8px;
}

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

.btn-cta-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--shore-green);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

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

@media (max-width: 768px) {
    .profile-cta-modern {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    .category-header-banner {
        flex-direction: column;
        text-align: center;
    }
    .category-header-top {
        justify-content: center;
    }
}

/* ==============================================
   Case Studies Section
   ============================================== */
.cases-section {
    background: #fff;
}

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

.case-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #E5E5E5;
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;
}

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

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

.case-card-body {
    padding: 28px;
}

.case-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.case-card-icon {
    width: 45px;
    height: 45px;
    background: #F0FDF4;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-card-icon i {
    font-size: 20px;
    color: var(--shore-green);
}

.case-card-sector {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--shore-green);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.case-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.case-card-subtitle {
    font-size: 0.85rem;
    color: var(--gray);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 18px;
}

.case-card-section {
    margin-bottom: 15px;
}

.case-card-section .section-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #999;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.case-card-section p {
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

.case-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.case-card-tag {
    padding: 5px 12px;
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--shore-green);
    background: #F0FDF4;
    border-radius: 6px;
}

/* ==============================================
   Centers of Excellence Section
   ============================================== */
.coe-section {
    background-image: url(../img/slider/slider-4.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.coe-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
}

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

.coe-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.coe-col {
    display: flex;
    padding: 0 15px;
    margin-bottom: 30px;
}

.coe-box {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border-radius: 12px;
    border: 1px solid rgba(122, 189, 48, 0.2);
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.coe-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7abd30, #5a9a1f);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.coe-box:hover {
    transform: translateY(-10px);
    background: rgba(35, 35, 35, 0.95);
    border-color: #7abd30;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(122, 189, 48, 0.15);
}

.coe-box:hover::before {
    transform: scaleX(1);
}

.coe-box-icon {
    width: 80px;
    height: 80px;
    min-height: 80px;
    background: linear-gradient(135deg, #7abd30 0%, #5a9a1f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
    margin-bottom: 20px;
}

.coe-box:hover .coe-box-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(122, 189, 48, 0.5);
}

.coe-box-icon i {
    font-size: 36px;
    color: #fff;
}

.coe-box-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #fff;
    color: #5a9a1f;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 10px;
    letter-spacing: 0.5px;
}

.coe-box-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.coe-box-subtitle {
    font-size: 0.85rem;
    color: #7abd30;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.coe-box-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 0;
    flex-grow: 1;
}

@media (min-width: 992px) {
    .coe-col {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .coe-col {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .coe-box {
        min-height: 280px;
    }
}

@media (max-width: 767px) {
    .coe-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .coe-box {
        min-height: auto;
        padding: 30px 20px;
    }
    .coe-box-icon {
        width: 70px;
        height: 70px;
        min-height: 70px;
    }
    .coe-box-icon i {
        font-size: 30px;
    }
    .coe-box-title {
        font-size: 1.2rem;
    }
    .coe-box-desc {
        font-size: 0.85rem;
    }
}

/* ==============================================
   Final CTA Section
   ============================================== */
.cta-section {
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 25%;
    width: 400px;
    height: 400px;
    background: var(--shore-green);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.05;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: 25%;
    width: 350px;
    height: 350px;
    background: var(--shore-green);
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.05;
}

.cta-section .container {
    position: relative;
    z-index: 10;
    max-width: 900px;
}

.cta-section .section-title-modern {
    color: #fff;
}

.cta-section .section-desc {
    color: rgba(255, 255, 255, 0.6);
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 40px;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--shore-green);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
}

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

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.cta-footer {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
    margin-top: 50px;
}

/* ==============================================
   CTA Card Section (New Style)
   ============================================== */
.softdev-cta-section {
    padding: 0 0 60px 0;
    background: transparent;
}

.softdev-cta-section .container {
    max-width: 900px;
}

.softdev-cta-card {
    background: linear-gradient(135deg, var(--shore-green) 0%, var(--shore-green-dark) 100%);
    border-radius: 12px;
    padding: 35px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.softdev-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.softdev-cta-card::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-card-content {
    position: relative;
    z-index: 2;
    flex: 1;
}

.cta-card-content h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.cta-card-content h2 span {
    color: rgba(255, 255, 255, 0.9);
}

.cta-card-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 18px;
    max-width: 450px;
    line-height: 1.5;
}

.cta-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #fff;
    color: var(--shore-green-dark);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-contact-btn:hover {
    background: var(--charcoal);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta-card-icon {
    position: relative;
    z-index: 2;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-card-icon i {
    font-size: 32px;
    color: #fff;
}

@media (max-width: 768px) {
    .softdev-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .cta-card-content h2 {
        font-size: 1.8rem;
    }

    .cta-card-content p {
        max-width: 100%;
    }

    .cta-card-icon {
        width: 100px;
        height: 100px;
        order: -1;
    }

    .cta-card-icon i {
        font-size: 40px;
    }
}

/* ==============================================
   Profile Request Modal (reused from IT Skills)
   ============================================== */
.profile-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    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-body {
    padding: 0;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

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

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

/* ==============================================
   Utility Classes
   ============================================== */
.text-green {
    color: var(--shore-green) !important;
}

.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: 992px) {
    .pt-80 { padding-top: 50px !important; }
    .pb-80 { padding-bottom: 50px !important; }
    .mb-60 { margin-bottom: 30px !important; }
    .mb-40 { margin-bottom: 20px !important; }
}

@media (max-width: 768px) {
    .pt-80 { padding-top: 35px !important; }
    .pb-80 { padding-bottom: 35px !important; }
    .mb-60 { margin-bottom: 20px !important; }

    .value-card, .service-card {
        padding: 20px;
    }

    .case-card-body {
        padding: 20px;
    }

    .team-content {
        padding: 20px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn-primary, .cta-btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}
