/* ===== SERVICES PAGE STYLES ===== */

/* Prevent horizontal overflow */
.main-services,
.additional-services,
.services-overview,
.why-choose {
    width: 100%;
    overflow-x: hidden;
}

/* Page Header */
.page-header {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-dark);
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23FFD700" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(10px, 10px); }
}

.header-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.page-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    margin-bottom: 20px;
    font-family: var(--font-tech);
}

.page-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    z-index: 1;
}

/* Services Overview */
.services-overview {
    padding: 60px 0 30px 0;
    background: var(--secondary-black);
}

.services-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--dark-gray);
    border-radius: 15px;
    border: 1px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: var(--transition-slow);
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.1);
}

/* تأثير النبضة للرقم */
.stat-item:hover .stat-number {
    animation: numberPulse 0.6s ease;
}

@keyframes numberPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    font-family: var(--font-tech);
    margin-bottom: 10px;
    display: block;
    line-height: 1;
    transition: var(--transition);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
    line-height: 1.3;
    color: var(--white);
}

/* Main Services */
.main-services {
    padding: 40px 0 100px 0;
    background: var(--primary-black);
    overflow-x: hidden; /* Prevent horizontal scroll */
}

.service-section {
    margin-bottom: 100px;
    position: relative;
}

.service-section:last-child {
    margin-bottom: 0;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 100%; /* Prevent overflow */
}

.service-section.reverse .service-content {
    direction: rtl;
}

.service-section.reverse .service-text {
    direction: ltr;
}

.service-badge {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--primary-black);
    padding: 16px 40px;
    border-radius: 35px;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    animation: badgePulse 3s ease-in-out infinite;
    font-family: var(--font-tech);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(184, 134, 11, 0.3);
    position: relative;
    overflow: hidden;
}

.service-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.service-badge:hover::before {
    left: 100%;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    }
    50% {
        transform: scale(1.03);
        box-shadow: 0 12px 35px rgba(255, 215, 0, 0.5);
    }
}

.service-text {
    max-width: 100%;
    word-wrap: break-word; /* Handle long words */
}

.service-text h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
    line-height: 1.2;
    word-wrap: break-word;
}

.service-text p {
    font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 40px;
    word-wrap: break-word;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 12px;
    border-left: 4px solid var(--gold);
    transition: var(--transition);
}

.feature:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(10px);
}

.feature i {
    color: var(--gold);
    font-size: 1.5rem;
    margin-top: 5px;
    min-width: 24px;
}

.feature h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--white);
}

.feature p {
    opacity: 0.8;
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

/* Tech Illustrations */
.tech-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    position: relative;
}

/* Inline Visual for specific sections */
.service-visual-inline {
    margin: 30px 0;
    display: flex;
    justify-content: center;
}

.service-visual-inline .tech-illustration {
    height: 200px;
    margin: 0;
}

.service-visual-inline .protection-shield {
    width: 150px;
    height: 150px;
}

.service-visual-inline .cyber-grid {
    gap: 20px;
    transform: scale(0.8);
}

.service-visual-inline .human-network {
    width: 200px;
    height: 200px;
    transform: scale(0.8);
}

.cyber-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    position: relative;
}

.grid-item {
    width: 120px;
    height: 120px;
    background: var(--dark-gray);
    border: 2px solid var(--dark-gray);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.grid-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: var(--transition-slow);
}

.grid-item.active {
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.grid-item.active::before {
    left: 100%;
}

/* Protection Shield */
.protection-shield {
    position: relative;
    width: 200px;
    height: 200px;
}

.shield-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-black);
    z-index: 3;
}

.shield-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--gold);
    border-radius: 50%;
    opacity: 0.6;
}

.ring-1 {
    width: 120px;
    height: 120px;
    animation: pulse 2s ease-in-out infinite;
}

.ring-2 {
    width: 160px;
    height: 160px;
    animation: pulse 2s ease-in-out infinite 0.5s;
}

.ring-3 {
    width: 200px;
    height: 200px;
    animation: pulse 2s ease-in-out infinite 1s;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.2;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* PhishRod Section - Complete Redesign */
.phishrod-section {
    padding: 50px 0 80px 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    position: relative;
    overflow: hidden;
}

.phishrod-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    z-index: 1;
}

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

/* Header */
.phishrod-header {
    text-align: center;
    margin-bottom: 50px;
}

.phishrod-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--white);
    margin: 20px 0;
    font-family: var(--font-tech);
    line-height: 1.2;
}

.phishrod-subtitle {
    font-size: 1.3rem;
    color: var(--gold);
    opacity: 0.95;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
}

/* Main Content */
.phishrod-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.phishrod-description {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.threat-landscape p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--white);
    opacity: 0.9;
    margin: 0;
}

.phishrod-overview h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
    font-family: var(--font-tech);
}

.phishrod-overview p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 25px;
}

.model-support {
    display: flex;
    gap: 15px;
}

.model-badge {
    background: linear-gradient(135deg, var(--gold) 0%, #ffed4e 100%);
    color: var(--primary-black);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Statistics */
.phishrod-stats {
    display: flex;
    justify-content: center;
    align-items: center;
}

.stat-highlight {
    background: linear-gradient(135deg, var(--dark-gray) 0%, rgba(255, 215, 0, 0.1) 100%);
    border: 2px solid var(--gold);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 300px;
}

.stat-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: #ff6b6b;
    font-family: var(--font-tech);
    line-height: 1;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.stat-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.stat-source {
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 500;
    position: relative;
    z-index: 2;
}

/* Features Section */
.phishrod-features {
    background: var(--dark-gray);
    border-radius: 30px;
    padding: 50px;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.features-header {
    text-align: center;
    margin-bottom: 50px;
}

.features-header h3 {
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 600;
    margin: 0;
}

/* Platform */
.behaviour-platform {
    max-width: 1000px;
    margin: 0 auto;
}

.platform-title {
    text-align: center;
    margin-bottom: 40px;
}

.platform-title h4 {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e40af 0%, #22c55e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-tech);
    margin-bottom: 10px;
}

.platform-subtitle {
    font-size: 1rem;
    color: var(--gold);
    opacity: 0.9;
}

/* Modules Grid */
.platform-modules {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.module-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.module-card::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: var(--transition-slow);
}

.module-card:hover::before {
    left: 100%;
}

.module-card.phishscout {
    border-color: #1e40af;
}

.module-card.phishscout:hover {
    background: rgba(30, 64, 175, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.3);
}

.module-card.security-awareness {
    border-color: #3b82f6;
}

.module-card.security-awareness:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
}

.module-card.phishing-simulator {
    border-color: #ff6b35;
}

.module-card.phishing-simulator:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

.module-card.policy-compliance {
    border-color: #22c55e;
}

.module-card.policy-compliance:hover {
    background: rgba(34, 197, 94, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.3);
}

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

.module-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
    transition: var(--transition);
}

.phishscout .module-icon {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
}

.security-awareness .module-icon {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.phishing-simulator .module-icon {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
}

.policy-compliance .module-icon {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.module-card:hover .module-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.module-header h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    font-family: var(--font-tech);
}

.module-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--white);
    opacity: 0.9;
    margin: 0;
}

