.service-card-container
{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.service-card {
    position: relative;
    min-height: 512px;
    padding: 64px 32px 32px 32px;
    cursor: pointer;
    background-color: white;
    box-shadow: 0px 15px 60px -10px rgba(143, 125, 109, 0.35);
    border: 1px solid #e7e7e7;
    transition: all 0.35s ease; /* smooth animation */
    border-radius: 16px; /* optional, for modern look */
}
.service-card:hover {
    transform: translateY(-10px) scale(1.02); /* slight lift + zoom */
    box-shadow: 0px 25px 70px -10px rgba(143, 125, 109, 0.45);
    border-color: var(--theme-color-2); /* subtle highlight */
}
.service-card > .card-index
{
    opacity: 0.35;
    font-family: "Outfit", sans-serif;
}
.service-card:hover > .arrow-001
{
    background-color: var(--theme-color-2);
}
.service-card:hover > .arrow-001 > img
{
    transform: rotate(45deg);
}
@media (max-width: 1024px)
{
    .service-card-container
    {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 720px)
{
    .service-card-container
    {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* Services Layout with Central Image */
.services-layout-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    margin: 64px 0;
    position: relative;
}

.services-left-cards,
.services-right-cards {
    display: flex;
    flex-direction: column;
    gap: 32px;
    flex: 1;
    max-width: 300px;
}

.services-central-image {
    flex: 1;
    max-width: 500px;
    position: relative;
    z-index: 2;
}

.central-image-container {
    position: relative;
    border-radius: 100px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

/* .central-image-container:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
} */

.central-services-image {
    width: 100%;
    height: 500px;
    object-fit: contain;
    transition: all 0.4s ease;
}

/* .central-image-container:hover .central-services-image {
    transform: scale(1.1);
} */

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 40px 24px 24px;
    transform: translateY(100%);
    transition: all 0.4s ease;
}

.central-image-container:hover .image-overlay {
    transform: translateY(0);
}

/* Side Cards Styling */
.service-card-side {
    padding: 24px 20px;
    min-height: 180px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: all 0.6s ease;
}

.service-card-side:hover::before {
    left: 100%;
}

.service-card-side:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Left cards animation */
.services-left-cards .service-card-side:hover {
    transform: translateY(-8px) translateX(8px) scale(1.03);
}

/* Right cards animation */
.services-right-cards .service-card-side:hover {
    transform: translateY(-8px) translateX(-8px) scale(1.03);
}

/* Connection Lines (Optional Visual Enhancement) */
.services-layout-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 25%;
    right: 25%;
    height: 2px;
    background: linear-gradient(to right, var(--theme-color-2), transparent, var(--theme-color-2));
    z-index: 1;
    opacity: 0.3;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .services-layout-container {
        gap: 32px;
    }
    
    .services-left-cards,
    .services-right-cards {
        max-width: 250px;
    }
    
    .services-central-image {
        max-width: 320px;
    }
    
    .central-services-image {
        height: 320px;
    }
}

@media screen and (max-width: 992px) {
    .services-layout-container {
        flex-direction: column;
        gap: 48px;
    }
    
    .services-left-cards,
    .services-right-cards {
        flex-direction: row;
        max-width: 100%;
        justify-content: center;
    }
    
    .services-central-image {
        order: 2;
        max-width: 100%;
    }
    
    .services-left-cards {
        order: 1;
    }
    
    .services-right-cards {
        order: 3;
    }
    
    .services-layout-container::before {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .services-left-cards,
    .services-right-cards {
        flex-direction: column;
        gap: 24px;
    }
    
    .service-card-side {
        padding: 20px 16px;
        min-height: 160px;
    }
    
    .central-services-image {
        height: 280px;
    }
    
    .services-layout-container {
        gap: 32px;
    }
}

@media screen and (max-width: 480px) {
    .service-card-side {
        padding: 16px 12px;
        min-height: 140px;
    }
    
    .central-services-image {
        height: 240px;
    }
    
    .image-overlay {
        padding: 20px 16px 16px;
    }
}


/* Implementation Methodology Table */
.methodology-table {
    display: table;
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.methodology-table-header {
    display: table-row;
    background-color: #6B7280;
}

.methodology-header-cell {
    display: table-cell;
    padding: 16px 20px;
    color: white;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    border-right: 1px solid #fff;
}

.methodology-header-cell:last-child {
    border-right: none;
}

.methodology-table-row {
    display: table-row;
}

.methodology-row-planning {
    background-color: #E8F5E8;
}

.methodology-row-assessment {
    background-color: #FFF2CC;
}

.methodology-row-design {
    background-color: #E8F5E8;
}

.methodology-row-construct {
    background-color: #D4F1D4;
}

.methodology-row-implement {
    background-color: #E8F5E8;
}

.methodology-row-deploy {
    background-color: #FFF8DC;
}

.methodology-row-review {
    background-color: #F0F8FF; 
}

.methodology-cell {
    display: table-cell;
    padding: 20px;
    vertical-align: top;
    border-right: 1px solid #D1D5DB;
    border-bottom: 1px solid #D1D5DB;
    font-size: 18px;
    line-height: 1.5;
}

.methodology-cell:last-child {
    border-right: none;
}

.methodology-phase-cell {
    text-align: center;
    font-weight: 600;
    width: 200px;
    color: #374151;
}

.phase-icon {
    margin-bottom: 8px;
    color: #6B7280;
}

.phase-icon svg {
    width: 40px;
    height: 40px;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .methodology-table {
        font-size: 16px;
    }
    
    .methodology-cell {
        padding: 12px;
    }
    
    .methodology-phase-cell {
        width: 150px;
    }
    
    .phase-icon svg {
        width: 30px;
        height: 30px;
    }
}

@media screen and (max-width: 768px) {
    .methodology-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .methodology-table-header,
    .methodology-table-row {
        display: table-row;
        min-width: 800px;
    }
    
    .methodology-header-cell,
    .methodology-cell {
        display: table-cell;
        white-space: normal;
    }
}


/* Analytics Solutions Cards */
.analytics-solutions-container {
    display: flex;
    gap: 32px;
    margin: 48px 0;
}

.analytics-card {
    flex: 1;
    padding: 40px 32px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    border: 2px solid transparent;
}

.analytics-card-1 {
    background: linear-gradient(135deg, #FFE5B4 0%, #FFCC80 100%);
    box-shadow: 0 8px 32px rgba(255, 204, 128, 0.3);
}

.analytics-card-2 {
    background: linear-gradient(135deg, #E8F4FD 0%, #B3D9FF 100%);
    box-shadow: 0 8px 32px rgba(179, 217, 255, 0.3);
}

.analytics-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.analytics-card-icon svg {
    color: #2C3E50;
    transition: all 0.3s ease;
}

.analytics-card-content h3 {
    color: #2C3E50;
    margin-bottom: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.analytics-card-content p {
    color: #34495E;
    line-height: 1.6;
    transition: all 0.3s ease;
}

/* Hover Effects */
.analytics-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--theme-color-2);
}

.analytics-card-1:hover {
    box-shadow: 0 20px 40px rgba(255, 204, 128, 0.4);
    background: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%);
}

.analytics-card-2:hover {
    box-shadow: 0 20px 40px rgba(179, 217, 255, 0.4);
    background: linear-gradient(135deg, #87CEEB 0%, #4682B4 100%);
}

.analytics-card:hover .analytics-card-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.analytics-card:hover .analytics-card-icon svg {
    color: var(--theme-color-2);
    transform: scale(1.1);
}

.analytics-card:hover .analytics-card-content h3 {
    color: #1A252F;
    transform: translateX(4px);
}

.analytics-card:hover .analytics-card-content p {
    color: #2C3E50;
    transform: translateX(4px);
}

/* Add a subtle pulse animation */
.analytics-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.analytics-card:hover::before {
    left: 100%;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .analytics-solutions-container {
        flex-direction: column;
        gap: 24px;
    }
    
    .analytics-card {
        padding: 32px 24px;
    }
    
    .analytics-card-icon {
        width: 60px;
        height: 60px;
    }
    
    .analytics-card-icon svg {
        width: 40px;
        height: 40px;
    }
}

@media screen and (max-width: 480px) {
    .analytics-card {
        padding: 24px 20px;
    }
    
    .analytics-card-content h3 {
        font-size: 20px;
    }
    
    .analytics-card-content p {
        font-size: 14px;
    }
}

/* Responsive Images in Oracle Services */
.details-container .gap-16.flex.flex-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.details-container .gap-16.flex.flex-row img {
    /* max-width: 50%; */
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.details-container .gap-16.flex.flex-column {
    flex: 1;
}

/* Process GIF Responsive Styling */
.details-container .gap-16.flex.flex-row img[src*="process-orienteced-sd.gif"] {
    margin-left: 32px;
    max-height: 400px;
    object-fit: contain;
}

/* Implementation Charter Image Responsive Styling */
.details-container .gap-16.flex.flex-row img[src*="implementation-chartered-img.jpg"] {
    margin-right: 20px;
    max-height: 350px;
}

/* Responsive Design for Oracle Services Images */
@media screen and (max-width: 1200px) {
    .details-container .gap-16.flex.flex-row img[src*="process-orienteced-sd.gif"] {
        margin-left: 20px;
        max-height: 320px;
    }
    
    .details-container .gap-16.flex.flex-row img[src*="implementation-chartered-img.jpg"] {
        margin-right: 16px;
        max-height: 300px;
    }
}

@media screen and (max-width: 992px) {
    .details-container .gap-16.flex.flex-row {
        flex-direction: column;
        gap: 24px;
        /* align-items: center; */
    }
    
    .details-container .gap-16.flex.flex-row img {
        max-width: 100%;
        margin: 0 !important;
        /* align-self: center; */
    }
    
    .details-container .gap-16.flex.flex-row img[src*="process-orienteced-sd.gif"] {
        max-height: 280px;
        order: 2;
    }
    
    .details-container .gap-16.flex.flex-row img[src*="implementation-chartered-img.jpg"] {
        max-height: 250px;
        order: 1;
    }
    
    .details-container .gap-16.flex.flex-column {
        order: 1;
        text-align: center;
    }
}

@media screen and (max-width: 768px) {
    .details-container .gap-16.flex.flex-row img[src*="process-orienteced-sd.gif"] {
        max-height: 220px;
    }
    
    .details-container .gap-16.flex.flex-row img[src*="implementation-chartered-img.jpg"] {
        max-height: 200px;
    }
    
    .details-container {
        padding: 32px 24px !important;
    }
    
    .details-container .gap-16.flex.flex-row {
        gap: 20px;
    }
}

@media screen and (max-width: 480px) {
    .details-container .gap-16.flex.flex-row img[src*="process-orienteced-sd.gif"] {
        max-height: 180px;
    }
    
    .details-container .gap-16.flex.flex-row img[src*="implementation-chartered-img.jpg"] {
        max-height: 160px;
    }
    
    .details-container {
        padding: 24px 16px !important;
    }
    
    .details-container .gap-16.flex.flex-row {
        gap: 16px;
    }
    
    .details-container .font-32 {
        font-size: 24px;
    }
    
    .details-container .font-18 {
        font-size: 16px;
    }
}

/* Oracle Services Table Container */
.oracle-services-table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    margin-top: 20px;
}

/* Oracle Services Table */
.oracle-services-table {
    display: grid;
    grid-template-columns: 220px 1fr;
    font-family: inherit;
    min-width: 800px; /* Ensure table has a minimum width for scrolling */
}

.oracle-services-table .category-cell {
    grid-column: 1 / 2;
    background-color: #f8f9fa;
    color: #005a9c;
    font-weight: 700;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
    text-align: center;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.oracle-services-table .content-cell {
    grid-column: 2 / 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid #dee2e6;
}

.oracle-services-table .header-cell {
    background-color: #fec89a;
    color: #000000;
    font-weight: 600;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #dee2e6;
    font-size: 18px;
}

.oracle-services-table .header-cell:first-child {
    border-right: 1px solid #dee2e6;
}

.oracle-services-table .data-cell {
    padding: 20px;
    background-color: #fff;
    font-size: 18px;
    line-height: 1.6;
}

.oracle-services-table .data-cell b {
    color: #343a40;
}

.oracle-services-table .data-cell:first-child {
    border-right: 1px solid #dee2e6;
}

.oracle-services-table .sub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.oracle-services-table .sub-cell {
    padding: 16px;
    text-align: center;
    background-color: #fff;
    border-top: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.oracle-services-table .sub-cell:hover {
    background-color: #f1f3f5;
}

.oracle-services-table .sub-cell:nth-child(odd) {
    border-right: 1px solid #e9ecef;
}

.oracle-services-table .full-width-cell {
    grid-column: 1 / -1;
    padding: 16px;
    background-color: #fff;
    text-align: center;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.oracle-services-table .full-width-cell:hover {
    background-color: #f1f3f5;
}

.oracle-services-table .full-width-cell:first-child:not(:last-child) {
    border-right: 1px solid #e9ecef;
}

.oracle-services-table .row-product,
.oracle-services-table .row-services,
.oracle-services-table .row-support {
    display: contents;
}

.oracle-services-table .row-support .category-cell,
.oracle-services-table .row-support .content-cell {
    border-bottom: none;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .oracle-services-table {
        grid-template-columns: 180px 1fr;
        min-width: 700px;
    }
    .oracle-services-table .category-cell,
    .oracle-services-table .header-cell {
        font-size: 16px;
        padding: 16px;
    }
    .oracle-services-table .data-cell,
    .oracle-services-table .sub-cell,
    .oracle-services-table .full-width-cell {
        font-size: 16px;
        padding: 16px;
    }
}

@media (max-width: 768px) {
    .oracle-services-table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .oracle-services-table {
        min-width: 700px;
    }
}

/* Cybersecurity Services Grid */
.cybersecurity-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin: 32px 0;
}

.cybersecurity-service-card {
    background-color: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.cybersecurity-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
    border-color: var(--theme-color-2);
}

.service-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.service-card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    border-radius: 50%;
    padding: 12px;
}

.service-card-icon img {
    width: 36px;
    height: 36px;
    filter: brightness(0) saturate(100%) invert(55%) sepia(92%) saturate(1352%) hue-rotate(360deg) brightness(101%) contrast(106%);
}

.service-card-header h3 {
    margin: 0;
    color: var(--theme-color-3);
    font-weight: 600;
}

.service-card-content ul ul {
    list-style: none;
    padding-left: 0;
}

.service-card-content ul ul li {
    margin-bottom: 12px;
    padding-left: 32px;
    position: relative;
}

.service-card-content ul ul li::before {
    content: "•";
    color: var(--theme-color-2);
    font-weight: bold;
    font-size: 18px;
    position: absolute;
    left: 8px;
}

/* Engagement Models Grid */
.engagement-models-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 32px 0;
}

.engagement-model-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border-top: 4px solid var(--theme-color-2);
    min-height: 200px;
}

.engagement-model-card:nth-child(1) {
    border-color: #FF9F43;
}

.engagement-model-card:nth-child(2) {
    border-color: #4CAF50;
}

.engagement-model-card:nth-child(3) {
    border-color: #2196F3;
}

.engagement-model-card:nth-child(4) {
    border-color: #9C27B0;
}

.engagement-model-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.engagement-model-header {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
}

.engagement-model-header h3 {
    margin: 0;
    color: #2C3E50;
}

.engagement-model-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.engagement-model-content p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Benefits Container */
.benefits-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 24px 0;
}

.benefits-card {
    background-color: white;
    border-radius: 12px;
    padding: 32px 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefits-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
    background-color: var(--theme-color-3);
}

.benefits-card:hover h3,
.benefits-card:hover p {
    color: white;
}

.benefits-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--theme-color-3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.benefits-card:hover .benefits-icon {
    background-color: var(--theme-color-2);
    transform: scale(1.1) rotate(10deg);
}

.benefits-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.benefits-card h3 {
    margin: 0 0 16px 0;
    color: var(--theme-color-3);
    font-weight: 600;
    transition: all 0.3s ease;
}

.benefits-card p {
    margin: 0;
    color: #666;
    line-height: 1.6;
    transition: all 0.3s ease;
}

/* Responsive Design for Cybersecurity Page */
@media screen and (max-width: 1200px) {
    .cybersecurity-services-grid,
    .benefits-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .engagement-models-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .cybersecurity-services-grid {
        grid-template-columns: 1fr;
    }
    
    .engagement-models-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-container {
        grid-template-columns: 1fr;
    }
    
    .service-card-header {
        flex-direction: column;
        text-align: center;
    }
    
    .engagement-model-card {
        min-height: 180px;
    }
}