.framework-step {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px;
    background: var(--dark-gray);
    border-radius: 15px;
    border-left: 4px solid var(--gold);
    transition: var(--transition);
}

.framework-step:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    color: var(--primary-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-tech);
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gold);
}

.step-content p {
    opacity: 0.9;
    margin: 0;
    line-height: 1.5;
}

/* Human Network */
.human-network {
    position: relative;
    width: 300px;
    height: 300px;
}

.network-node {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--dark-gray);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
    transition: var(--transition);
}

.network-node:hover {
    background: var(--gold);
    color: var(--primary-black);
    transform: scale(1.1);
}

.central {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    font-size: 2rem;
    background: var(--gradient-gold);
    color: var(--primary-black);
}

.node-1 {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.node-2 {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.node-3 {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.node-4 {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

/* ===== HALCYON DETAILED SECTION ===== */
.halcyon-detailed {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    position: relative;
    overflow: hidden;
}

.halcyon-detailed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    z-index: 1;
}

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

.halcyon-detailed .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.halcyon-detailed .section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--gold) 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-tech);
}

.halcyon-detailed .section-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Ransomware Gap Visualization */
.ransomware-gap {
    margin: 80px 0;
    padding: 60px 40px;
    background: var(--dark-gray);
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.ransomware-gap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.gap-diagram {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    gap: 40px;
}

.endpoint-section,
.halcyon-section,
.recovery-section {
    text-align: center;
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.endpoint-icon,
.halcyon-icon,
.recovery-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
    transition: var(--transition);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.endpoint-icon {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
}

.endpoint-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid rgba(255, 107, 107, 0.3);
    animation: pulse-red 3s ease-in-out infinite;
}

.halcyon-icon {
    background: var(--gradient-gold);
    color: var(--primary-black);
    width: 120px;
    height: 120px;
    font-size: 3rem;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
    z-index: 3;
    position: relative;
}

.halcyon-icon::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    border: 3px solid rgba(255, 215, 0, 0.5);
    animation: pulse-gold 2s ease-in-out infinite;
}

.recovery-icon {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
    color: white;
}

.recovery-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid rgba(78, 205, 196, 0.3);
    animation: pulse-teal 3s ease-in-out infinite 1s;
}

@keyframes pulse-red {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

@keyframes pulse-gold {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.15); opacity: 0.4; }
}

@keyframes pulse-teal {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

.endpoint-label,
.halcyon-label,
.recovery-label {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
    font-family: var(--font-tech);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.halcyon-label {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.endpoint-tech,
.recovery-tech {
    font-size: 0.9rem;
    opacity: 0.8;
    color: var(--white);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gap-bridge {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold) 0%, #ffed4e 100%);
    color: var(--primary-black);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    z-index: 4;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
    animation: float 3s ease-in-out infinite;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0px); }
    50% { transform: translateX(-50%) translateY(-5px); }
}

.protection-layer {
    text-align: center;
    margin-top: 50px;
    padding: 20px 30px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.05) 100%);
    border-radius: 15px;
    border: 2px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.protection-layer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.layer-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
    font-family: var(--font-tech);
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== SECPOD SECTION ===== */
.secpod-section {
    padding: 100px 0;
    background: var(--primary-black);
    position: relative;
    overflow: hidden;
}

.secpod-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(34, 197, 94, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(34, 197, 94, 0.05) 0%, transparent 50%);
    z-index: 1;
}

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

/* Header */
.secpod-header {
    text-align: center;
    margin-bottom: 80px;
}

.secpod-title {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-tech);
    line-height: 1.2;
}

.secpod-brand {
    color: #1e40af;
}

.prevention-text {
    color: #22c55e;
}

.approach-text {
    color: #1e40af;
}

/* Main Content */
.secpod-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

/* Features */
.secpod-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 10px 20px;
    background: rgba(34, 197, 94, 0.05);
    border: 2px solid #22c55e;
    border-radius: 12px;
    transition: var(--transition);
    max-width: 380px;
    min-height: 42px;
}

.feature-card:hover {
    background: rgba(34, 197, 94, 0.1);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.2);
}

.feature-card .feature-icon {
    width: 34px;
    height: 34px;
    background: #22c55e;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-card .feature-icon i {
    font-size: 0.95rem;
    color: white;
}

.feature-card .feature-content h3 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 2px;
    font-family: var(--font-tech);
    line-height: 1;
}

.feature-card .feature-content p {
    color: var(--white);
    opacity: 0.9;
    line-height: 1.2;
    margin: 0;
    font-size: 0.7rem;
}

/* Circular Diagram */
.secpod-diagram {
    display: flex;
    justify-content: center;
    align-items: center;
}

.circular-process {
    position: relative;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e40af 0%, #22c55e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-center {
    width: 130px;
    height: 130px;
    background: #1e3a8a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 0 30px rgba(30, 64, 175, 0.5);
}

.center-content {
    text-align: center;
    color: white;
}

.center-content i {
    font-size: 1.8rem;
    margin-bottom: 6px;
    display: block;
}

.center-content span {
    font-size: 0.8rem;
    font-weight: 700;
    font-family: var(--font-tech);
}

.process-step {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 70px;
    transform: translate(-50%, -50%) 
               rotate(var(--angle)) 
               translateY(-140px) 
               rotate(calc(-1 * var(--angle)));
}

.step-content {
    text-align: center;
    color: white;
}

.step-label {
    font-size: 0.7rem;
    font-weight: 700;
    display: block;
    margin-bottom: 6px;
    font-family: var(--font-tech);
}

.step-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.step-icon i {
    font-size: 1.8rem;
    margin-bottom: 4px;
}

.step-icon span {
    font-size: 0.6rem;
    opacity: 0.9;
}

/* End-to-End Section */
.end-to-end-section {
    margin-top: 100px;
    padding: 60px 40px;
    background: var(--dark-gray);
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.end-to-end-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.end-to-end-section .section-title {
    text-align: center;
    margin-bottom: 60px;
    font-family: var(--font-tech);
    font-weight: 800;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.end-to-end {
    color: #1e40af;
    font-size: 2.8rem;
    display: inline;
}

.vulnerability {
    color: #22c55e;
    font-size: 2.8rem;
    display: inline;
}

.for-enterprise {
    color: #1e40af;
    font-size: 2rem;
    display: block;
    margin-top: 10px;
}

.management-content {
    display: grid;
    grid-template-columns: 1fr 400px 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.left-features,
.right-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.management-feature {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(34, 197, 94, 0.08);
    border-radius: 15px;
    transition: var(--transition);
}

.management-feature:hover {
    background: rgba(34, 197, 94, 0.15);
    transform: translateX(5px);
}

.feature-icon-small {
    width: 50px;
    height: 50px;
    background: #22c55e;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-small i {
    font-size: 1.4rem;
    color: white;
}

.feature-text h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin: 0;
    line-height: 1.4;
    font-weight: 600;
}

/* Dashboard Preview - Enhanced */
.dashboard-preview {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-frame {
    width: 380px;
    height: 240px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.dashboard-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.dashboard-header span:first-child {
    color: white;
    font-family: var(--font-tech);
}

.unified-dashboard {
    color: #22c55e !important;
    font-weight: 700;
}

.dashboard-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.dashboard-stats {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    font-size: 0.9rem;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--gold);
    min-width: 25px;
}

.stat-label {
    font-weight: 500;
}

.dashboard-chart {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 30px;
}

.chart-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ef4444, #f97316);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.4);
    position: relative;
}

.chart-circle::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 3px solid rgba(239, 68, 68, 0.3);
    animation: pulse-chart 2s ease-in-out infinite;
}

@keyframes pulse-chart {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

/* Benefits Row - Enhanced with Different Colors */
.benefits-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    border-radius: 15px;
    transition: var(--transition);
    border: 1px solid transparent;
}

/* Green - Achieve security effectiveness */
.benefit-item:nth-child(1) {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
}

.benefit-item:nth-child(1):hover {
    background: rgba(34, 197, 94, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(34, 197, 94, 0.3);
    border-color: #22c55e;
}

.benefit-item:nth-child(1) .benefit-icon {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
}

/* Blue - Reduce TCO by 3X */
.benefit-item:nth-child(2) {
    background: rgba(30, 64, 175, 0.1);
    border-color: rgba(30, 64, 175, 0.3);
}

.benefit-item:nth-child(2):hover {
    background: rgba(30, 64, 175, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(30, 64, 175, 0.3);
    border-color: #1e40af;
}

.benefit-item:nth-child(2) .benefit-icon {
    background: linear-gradient(135deg, #1e40af, #1d4ed8);
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.4);
}

/* Red - Make time for productive tasks */
.benefit-item:nth-child(3) {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
}

.benefit-item:nth-child(3):hover {
    background: rgba(239, 68, 68, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(239, 68, 68, 0.3);
    border-color: #ef4444;
}

.benefit-item:nth-child(3) .benefit-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: white;
}

.benefit-text h4 {
    font-size: 1.2rem;
    color: var(--white);
    margin: 0;
    font-weight: 600;
    line-height: 1.3;
}

/* Platform Features - Fixed */
.platform-features {
    margin: 100px 0;
}

.features-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--white);
    font-family: var(--font-tech);
    position: relative;
}

.features-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--dark-gray);
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    min-height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.feature-card.orange {
    border-color: #ff8c42;
    background: linear-gradient(135deg, var(--dark-gray) 0%, rgba(255, 140, 66, 0.08) 100%);
}

.feature-card.red {
    border-color: #ff6b6b;
    background: linear-gradient(135deg, var(--dark-gray) 0%, rgba(255, 107, 107, 0.08) 100%);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 140, 66, 0.15), transparent);
    transition: var(--transition-slow);
}

.feature-card.red::before {
    background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.15), transparent);
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--gold);
}

.feature-card .feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
    transition: var(--transition);
    position: relative;
    flex-shrink: 0;
}

.feature-card.orange .feature-icon {
    background: linear-gradient(135deg, #ff8c42, #ff6b35);
    box-shadow: 0 8px 20px rgba(255, 140, 66, 0.4);
}

.feature-card.red .feature-icon {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.3);
}

.feature-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white);
    line-height: 1.3;
}

.feature-subtitle {
    font-size: 1rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.4;
}

.feature-card p {
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
    flex-grow: 1;
}

/* Complete Approach Diagram */
.complete-approach {
    margin: 100px 0;
    text-align: center;
    background: var(--dark-gray);
    border-radius: 30px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.complete-approach::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.approach-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 70px;
    color: var(--white);
    font-family: var(--font-tech);
    position: relative;
    z-index: 2;
}

.approach-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.approach-diagram {
    position: relative;
    max-width: 900px;
    height: 700px;
    margin: 0 auto;
    z-index: 2;
}

/* New Simple Approach Diagram */
.approach-diagram-new {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-shield {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    border: 3px solid var(--gold);
}

.center-shield i {
    font-size: 2.5rem;
    color: var(--primary-black);
    margin-bottom: 5px;
}

.center-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-black);
    font-family: var(--font-tech);
}

.threat-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 80px;
    transform: translate(-50%, -50%) 
               rotate(var(--angle)) 
               translateY(calc(-1 * var(--distance))) 
               rotate(calc(-1 * var(--angle)));
    z-index: 5;
}

/* Individual connection lines for each threat circle */
.threat-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3px;
    height: var(--distance);
    background: var(--gold);
    transform: translate(-50%, 0%) rotate(var(--angle));
    transform-origin: top center;
    opacity: 0.9;
    z-index: 1;
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.threat-icon-new {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    border: 3px solid #ff6b6b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
    position: relative;
    z-index: 3;
}

.threat-icon-new i {
    font-size: 1.4rem;
    color: white;
}

.threat-text {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    background: var(--primary-black);
    padding: 4px 8px;
    border-radius: 8px;
    border: 1px solid var(--gold);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    position: relative;
    z-index: 3;
}

.threat-circle:hover .threat-icon-new {
    transform: scale(1.1);
    background: var(--gradient-gold);
    border-color: var(--gold);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.threat-circle:hover .threat-icon-new i {
    color: var(--primary-black);
}

.threat-circle:hover .threat-text {
    color: var(--gold);
    border-color: var(--gold);
}

.threat-circle:hover::after {
    background: var(--gold);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
    opacity: 1;
}

.approach-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
    animation: centerPulse 4s ease-in-out infinite;
}

.center-logo i {
    font-size: 3.5rem;
    color: var(--primary-black);
}

.approach-layers {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.approach-layer {
    position: absolute;
    border: 4px solid;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.approach-layer.detect {
    width: 220px;
    height: 220px;
    border-color: #ff6b6b;
    top: -110px;
    left: -110px;
}

.approach-layer.contain {
    width: 320px;
    height: 320px;
    border-color: #4ecdc4;
    top: -160px;
    left: -160px;
}

.approach-layer.recover {
    width: 420px;
    height: 420px;
    border-color: var(--gold);
    top: -210px;
    left: -210px;
}

.layer-label {
    position: absolute;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    background: var(--primary-black);
    padding: 8px 16px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.approach-layer.detect .layer-label {
    top: -20px;
    color: #ff6b6b;
    border: 2px solid #ff6b6b;
}

.approach-layer.contain .layer-label {
    top: -20px;
    left: 60px;
    color: #4ecdc4;
    border: 2px solid #4ecdc4;
}

.approach-layer.recover .layer-label {
    top: -20px;
    left: 120px;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.threat-points {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.threat-point {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 3;
}

.threat-icon {
    width: 60px;
    height: 60px;
    background: var(--dark-gray);
    border: 3px solid #ff6b6b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.threat-icon i {
    font-size: 1.4rem;
    color: #ff6b6b;
}

.threat-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
    background: var(--primary-black);
    padding: 6px 10px;
    border-radius: 10px;
    white-space: nowrap;
    max-width: 140px;
    line-height: 1.3;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.threat-point:hover .threat-icon {
    transform: scale(1.1);
    background: #ff6b6b;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.5);
}

.threat-point:hover .threat-icon i {
    color: white;
}

/* RDR Service */
.rdr-service {
    margin: 100px 0;
    background: linear-gradient(135deg, var(--dark-gray) 0%, rgba(255, 215, 0, 0.08) 100%);
    border-radius: 30px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.rdr-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.rdr-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.rdr-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.rdr-circle {
    position: relative;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    background: transparent;
}

/* Connection lines - complete lines from center to each segment */
.rdr-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: 
        /* Top line */
        linear-gradient(0deg, transparent 49%, var(--gold) 49%, var(--gold) 51%, transparent 51%),
        /* Right line */
        linear-gradient(90deg, transparent 49%, var(--gold) 49%, var(--gold) 51%, transparent 51%),
        /* Bottom line */
        linear-gradient(180deg, transparent 49%, var(--gold) 49%, var(--gold) 51%, transparent 51%),
        /* Left line */
        linear-gradient(270deg, transparent 49%, var(--gold) 49%, var(--gold) 51%, transparent 51%);
    transform: translate(-50%, -50%);
    z-index: 1;
}

.rdr-segment {
    position: absolute;
    width: 90px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: var(--transition);
    z-index: 1;
}

.rdr-segment.monitoring {
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
}

.rdr-segment.recovery {
    top: 58%;
    right: -45px;
    transform: translateY(-50%);
}

.rdr-segment.investigation {
    bottom: -104px;
    left: 50%;
    transform: translateX(-50%);
}

.rdr-segment.response {
    top: 58%;
    left: -45px;
    transform: translateY(-50%);
}

.segment-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
    position: relative;
    z-index: 3;
}

.segment-icon i {
    font-size: 1.8rem;
    color: var(--primary-black);
}

.segment-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
    max-width: 110px;
    background: var(--primary-black);
    padding: 6px 12px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 3;
    border: 1px solid var(--gold);
}

.rdr-segment:hover .segment-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.6);
}

.rdr-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    animation: centerPulse 3s ease-in-out infinite;
}

.rdr-center i {
    font-size: 2.5rem;
    color: var(--primary-black);
}

.rdr-info h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--gold);
    position: relative;
}

.rdr-info h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.rdr-benefits {
    list-style: none;
    padding: 0;
}

.rdr-benefits li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    font-size: 1.1rem;
    line-height: 1.7;
    transition: var(--transition);
}

.rdr-benefits li:hover {
    transform: translateX(5px);
}

.rdr-benefits li i {
    color: var(--gold);
    margin-right: 15px;
    margin-top: 3px;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.rdr-benefits li.sub-item {
    margin-left: 30px;
    margin-bottom: 12px;
    opacity: 0.9;
    font-size: 1rem;
}

.rdr-benefits li.sub-item i {
    color: rgba(255, 215, 0, 0.7);
    font-size: 1rem;
}

/* Additional Services */
.additional-services {
    padding: 100px 0;
    background: var(--secondary-black);
}

/* VAPT Header */
.vapt-header {
    text-align: center;
    margin-bottom: 60px;
}

.vapt-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--white);
    margin: 20px 0;
    font-family: var(--font-tech);
    line-height: 1.2;
}

.vapt-subtitle {
    font-size: 1.3rem;
    color: var(--gold);
    opacity: 0.95;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 500;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--dark-gray);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.05), transparent);
    transition: var(--transition-slow);
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card .service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    flex-shrink: 0;
}

.service-card .service-icon i {
    font-size: 1.8rem;
    color: var(--primary-black);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--gold);
    line-height: 1.3;
}

.service-card p {
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 25px;
}

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

.service-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    position: relative;
    padding-left: 25px;
    opacity: 0.8;
    transition: var(--transition);
    font-size: 0.95rem;
}

.service-card ul li:last-child {
    border-bottom: none;
}

.service-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.3rem;
}

.service-card ul li:hover {
    opacity: 1;
    padding-left: 30px;
}

/* Why Choose Section - Enhanced */
.why-choose {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    z-index: 1;
}

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

.why-choose .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.why-choose .section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 25px;
    font-family: var(--font-tech);
    line-height: 1.2;
}

.why-choose .section-subtitle {
    font-size: 1.3rem;
    color: var(--gold);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    background: var(--dark-gray);
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.benefit-item::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: var(--transition-slow);
}

.benefit-item:hover::before {
    left: 100%;
}

/* Individual Colors for Each Benefit */
.benefit-item.experience {
    border-color: #22c55e;
}

.benefit-item.experience:hover {
    background: rgba(34, 197, 94, 0.1);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.3);
    border-color: #22c55e;
}

.benefit-item.expertise {
    border-color: #3b82f6;
}

.benefit-item.expertise:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
    border-color: #3b82f6;
}

.benefit-item.trust {
    border-color: #ef4444;
}

.benefit-item.trust:hover {
    background: rgba(239, 68, 68, 0.1);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.3);
    border-color: #ef4444;
}

.benefit-item.results {
    border-color: var(--gold);
}

.benefit-item.results:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
    border-color: var(--gold);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
    font-size: 2rem;
    color: white;
}

.benefit-item.experience .benefit-icon {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

.benefit-item.expertise .benefit-icon {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.benefit-item.trust .benefit-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.benefit-item.results .benefit-icon {
    background: var(--gradient-gold);
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.benefit-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    font-family: var(--font-tech);
}

.benefit-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--white);
    opacity: 0.9;
    margin: 0;
}

/* Medium Screens (Tablets) */
@media (max-width: 1024px) {
    .service-badge {
        font-size: 1.4rem;
        padding: 14px 35px;
        letter-spacing: 1.8px;
    }
    
    .service-content {
        gap: 60px;
    }
    
    .service-text h3 {
        font-size: 2.2rem;
    }
    
    .service-text p {
        font-size: 1.1rem;
    }
    
    .tech-illustration {
        height: 350px;
    }
    
    .services-stats {
        gap: 30px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    /* VAPT Header Tablet */
    .vapt-title {
        font-size: 2.5rem;
    }
    
    .vapt-subtitle {
        font-size: 1.15rem;
    }
    
    /* Halcyon Section Tablet */
    .halcyon-detailed {
        padding: 80px 0;
    }
    
    .gap-diagram {
        max-width: 700px;
    }
    
    .endpoint-icon,
    .halcyon-icon,
    .recovery-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-card {
        padding: 35px 25px;
        min-height: 350px;
    }
    
    .feature-card .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .feature-card h4 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .feature-subtitle {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .feature-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .approach-diagram {
        height: 500px;
        max-width: 600px;
    }
    
    .approach-center {
        width: 100px;
        height: 100px;
    }
    
    .center-logo i {
        font-size: 2.5rem;
    }
    
    .approach-layer.detect {
        width: 180px;
        height: 180px;
        top: -90px;
        left: -90px;
    }
    
    .approach-layer.contain {
        width: 260px;
        height: 260px;
        top: -130px;
        left: -130px;
    }
    
    .approach-layer.recover {
        width: 340px;
        height: 340px;
        top: -170px;
        left: -170px;
    }
    
    .rdr-content {
        gap: 40px;
    }
    
    .rdr-circle {
        width: 250px;
        height: 250px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header {
        height: 50vh;
    }
    
    /* Services Overview - Reduce spacing */
    .services-overview {
        padding: 40px 0 20px 0;
    }
    
    /* Main Services Mobile Fix */
    .main-services {
        padding: 30px 0 60px 0;
    }
    
    .service-section {
        margin-bottom: 60px;
    }
    
    .service-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-section.reverse .service-content {
        direction: ltr;
    }
    
    /* Service Text Mobile Optimization */
    .service-text {
        order: 1;
    }
    
    .service-visual {
        order: 2;
    }
    
    .service-badge {
        font-size: 1.3rem;
        padding: 12px 28px;
        margin-bottom: 20px;
        letter-spacing: 1.5px;
        border-radius: 30px;
    }
    
    .service-text h3 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 20px;
    }
    
    .service-text p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 30px;
    }
    
    /* PhishRod Mobile */
    .phishrod-section {
        padding: 30px 0 60px 0;
    }
    
    .phishrod-header {
        margin-bottom: 35px;
    }
    
    .phishrod-title {
        font-size: 2rem;
        margin: 15px 0;
    }
    
    .phishrod-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    /* VAPT Header Mobile */
    .vapt-header {
        margin-bottom: 40px;
    }
    
    .vapt-title {
        font-size: 2rem;
        margin: 15px 0;
    }
    
    .vapt-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    /* Service Features Mobile Layout */
    .service-features {
        gap: 20px;
    }
    
    .feature {
        padding: 15px;
        gap: 15px;
        flex-direction: row;
        align-items: flex-start;
    }
    
    .feature:hover {
        transform: translateX(5px);
    }
    
    .feature i {
        font-size: 1.3rem;
        margin-top: 2px;
        flex-shrink: 0;
    }
    
    .feature h4 {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }
    
    .feature p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* Tech Illustrations Mobile */
    .tech-illustration {
        height: 250px;
        margin: 20px 0;
    }
    
    /* Inline Visual Mobile */
    .service-visual-inline {
        margin: 20px 0;
    }
    
    .service-visual-inline .tech-illustration {
        height: 150px;
    }
    
    .service-visual-inline .protection-shield {
        width: 120px;
        height: 120px;
        transform: scale(0.9);
    }
    
    .service-visual-inline .cyber-grid {
        gap: 15px;
        transform: scale(0.7);
    }
    
    .service-visual-inline .human-network {
        width: 160px;
        height: 160px;
        transform: scale(0.7);
    }
    
    .cyber-grid {
        gap: 15px;
        transform: scale(0.9);
    }
    
    .grid-item {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
        border-radius: 12px;
    }
    
    .protection-shield {
        width: 140px;
        height: 140px;
        transform: scale(0.9);
    }
    
    .shield-core {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .ring-1 { width: 85px; height: 85px; }
    .ring-2 { width: 110px; height: 110px; }
    .ring-3 { width: 140px; height: 140px; }
    
    .human-network {
        width: 220px;
        height: 220px;
        transform: scale(0.9);
    }
    
    .network-node {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .central {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
    
    /* HRM Framework Mobile */
    .hrm-framework {
        gap: 15px;
    }
    
    .framework-step {
        padding: 18px;
        gap: 18px;
        flex-direction: row;
        align-items: center;
    }
    
    .framework-step:hover {
        transform: translateX(5px);
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        flex-shrink: 0;
    }
    
    .step-content h4 {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }
    
    .step-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* Halcyon Detailed Mobile */
    .halcyon-detailed {
        padding: 80px 0;
    }
    
    .halcyon-detailed .section-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .halcyon-detailed .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 60px;
    }
    
    /* Ransomware Gap Mobile */
    .ransomware-gap {
        margin: 60px 0;
        padding: 40px 25px;
        border-radius: 20px;
    }
    
    .gap-diagram {
        flex-direction: column;
        gap: 30px;
        max-width: 100%;
    }
    
    .endpoint-section,
    .halcyon-section,
    .recovery-section {
        flex: none;
    }
    
    .endpoint-icon,
    .recovery-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .halcyon-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .endpoint-label,
    .recovery-label {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }
    
    .halcyon-label {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .endpoint-tech,
    .recovery-tech {
        font-size: 0.8rem;
    }
    
    .gap-bridge {
        position: static;
        transform: none;
        margin: 20px 0;
        display: inline-block;
        font-size: 0.7rem;
        padding: 8px 16px;
        border-radius: 15px;
    }
    
    .protection-layer {
        margin-top: 30px;
        padding: 15px 20px;
        border-radius: 12px;
    }
    
    .layer-text {
        font-size: 0.9rem;
    }
    
    /* SecPod Section Mobile */
    .secpod-section {
        padding: 80px 0;
    }
    
    .secpod-title {
        font-size: 2.2rem;
    }
    
    .secpod-content {
        grid-template-columns: 1fr;
        gap: 60px;
        margin-bottom: 80px;
    }
    
    .circular-process {
        width: 280px;
        height: 280px;
    }
    
    .process-center {
        width: 110px;
        height: 110px;
    }
    
    .center-content i {
        font-size: 1.5rem;
    }
    
    .center-content span {
        font-size: 0.7rem;
    }
    
    .process-step {
        width: 85px;
        height: 60px;
        transform: translate(-50%, -50%) 
                   rotate(var(--angle)) 
                   translateY(-110px) 
                   rotate(calc(-1 * var(--angle)));
    }
    
    .step-label {
        font-size: 0.6rem;
    }
    
    .step-icon i {
        font-size: 1.5rem;
    }
    
    .step-icon span {
        font-size: 0.5rem;
    }
    
    .end-to-end-section {
        padding: 40px 25px;
        margin-top: 60px;
    }
    
    .end-to-end {
        font-size: 2rem;
    }
    
    .vulnerability {
        font-size: 2rem;
    }
    
    .for-enterprise {
        font-size: 1.5rem;
    }
    
    .management-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .management-feature {
        padding: 18px;
        gap: 18px;
    }
    
    .feature-icon-small {
        width: 45px;
        height: 45px;
    }
    
    .feature-icon-small i {
        font-size: 1.3rem;
    }
    
    .feature-text h4 {
        font-size: 1rem;
    }
    
    .dashboard-frame {
        width: 320px;
        height: 200px;
        padding: 20px;
    }
    
    .dashboard-header {
        font-size: 0.8rem;
        margin-bottom: 20px;
    }
    
    .stat-box {
        font-size: 0.8rem;
        gap: 12px;
        padding: 6px 10px;
    }
    
    .stat-number {
        font-size: 1.1rem;
    }
    
    .chart-circle {
        width: 80px;
        height: 80px;
        font-size: 1.6rem;
    }
    
    .benefits-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-item {
        padding: 20px;
        gap: 18px;
    }
    
    .benefit-icon {
        width: 55px;
        height: 55px;
    }
    
    .benefit-icon i {
        font-size: 1.4rem;
    }
    
    .benefit-text h4 {
        font-size: 1.1rem;
    }
    
    .features-title {
        font-size: 2rem;
        margin-bottom: 50px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-card {
        padding: 35px 30px;
        border-radius: 20px;
    }
    
    .feature-card .feature-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .feature-card h4 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }
    
    .feature-subtitle {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .feature-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Complete Approach Mobile */
    .complete-approach {
        margin: 80px 0;
        padding: 50px 30px;
        border-radius: 25px;
    }
    
    .approach-title {
        font-size: 2rem;
        margin-bottom: 50px;
    }
    
    .approach-diagram-new {
        width: 400px;
        height: 400px;
    }
    
    .center-shield {
        width: 100px;
        height: 100px;
    }
    
    .center-shield i {
        font-size: 2rem;
    }
    
    .center-label {
        font-size: 0.7rem;
    }
    
    .threat-circle {
        --distance: 160px;
    }
    
    .threat-icon-new {
        width: 50px;
        height: 50px;
    }
    
    .threat-icon-new i {
        font-size: 1.2rem;
    }
    
    .threat-text {
        font-size: 0.65rem;
        padding: 3px 6px;
    }
    
    .approach-center {
        width: 110px;
        height: 110px;
    }
    
    .center-logo i {
        font-size: 2.8rem;
    }
    
    .approach-layer.detect {
        width: 180px;
        height: 180px;
        top: -90px;
        left: -90px;
    }
    
    .approach-layer.contain {
        width: 260px;
        height: 260px;
        top: -130px;
        left: -130px;
    }
    
    .approach-layer.recover {
        width: 340px;
        height: 340px;
        top: -170px;
        left: -170px;
    }
    
    .layer-label {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    
    .approach-layer.contain .layer-label {
        left: 45px;
    }
    
    .approach-layer.recover .layer-label {
        left: 90px;
    }
    
    .threat-point {
        transform: scale(0.85);
    }
    
    .threat-icon {
        width: 50px;
        height: 50px;
    }
    
    .threat-icon i {
        font-size: 1.2rem;
    }
    
    .threat-label {
        font-size: 0.7rem;
        padding: 5px 8px;
        max-width: 120px;
    }
    
    /* RDR Service Mobile */
    .rdr-service {
        margin: 80px 0;
        padding: 50px 30px;
        border-radius: 25px;
    }
    
    .rdr-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .rdr-visual {
        order: -1;
    }
    
    .rdr-circle {
        width: 280px;
        height: 280px;
    }
    
    /* Adjust connection lines for mobile */
    .rdr-circle::before {
        width: 280px;
        height: 280px;
        background: 
            /* Top line */
            linear-gradient(0deg, transparent 49%, var(--gold) 49%, var(--gold) 51%, transparent 51%),
            /* Right line */
            linear-gradient(90deg, transparent 49%, var(--gold) 49%, var(--gold) 51%, transparent 51%),
            /* Bottom line */
            linear-gradient(180deg, transparent 49%, var(--gold) 49%, var(--gold) 51%, transparent 51%),
            /* Left line */
            linear-gradient(270deg, transparent 49%, var(--gold) 49%, var(--gold) 51%, transparent 51%);
    }
    
    .rdr-segment {
        width: 70px;
        height: 70px;
    }
    
    .rdr-segment.monitoring {
        top: -35px;
    }
    
    .rdr-segment.recovery {
        right: -35px;
    }
    
    .rdr-segment.investigation {
        bottom: -35px;
    }
    
    .rdr-segment.response {
        left: -35px;
    }
    
    .segment-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 8px;
    }
    
    .segment-icon i {
        font-size: 1.5rem;
    }
    
    .segment-label {
        font-size: 0.7rem;
        max-width: 70px;
        padding: 4px 8px;
        border-radius: 8px;
    }
    
    .rdr-center {
        width: 80px;
        height: 80px;
    }
    
    .rdr-center i {
        font-size: 2rem;
    }
    
    .rdr-info {
        text-align: left;
    }
    
    .rdr-info h3 {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }
    
    .rdr-benefits li {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .rdr-benefits li i {
        margin-right: 12px;
    }
    
    .rdr-benefits li.sub-item {
        margin-left: 25px;
        margin-bottom: 10px;
    }
    
    /* Other Sections Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    .service-card .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .service-card .service-icon i {
        font-size: 1.6rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .service-card p {
        font-size: 0.95rem;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    .service-card ul li {
        font-size: 0.9rem;
        padding: 6px 0;
        padding-left: 20px;
        line-height: 1.4;
    }
    
    .services-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-top: 50px;
    }
    
    .stat-item {
        padding: 25px 20px;
        border-radius: 12px;
    }
    
    .stat-number {
        font-size: 2.8rem;
        margin-bottom: 8px;
    }
    
    .stat-label {
        font-size: 0.9rem;
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .page-header {
        height: 40vh;
        padding: 0 15px;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    /* Services Overview - Extra reduce spacing */
    .services-overview {
        padding: 30px 0 15px 0;
    }
    
    /* Main Services Extra Small Mobile */
    .main-services {
        padding: 20px 0 40px 0;
    }
    
    .service-section {
        margin-bottom: 50px;
    }
    
    .service-content {
        gap: 25px;
        margin-left: 20px;
    }
    
    .service-badge {
        font-size: 1.1rem;
        padding: 10px 24px;
        margin-bottom: 18px;
        letter-spacing: 1.2px;
        border-radius: 25px;
    }
    
    .service-text h3 {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .service-text p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 25px;
    }
    
    /* PhishRod Extra Small Mobile */
    .phishrod-section {
        padding: 20px 0 40px 0;
    }
    
    .phishrod-header {
        margin-bottom: 25px;
    }
    
    .phishrod-title {
        font-size: 1.6rem;
        margin: 12px 0;
    }
    
    .phishrod-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* VAPT Header Small Mobile */
    .vapt-header {
        margin-bottom: 30px;
    }
    
    .vapt-title {
        font-size: 1.6rem;
        margin: 12px 0;
    }
    
    .vapt-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    /* Service Features Extra Small Mobile */
    .service-features {
        gap: 15px;
    }
    
    .feature {
        padding: 12px;
        gap: 12px;
        border-radius: 10px;
    }
    
    .feature i {
        font-size: 1.2rem;
    }
    
    .feature h4 {
        font-size: 1rem;
        margin-bottom: 4px;
    }
    
    .feature p {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    /* Tech Illustrations Extra Small Mobile */
    .tech-illustration {
        height: 200px;
        margin: 15px 0;
    }
    
    /* Inline Visual Extra Small Mobile */
    .service-visual-inline {
        margin: 15px 0;
    }
    
    .service-visual-inline .tech-illustration {
        height: 120px;
    }
    
    .service-visual-inline .protection-shield {
        width: 100px;
        height: 100px;
        transform: scale(0.8);
    }
    
    .service-visual-inline .cyber-grid {
        gap: 10px;
        transform: scale(0.6);
    }
    
    .service-visual-inline .human-network {
        width: 140px;
        height: 140px;
        transform: scale(0.6);
    }
    
    .cyber-grid {
        gap: 12px;
        transform: scale(0.8);
    }
    
    .grid-item {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
        border-radius: 10px;
    }
    
    .protection-shield {
        width: 120px;
        height: 120px;
        transform: scale(0.8);
    }
    
    .shield-core {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .ring-1 { width: 75px; height: 75px; }
    .ring-2 { width: 95px; height: 95px; }
    .ring-3 { width: 120px; height: 120px; }
    
    .human-network {
        width: 180px;
        height: 180px;
        transform: scale(0.8);
    }
    
    .network-node {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .central {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    /* HRM Framework Extra Small Mobile */
    .hrm-framework {
        gap: 12px;
    }
    
    .framework-step {
        padding: 15px;
        gap: 15px;
        border-radius: 12px;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .step-content h4 {
        font-size: 1rem;
        margin-bottom: 4px;
    }
    
    .step-content p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    /* Halcyon Detailed Extra Small Mobile */
    .halcyon-detailed {
        padding: 60px 0;
    }
    
    .halcyon-detailed .section-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .halcyon-detailed .section-subtitle {
        font-size: 1rem;
        margin-bottom: 50px;
    }
    
    /* Ransomware Gap Extra Small Mobile */
    .ransomware-gap {
        margin: 50px 0;
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .gap-diagram {
        gap: 25px;
    }
    
    .endpoint-icon,
    .recovery-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .halcyon-icon {
        width: 85px;
        height: 85px;
        font-size: 2.2rem;
        margin-bottom: 12px;
    }
    
    .endpoint-label,
    .recovery-label {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .halcyon-label {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .endpoint-tech,
    .recovery-tech {
        font-size: 0.75rem;
    }
    
    .gap-bridge {
        font-size: 0.65rem;
        padding: 6px 12px;
        margin: 15px 0;
        border-radius: 12px;
    }
    
    .protection-layer {
        padding: 12px 15px;
        margin-top: 25px;
        border-radius: 10px;
    }
    
    .layer-text {
        font-size: 0.8rem;
    }
    
    /* SecPod Section Extra Small Mobile */
    .secpod-section {
        padding: 60px 0;
    }
    
    .secpod-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .secpod-content {
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .feature-card {
        padding: 20px;
        gap: 15px;
    }
    
    .feature-card .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-card .feature-icon i {
        font-size: 1.2rem;
    }
    
    .feature-card .feature-content h3 {
        font-size: 1.1rem;
    }
    
    .feature-card .feature-content p {
        font-size: 0.9rem;
    }
    
    .circular-process {
        width: 250px;
        height: 250px;
    }
    
    .process-center {
        width: 100px;
        height: 100px;
    }
    
    .center-content i {
        font-size: 1.3rem;
    }
    
    .center-content span {
        font-size: 0.7rem;
    }
    
    .process-step {
        width: 80px;
        height: 60px;
        transform: translate(-50%, -50%) 
                   rotate(var(--angle)) 
                   translateY(-100px) 
                   rotate(calc(-1 * var(--angle)));
    }
    
    .step-label {
        font-size: 0.6rem;
    }
    
    .step-icon i {
        font-size: 1.3rem;
    }
    
    .step-icon span {
        font-size: 0.5rem;
    }
    
    .end-to-end-section {
        padding: 30px 20px;
        margin-top: 50px;
    }
    
    .end-to-end {
        font-size: 1.7rem;
    }
    
    .vulnerability {
        font-size: 1.7rem;
    }
    
    .for-enterprise {
        font-size: 1.3rem;
    }
    
    .management-feature {
        gap: 15px;
        padding: 15px;
    }
    
    .feature-icon-small {
        width: 40px;
        height: 40px;
    }
    
    .feature-icon-small i {
        font-size: 1.1rem;
    }
    
    .feature-text h4 {
        font-size: 0.9rem;
    }
    
    .dashboard-frame {
        width: 280px;
        height: 180px;
        padding: 18px;
    }
    
    .dashboard-header {
        font-size: 0.7rem;
        margin-bottom: 18px;
    }
    
    .stat-box {
        font-size: 0.7rem;
        gap: 10px;
        padding: 5px 8px;
    }
    
    .stat-number {
        font-size: 1rem;
    }
    
    .chart-circle {
        width: 70px;
        height: 70px;
        font-size: 1.4rem;
    }
    
    .benefit-item {
        padding: 18px;
        gap: 15px;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
    }
    
    .benefit-icon i {
        font-size: 1.3rem;
    }
    
    .benefit-text h4 {
        font-size: 1rem;
    }
    
    .features-title {
        font-size: 1.7rem;
        margin-bottom: 40px;
    }
    
    .features-grid {
        gap: 25px;
    }
    
    .feature-card {
        padding: 30px 25px;
        border-radius: 18px;
    }
    
    .feature-card .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .feature-card h4 {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }
    
    .feature-subtitle {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .feature-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Complete Approach Extra Small Mobile */
    .complete-approach {
        margin: 60px 0;
        padding: 40px 20px;
        border-radius: 20px;
    }
    
    .approach-title {
        font-size: 1.7rem;
        margin-bottom: 40px;
        line-height: 1.3;
    }
    
    .approach-diagram-new {
        width: 320px;
        height: 320px;
    }
    
    .center-shield {
        width: 80px;
        height: 80px;
    }
    
    .center-shield i {
        font-size: 1.8rem;
    }
    
    .center-label {
        font-size: 0.6rem;
    }
    
    .threat-circle {
        --distance: 130px;
    }
    
    .threat-icon-new {
        width: 40px;
        height: 40px;
    }
    
    .threat-icon-new i {
        font-size: 1rem;
    }
    
    .threat-text {
        font-size: 0.6rem;
        padding: 2px 5px;
    }
    
    .approach-center {
        width: 90px;
        height: 90px;
    }
    
    .center-logo i {
        font-size: 2.2rem;
    }
    
    .approach-layer.detect {
        width: 150px;
        height: 150px;
        top: -75px;
        left: -75px;
    }
    
    .approach-layer.contain {
        width: 220px;
        height: 220px;
        top: -110px;
        left: -110px;
    }
    
    .approach-layer.recover {
        width: 290px;
        height: 290px;
        top: -145px;
        left: -145px;
    }
    
    .layer-label {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
    
    .approach-layer.contain .layer-label {
        left: 35px;
    }
    
    .approach-layer.recover .layer-label {
        left: 70px;
    }
    
    .threat-point {
        transform: scale(0.75);
    }
    
    .threat-icon {
        width: 45px;
        height: 45px;
    }
    
    .threat-icon i {
        font-size: 1.1rem;
    }
    
    .threat-label {
        font-size: 0.65rem;
        padding: 4px 7px;
        max-width: 100px;
    }
    
    /* RDR Service Extra Small Mobile */
    .rdr-service {
        margin: 60px 0;
        padding: 40px 20px;
        border-radius: 20px;
    }
    
    .rdr-content {
        gap: 40px;
    }
    
    .rdr-circle {
        width: 220px;
        height: 220px;
    }
    
    /* Adjust connection lines for extra small mobile */
    .rdr-circle::before {
        width: 220px;
        height: 220px;
        background: 
            /* Top line */
            linear-gradient(0deg, transparent 49%, var(--gold) 49%, var(--gold) 51%, transparent 51%),
            /* Right line */
            linear-gradient(90deg, transparent 49%, var(--gold) 49%, var(--gold) 51%, transparent 51%),
            /* Bottom line */
            linear-gradient(180deg, transparent 49%, var(--gold) 49%, var(--gold) 51%, transparent 51%),
            /* Left line */
            linear-gradient(270deg, transparent 49%, var(--gold) 49%, var(--gold) 51%, transparent 51%);
    }
    
    .rdr-segment {
        width: 60px;
        height: 60px;
    }
    
    .rdr-segment.monitoring {
        top: -30px;
    }
    
    .rdr-segment.recovery {
        right: -30px;
    }
    
    .rdr-segment.investigation {
        bottom: -30px;
    }
    
    .rdr-segment.response {
        left: -30px;
    }
    
    .segment-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 6px;
    }
    
    .segment-icon i {
        font-size: 1.3rem;
    }
    
    .segment-label {
        font-size: 0.65rem;
        max-width: 60px;
        padding: 3px 6px;
        border-radius: 6px;
    }
    
    .rdr-center {
        width: 70px;
        height: 70px;
    }
    
    .rdr-center i {
        font-size: 1.8rem;
    }
    
    .rdr-info h3 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    
    .rdr-benefits li {
        font-size: 0.9rem;
        margin-bottom: 12px;
        line-height: 1.6;
    }
    
    .rdr-benefits li i {
        margin-right: 10px;
        font-size: 0.9rem;
    }
    
    .rdr-benefits li.sub-item {
        margin-left: 20px;
        margin-bottom: 8px;
        font-size: 0.85rem;
    }
    
    /* Other Sections Extra Small Mobile */
    .services-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 40px;
    }
    
    .stat-item {
        padding: 20px 12px;
        border-radius: 12px;
    }
    
    .stat-number {
        font-size: 2.2rem;
        margin-bottom: 6px;
    }
    
    .stat-label {
        font-size: 0.8rem;
        line-height: 1.1;
    }
    
    .services-grid {
        gap: 25px;
    }
    
    .service-card {
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .service-card .service-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 18px;
    }
    
    .service-card .service-icon i {
        font-size: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
        left: 25px;
        position: relative;
    }
    
    .service-card p {
        font-size: 0.9rem;
        margin-bottom: 18px;
        line-height: 1.4;
        margin-left: 20px;
    }
    
    .service-card ul li {
        font-size: 0.85rem;
        padding: 5px 0;
        padding-left: 18px;
        line-height: 1.3;
    }
    
    .service-card ul li:hover {
        padding-left: 22px;
    }
    
    .benefit-item {
        padding: 25px 15px;
        border-radius: 15px;
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .benefit-icon i {
        font-size: 1.8rem;
    }
    
    .benefit-item h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .benefit-item p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

/* PhishRod Mobile Responsive */
@media (max-width: 768px) {
    .phishrod-section {
        padding: 60px 0;
    }
    
    .phishrod-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .phishrod-subtitle {
        font-size: 1.1rem;
    }
    
    .phishrod-main {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .phishrod-stats {
        order: -1;
    }
    
    .stat-highlight {
        padding: 30px 25px;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-text {
        font-size: 1rem;
    }
    
    .phishrod-features {
        padding: 40px 25px;
        border-radius: 25px;
    }
    
    .features-header h3 {
        font-size: 1.3rem;
    }
    
    .platform-title h4 {
        font-size: 1.8rem;
    }
    
    .platform-modules {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .module-card {
        padding: 25px;
    }
    
    .module-header {
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .module-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .module-header h5 {
        font-size: 1.2rem;
    }
    
    .module-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .phishrod-section {
        padding: 40px 0;
    }
    
    .phishrod-title {
        font-size: 1.8rem;
    }
    
    .phishrod-subtitle {
        font-size: 1rem;
    }
    
    .phishrod-overview h3 {
        font-size: 1.5rem;
    }
    
    .model-support {
        flex-direction: column;
        gap: 10px;
    }
    
    .model-badge {
        text-align: center;
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .stat-highlight {
        padding: 25px 20px;
        max-width: 220px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-text {
        font-size: 0.9rem;
    }
    
    .phishrod-features {
        padding: 30px 20px;
    }
    
    .platform-title h4 {
        font-size: 1.5rem;
    }
    
    .module-card {
        padding: 20px;
    }
    
    .module-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .module-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin: 0 auto;
    }
    
    .module-header h5 {
        font-size: 1.1rem;
    }
    
    .module-content p {
        font-size: 0.9rem;
        text-align: center;
    }
}
/* Why Choose Mobile Responsive */
@media (max-width: 768px) {
    .why-choose {
        padding: 80px 0;
    }
    
    .why-choose .section-title {
        font-size: 2.2rem;
    }
    
    .why-choose .section-subtitle {
        font-size: 1.1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 500px;
    }
    
    .benefit-item {
        padding: 35px 25px;
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .benefit-item h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .benefit-item p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .why-choose {
        padding: 60px 0;
    }
    
    .why-choose .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .why-choose .section-subtitle {
        font-size: 1rem;
    }
    
    .benefit-item {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
        margin-bottom: 18px;
    }
    
    .benefit-item h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .benefit-item p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}


/* ===== SECPOD OVERVIEW SECTION ===== */
.secpod-overview-section {
    padding: 100px 0;
    background: var(--secondary-black);
}

.overview-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.overview-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.secpod-intro h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
    font-family: var(--font-tech);
}

.secpod-intro p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 25px;
}

.overview-stats {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Responsive for SecPod Overview */
@media (max-width: 1024px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .overview-stats {
        order: -1;
    }
}

@media (max-width: 768px) {
    .secpod-overview-section {
        padding: 80px 0;
    }
    
    .secpod-intro h3 {
        font-size: 1.5rem;
    }
    
    .stat-highlight {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .secpod-overview-section {
        padding: 60px 0;
    }
    
    .secpod-intro h3 {
        font-size: 1.3rem;
    }
    
    .secpod-intro p {
        font-size: 0.95rem;
    }
    
    .model-support {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .model-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}
