/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    width: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    line-height: 1.6;
    color: #ffffff !important;
    background-color: #0a0a23 !important;
    min-height: 100vh;
    padding-top: 70px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(10, 10, 35, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    position: relative;
    gap: 40px;
    box-sizing: border-box;
}

.nav-logo .logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
    flex-grow: 1;
    justify-content: center;
}

.nav-dropdown {
    position: relative;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-block;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: #ffffff;
}

.dropdown-content {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: rgba(10, 10, 35, 0.98);
    backdrop-filter: blur(10px);
    min-width: 280px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    pointer-events: auto;
}

.dropdown-group {
    margin-bottom: 15px;
}

.dropdown-group:last-child {
    margin-bottom: 0;
}

.dropdown-group-header {
    color: #ff6b35;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 20px 5px 20px;
    margin-bottom: 5px;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.dropdown-content a {
    display: block;
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none !important;
    padding: 10px 30px;
    transition: all 0.3s ease;
    font-size: 14px;
    position: relative;
}

.dropdown-content a:hover {
    background: rgba(255, 107, 53, 0.15);
    color: #ff6b35 !important;
}

.dropdown-group a {
    display: block;
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none !important;
    padding: 10px 30px;
    transition: all 0.3s ease;
    font-size: 14px;
    position: relative;
}

.dropdown-group a:hover {
    background: rgba(255, 107, 53, 0.15);
    color: #ff6b35 !important;
}

/* Desktop dropdown hover functionality - only on desktop */
@media (min-width: 769px) {
    .nav-dropdown:hover .dropdown-content {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Contact Methods Grid */
.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.contact-method-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-method-card:hover {
    transform: translateY(-8px);
    border: 2px solid rgba(255, 107, 53, 0.8);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 107, 53, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.contact-method-icon {
    color: #ff6b35;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-method-card:hover .contact-method-icon {
    color: #f7931e;
    transform: scale(1.1);
}

.contact-method-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.contact-method-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 25px;
}

.contact-method-btn {
    background: transparent;
    border: 2px solid #ff6b35;
    color: #ff6b35;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-method-btn:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

/* Contact Form Layout */
.contact-form-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-form-intro {
    position: sticky;
    top: 120px;
}

.contact-form-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.contact-benefit {
    display: flex;
    align-items: center;
    gap: 15px;
}

.benefit-icon {
    background: rgba(39, 174, 96, 0.2);
    color: #27ae60;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
}

.contact-benefit span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 500;
}

.certifications-section {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.certifications-inline {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.certifications-inline .cert-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
}

/* Modern Form Styling */
.contact-form-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.form-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.form-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.form-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.modern-form {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #0a0a23;
    color: #ffffff;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    margin-top: 10px;
}

.modern-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.modern-checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.modern-checkmark {
    position: relative;
    height: 20px;
    width: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.modern-checkbox-label:hover input ~ .modern-checkmark {
    border-color: #ff6b35;
    background-color: rgba(255, 107, 53, 0.1);
}

.modern-checkbox-label input:checked ~ .modern-checkmark {
    background-color: #ff6b35;
    border-color: #ff6b35;
}

.modern-checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.modern-checkbox-label input:checked ~ .modern-checkmark:after {
    display: block;
}

.modern-submit-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.modern-submit-btn:hover {
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255, 107, 53, 0.4);
}

.modern-submit-btn:active {
    transform: translateY(0);
}

.submit-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-privacy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-top: 15px;
    line-height: 1.4;
}

/* Professional Message Overlay */
.message-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

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

.message-modal {
    background: #ffffff;
    border-radius: 16px;
    max-width: 480px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    transform: translateY(30px) scale(0.95);
    transition: all 0.3s ease;
    position: relative;
}

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

.message-header {
    background: linear-gradient(135deg, #0a0a23, #1a1a3a);
    padding: 30px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.message-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.message-header .message-icon {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
    position: relative;
    z-index: 1;
}

.message-overlay.error .message-header .message-icon {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.message-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 1;
}

.message-body {
    padding: 30px;
    text-align: center;
}

.message-body p {
    color: #333333;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 15px 0;
    font-weight: 500;
}

.message-subtitle {
    color: #666666 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    margin: 15px 0 0 0 !important;
}

.message-footer {
    padding: 0 30px 30px;
    text-align: center;
}

.message-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.message-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.message-overlay.error .message-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.message-overlay.error .message-btn:hover {
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .message-modal {
        width: 95%;
        margin: 20px;
    }

    .message-header {
        padding: 25px 20px;
    }

    .message-body {
        padding: 25px 20px;
    }

    .message-footer {
        padding: 0 20px 25px;
    }

    .message-header .message-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin-bottom: 15px;
    }

    .message-header h3 {
        font-size: 20px;
    }
}

/* Mobile responsiveness for contact form */
@media (max-width: 1024px) {
    .contact-form-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-intro {
        position: static;
        text-align: center;
    }

    .contact-methods-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .modern-form {
        padding: 30px 25px;
    }

    .form-header {
        padding: 25px 25px;
    }

    .contact-method-card {
        padding: 30px 25px;
    }

    .contact-benefits {
        align-items: center;
    }

    .certifications-inline {
        justify-content: center;
    }
}

.contact-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    white-space: nowrap;
    flex-shrink: 0;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 3px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: -70px;
    padding-top: 70px;
    box-sizing: border-box;
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a3a 100%) !important;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.gradient-ribbon {
    position: absolute;
    top: 20%;
    left: -20%;
    width: 140%;
    height: 60%;
    background: linear-gradient(45deg, 
        rgba(255, 107, 53, 0.3) 0%, 
        rgba(247, 147, 30, 0.3) 25%, 
        rgba(155, 89, 182, 0.3) 50%, 
        rgba(52, 152, 219, 0.3) 75%, 
        rgba(255, 107, 53, 0.3) 100%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
    transform: rotate(-15deg);
    z-index: 0;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { 
        transform: rotate(-15deg) translateY(0px) scale(1); 
        opacity: 0.8;
    }
    50% { 
        transform: rotate(-15deg) translateY(-30px) scale(1.02); 
        opacity: 1;
    }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 400;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.2;
    letter-spacing: -0.005em;
    max-width: 750px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    font-weight: 300;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    max-width: 600px;
    text-align: center;
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.hero-btn {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: #ffffff;
    color: #0a0a23;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* Security Intro Section */
.security-intro-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    color: #333333;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.security-intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

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

.security-intro-text h2 {
    font-size: clamp(2.4rem, 4.5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 30px;
    color: #0a0a23;
    line-height: 1.1;
    position: relative;
    padding-bottom: 20px;
}

.security-intro-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.security-intro-text p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #555555;
    line-height: 1.7;
}

.security-intro-text p:first-of-type {
    font-size: 20px;
    font-weight: 500;
    color: #333333;
    margin-bottom: 20px;
}

.security-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 18px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.06), rgba(247, 147, 30, 0.04));
    padding: 20px 25px;
    border-radius: 16px;
    border-left: 4px solid #ff6b35;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.1);
}

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

.highlight-item:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.12), rgba(247, 147, 30, 0.08));
    transform: translateX(8px) translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
    border-left-color: #f7931e;
}

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

.highlight-icon {
    font-size: 24px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.highlight-item:hover .highlight-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.highlight-item span {
    color: #333333;
    font-weight: 600;
    font-size: 17px;
    letter-spacing: 0.3px;
}

.security-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.security-shield-container {
    position: relative;
    width: 320px;
    height: 320px;
    filter: drop-shadow(0 10px 30px rgba(255, 107, 53, 0.15));
}

.security-shield {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-layer {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    animation: shield-pulse 4s ease-in-out infinite;
}

.shield-outer {
    width: 100%;
    height: 100%;
    border-color: rgba(255, 107, 53, 0.2);
    animation-delay: 0s;
}

.shield-middle {
    width: 70%;
    height: 70%;
    border-color: rgba(255, 107, 53, 0.4);
    animation-delay: 1.3s;
}

.shield-inner {
    width: 40%;
    height: 40%;
    border-color: rgba(255, 107, 53, 0.6);
    animation-delay: 2.6s;
}

.shield-core {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
    animation: shield-glow 3s ease-in-out infinite alternate;
}

.shield-core svg {
    width: 45px;
    height: 45px;
}

@keyframes shield-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.3;
    }
}

@keyframes shield-glow {
    0% {
        box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    }
    100% {
        box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
    }
}

/* Think Before You Click Section (fallback for other pages) */
.think-section {
    background: #ffffff;
    color: #333333;
    padding: 60px 0;
}

.think-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.think-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 30px;
    color: #0a0a23;
}

.think-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555555;
    line-height: 1.7;
}

.read-more-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-top: 20px;
}

.read-more-btn:hover {
    transform: translateY(-2px);
}

.think-visual {
    position: relative;
    height: 300px;
}

.abstract-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #9b59b6, #3498db);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morphing 8s ease-in-out infinite;
}

@keyframes morphing {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
    50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
    75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
}

.microsoft-squares {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 240px;
    height: 240px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
}

.ms-square {
    width: 100%;
    height: 100%;
    border-radius: 6px;
    animation: squareFloat 4.5s ease-in-out infinite;
    position: relative;
    transition: all 0.3s ease;
}

.ms-square::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.square-1 {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    animation-delay: 0s;
}

.square-1::before {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    filter: blur(8px);
}

.square-2 {
    background: linear-gradient(135deg, #27ae60, #229954);
    animation-delay: 1.125s;
}

.square-2::before {
    background: linear-gradient(135deg, #27ae60, #229954);
    filter: blur(8px);
}

.square-3 {
    background: linear-gradient(135deg, #3498db, #2980b9);
    animation-delay: 2.25s;
}

.square-3::before {
    background: linear-gradient(135deg, #3498db, #2980b9);
    filter: blur(8px);
}

.square-4 {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    animation-delay: 3.375s;
}

.square-4::before {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    filter: blur(8px);
}

@keyframes squareFloat {
    0%, 100% {
        transform: translateY(0px) scale(1) rotate(0deg);
        opacity: 0.9;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    25% {
        transform: translateY(-8px) scale(1.02) rotate(1deg);
        opacity: 1;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    }
    50% {
        transform: translateY(-12px) scale(1.05) rotate(0deg);
        opacity: 0.95;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    }
    75% {
        transform: translateY(-8px) scale(1.02) rotate(-1deg);
        opacity: 1;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    }
}

/* How We're Different Section */
.how-different-section {
    background: linear-gradient(135deg, #1a1a40 0%, #2a2a50 50%, #1a1a40 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.how-different-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.15) 0%, rgba(52, 152, 219, 0.12) 50%, transparent 70%);
    transform: rotate(15deg);
    pointer-events: none;
}

.different-intro {
    font-size: clamp(1.2rem, 2.8vw, 1.5rem);
    text-align: center;
    margin-bottom: 60px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.different-main {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.approach-manifesto {
    position: sticky;
    top: 120px;
    padding-right: 20px;
}

.manifesto-number {
    font-size: clamp(5rem, 10vw, 8rem);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px rgba(155, 89, 182, 0.4);
    line-height: 0.7;
    margin-bottom: 25px;
    font-family: 'Inter', sans-serif;
}

.manifesto-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.manifesto-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 25px;
}

.manifesto-highlight {
    background: rgba(155, 89, 182, 0.12);
    border-left: 4px solid #9b59b6;
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

.manifesto-highlight p {
    color: #9b59b6;
    font-weight: 600;
    font-size: 16px;
    margin: 0;
}

.philosophy-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 10px;
}

.philosophy-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 25px;
    position: relative;
    transition: all 0.4s ease;
    transform-origin: left center;
}

.philosophy-item:hover {
    background: rgba(155, 89, 182, 0.08);
    border-color: rgba(155, 89, 182, 0.25);
    transform: translateX(15px);
}

.philosophy-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #9b59b6, #3498db);
    border-radius: 4px 0 0 4px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.philosophy-item:hover::before {
    opacity: 1;
}

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

.philosophy-icon {
    color: #9b59b6;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.philosophy-item:hover .philosophy-icon {
    color: #3498db;
    transform: scale(1.1);
}

.philosophy-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}

.philosophy-item p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
}

/* Enhanced Stats Section */
.cyber-stats-showcase {
    margin: 60px 0;
    padding: 50px 40px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.06), rgba(247, 147, 30, 0.03));
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.12);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.cyber-stats-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.stats-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.stat-card-large {
    background: white;
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.stat-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.05), transparent);
    transition: left 0.6s ease;
}

.stat-card-large:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #ff6b35;
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.15);
}

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

.stat-image-container {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.stat-image-large {
    width: 100%;
    max-width: 350px;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.1));
}

.stat-card-large:hover .stat-image-large {
    transform: scale(1.03);
    filter: drop-shadow(0 8px 25px rgba(255, 107, 53, 0.2));
}

.stat-insight {
    text-align: center;
    position: relative;
}

.stat-insight h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0a0a23;
    margin-bottom: 15px;
    line-height: 1.3;
    position: relative;
}

.stat-insight h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.stat-insight p {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* Legacy Stats Section (keeping for compatibility) */
.cyber-stats-section {
    margin: 50px 0;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(247, 147, 30, 0.05));
    border-radius: 16px;
    border: 1px solid rgba(255, 107, 53, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.stats-grid-cyber {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.stat-graphic {
    position: relative;
    text-align: center;
    background: white;
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stat-graphic:hover {
    transform: translateY(-8px);
    border-color: #ff6b35;
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.2);
}

.stat-image {
    width: 280px;
    height: 200px;
    object-fit: contain;
    border-radius: 12px;
    margin: 0 auto 20px auto;
    display: block;
    padding: 20px;
    transition: all 0.3s ease;
}

.stat-content {
    position: relative;
}

.stat-year {
    font-size: 42px;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 8px;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(255, 107, 53, 0.1);
}

.stat-description {
    font-size: 15px;
    color: #555555;
    line-height: 1.5;
    margin-bottom: 15px;
    font-weight: 500;
}

.stat-icon {
    font-size: 28px;
    margin-top: 12px;
    opacity: 0.8;
}

/* Responsive Design for Enhanced Stats */
@media (max-width: 1024px) {
    .stats-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stat-card-large {
        padding: 30px 25px;
    }

    .cyber-stats-showcase {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .stats-grid-enhanced {
        gap: 25px;
    }

    .stat-card-large {
        padding: 25px 20px;
    }

    .cyber-stats-showcase {
        padding: 30px 20px;
        margin: 40px 0;
    }

    .stat-image-large {
        max-width: 100%;
    }

    .stat-insight h3 {
        font-size: 20px;
    }

    .stat-insight p {
        font-size: 15px;
    }
}

/* Microsoft Section */
.microsoft-section {
    background: #0f0f2a;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.microsoft-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.gradient-ribbon-microsoft {
    position: absolute;
    top: 20%;
    left: -40%;
    width: 180%;
    height: 60%;
    background: linear-gradient(60deg, 
        rgba(231, 76, 60, 0.15) 0%, 
        rgba(39, 174, 96, 0.15) 25%, 
        rgba(52, 152, 219, 0.15) 50%, 
        rgba(243, 156, 18, 0.15) 75%);
    border-radius: 50%;
    animation: float-microsoft 22s ease-in-out infinite;
    transform: rotate(-25deg);
}

@keyframes float-microsoft {
    0%, 100% { transform: rotate(-25deg) translateY(0px) scale(1); }
    50% { transform: rotate(-25deg) translateY(-25px) scale(1.02); }
}

.microsoft-section .container {
    position: relative;
    z-index: 1;
}

.microsoft-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.microsoft-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.microsoft-text p {
    font-size: 16px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.microsoft-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 12px;
    margin: 25px 0;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    font-size: 14px;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
}

.feature-item::before {
    content: '✓';
    color: #27ae60;
    font-weight: bold;
    margin-right: 10px;
}

.microsoft-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    font-size: 15px;
}

.microsoft-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.microsoft-visual {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a3a 50%, #0a0a23 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-headline {
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    font-weight: 600;
    text-align: center;
    margin-bottom: 12px;
    color: #ff6b35;
    letter-spacing: -0.5px;
}

.services-intro {
    font-size: clamp(1rem, 2vw, 1.1rem);
    text-align: center;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    border: 2px solid rgba(255, 107, 53, 0.8);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 107, 53, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.service-card.featured {
    border: 2px solid #ff6b35;
    background: rgba(255, 107, 53, 0.05);
}

.service-icon {
    font-size: 40px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    color: #ff6b35;
    transition: all 0.3s ease;
}

.service-icon svg {
    width: 40px;
    height: 40px;
    color: inherit;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    color: #f7931e;
    transform: scale(1.08);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
    line-height: 1.3;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    position: relative;
    z-index: 1;
    line-height: 1.4;
}

/* Clients Section */
.clients-section {
    background: #ffffff;
    color: #333333;
    padding: 60px 0;
}

.clients-section .section-title {
    color: #0a0a23;
    background: linear-gradient(135deg, #0a0a23, #333333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.clients-description {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #666666;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.client-logo {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 15px 30px;
    text-align: center;
    font-weight: 600;
    color: #666666;
    transition: transform 0.3s ease;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo:hover {
    transform: scale(1.05);
}

.client-logo-image {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

/* News Section */
.news-section {
    background: #0a0a23;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.news-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.gradient-ribbon-news {
    position: absolute;
    top: 30%;
    right: -30%;
    width: 120%;
    height: 40%;
    background: linear-gradient(-45deg, 
        rgba(155, 89, 182, 0.2) 0%, 
        rgba(52, 152, 219, 0.2) 25%, 
        rgba(255, 107, 53, 0.2) 50%, 
        rgba(247, 147, 30, 0.2) 75%);
    border-radius: 50%;
    animation: float-reverse 25s ease-in-out infinite;
    transform: rotate(20deg);
}

@keyframes float-reverse {
    0%, 100% { transform: rotate(20deg) translateY(0px); }
    50% { transform: rotate(20deg) translateY(40px); }
}

.news-section .container {
    position: relative;
    z-index: 1;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    align-items: stretch;
}

.news-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 0;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    min-height: 400px;
}

.news-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.news-image img,
.news-image svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img,
.news-card:hover .news-image svg {
    transform: scale(1.05);
}

.news-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.news-categories {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.category {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
    line-height: 1.4;
    flex-grow: 0;
    min-height: 50px;
    display: flex;
    align-items: flex-start;
}

.news-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin-bottom: 15px;
    font-weight: 500;
    min-height: 18px;
    display: flex;
    align-items: center;
}

.news-excerpt {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
    flex-grow: 1;
    min-height: 84px;
    display: flex;
    align-items: flex-start;
}

.read-more-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: auto;
}

.read-more-link:hover {
    color: #f7931e;
    transform: translateX(3px);
}

.read-more-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.read-more-link:hover::after {
    transform: translateX(3px);
}

/* Connectivity Features */
.connectivity-features {
    margin-top: 60px;
    text-align: center;
}

.connectivity-features h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px 20px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 107, 53, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-3px);
}

.feature-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ff6b35;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.5;
}

/* Footer */
.footer {
    background: #0a0a23;
}

.footer-main {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo .logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
    display: block;
}

.footer-details p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 18px;
    line-height: 1.7;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.certifications {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.cert-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.footer-cta {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.gradient-swirl {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: linear-gradient(45deg, 
        rgba(255, 107, 53, 0.1), 
        rgba(247, 147, 30, 0.1), 
        rgba(155, 89, 182, 0.1));
    border-radius: 50%;
    animation: spin 30s linear infinite;
}

@keyframes spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

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

.cta-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.cta-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #ff6b35;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 15px;
    }

    .nav-link {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
    }

    /* Mobile navigation menu */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 35, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 30px 20px;
        transition: left 0.3s ease-in-out;
        gap: 20px;
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
        order: 3;
        margin-left: auto;
        z-index: 1001;
    }

    .contact-btn {
        order: 2;
        padding: 8px 16px;
        font-size: 13px;
        white-space: nowrap;
    }

    /* Mobile dropdown styling */
    .nav-dropdown {
        width: 100%;
        margin-bottom: 10px;
    }

    .nav-link {
        width: 100%;
        padding: 15px 0;
        font-size: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        cursor: pointer;
    }



    /* Mobile dropdown content - hidden by default */
    .dropdown-content {
        display: none !important;
        position: static;
        background: rgba(255, 255, 255, 0.05);
        margin-top: 10px;
        border: none;
        border-radius: 8px;
        padding: 15px;
        box-shadow: none;
        min-width: auto;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    /* Show dropdown when parent has open class or mobile-open class is added */
    .nav-dropdown.open .dropdown-content,
    .dropdown-content.mobile-open {
        display: block !important;
    }

    .dropdown-group {
        margin-bottom: 20px;
    }

    .dropdown-group-header {
        padding: 5px 0;
        margin-bottom: 8px;
        border-bottom: 1px solid rgba(255, 107, 53, 0.3);
    }

    .dropdown-group a {
        padding: 12px 0;
        margin-left: 0;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .dropdown-group a:last-child {
        border-bottom: none;
    }

    /* Mobile menu contact button */
    .nav-menu .contact-btn {
        margin-top: 20px;
        align-self: stretch;
        text-align: center;
    }

    .think-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .security-intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .security-visual {
        height: 280px;
    }

    .security-shield-container {
        width: 220px;
        height: 220px;
    }

    .shield-core {
        width: 60px;
        height: 60px;
    }

    .shield-core svg {
        width: 30px;
        height: 30px;
    }

    .security-highlights {
        gap: 12px;
    }

    .highlight-item {
        padding: 12px 16px;
    }

    .highlight-item span {
        font-size: 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .news-card {
        max-width: none;
    }

    .news-image {
        height: 180px;
    }

    .news-content {
        padding: 20px;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .microsoft-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .microsoft-features {
        grid-template-columns: 1fr;
    }

    .microsoft-visual {
        height: 300px;
    }

    .different-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .approach-manifesto {
        position: static;
        text-align: center;
    }

    .manifesto-number {
        font-size: 4rem;
    }

    .manifesto-title {
        font-size: 2rem;
    }

    .different-intro {
        max-width: 100%;
        margin-bottom: 40px;
        text-align: center;
    }

    .philosophy-stack {
        gap: 20px;
    }

    .philosophy-item:hover {
        transform: translateY(-5px);
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .stat-number {
        font-size: 40px;
    }



    /* Blog Article Mobile Styles */
    .blog-title {
        font-size: 32px;
    }

    .blog-hero {
        height: 50vh;
        min-height: 400px;
    }

    .blog-article {
        padding: 0 15px;
    }

    .blog-article h2 {
        font-size: 26px;
        margin: 35px 0 20px 0;
    }

    .blog-article p, .blog-intro {
        font-size: 16px;
    }

    .blog-highlight {
        padding: 20px;
        margin: 30px 0;
    }

    .blog-cta {
        padding: 30px 20px;
        margin: 40px 0 30px 0;
    }

    .blog-cta h3 {
        font-size: 24px;
    }

    .related-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 70px;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.4;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .hero-content {
        padding: 0 15px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .news-card {
        padding: 20px;
    }

    .footer-cta {
        padding: 30px 20px;
    }
}

@media (max-width: 1024px) {
    .security-intro-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .security-intro-text {
        padding-right: 0;
        max-width: 800px;
        margin: 0 auto;
    }

    .security-highlights {
        max-width: 600px;
        margin: 40px auto 0;
    }
}

@media (max-width: 768px) {
    .security-intro-section {
        padding: 80px 0;
    }

    .security-intro-content {
        gap: 50px;    }

    .security-intro-text h2 {
        font-size: clamp(2rem, 6vw, 2.8rem);
        margin-bottom: 25px;
    }

    .security-intro-text h2::after {
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
    }

    .security-intro-text p {
        font-size: 17px;
        margin-bottom: 20px;
    }

    .security-intro-text p:first-of-type {
        font-size: 18px;
    }

    .security-visual {
        height: 300px;
    }

    .security-shield-container {
        width: 260px;
        height: 260px;
    }

    .shield-core {
        width: 70px;
        height: 70px;
    }

    .shield-core svg {
        width: 35px;
        height: 35px;
    }

    .security-highlights {
        gap: 15px;
        margin-top: 35px;
    }

    .highlight-item {
        padding: 18px 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .highlight-item:hover {
        transform: translateY(-3px);
    }

    .highlight-icon {
        font-size: 22px;
        padding: 10px;
    }

    .highlight-item span {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .security-intro-section {
        padding: 60px 0;
    }

    .security-intro-content {
        gap:40px;
    }

    .security-visual {
        height: 240px;
    }

    .security-shield-container {
        width: 200px;
        height: 200px;
    }

    .shield-core {
        width: 60px;
        height: 60px;
    }

    .shield-core svg {
        width: 30px;
        height: 30px;
    }

    .highlight-item {
        padding: 16px 18px;
    }
}

/* Vendor Sections Styling */
.security-vendor-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.security-vendor-section:nth-child(odd) {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

/* Check Point Section Styling */
.checkpoint-section {
    background: linear-gradient(135deg, #faf5f5 0%, #f5eeee 50%, #fbf8f8 100%);
    border-left: 6px solid #d63031;
    position: relative;
}

.checkpoint-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top left, rgba(214, 48, 49, 0.08) 0%, rgba(229, 62, 62, 0.02) 70%, transparent 100%);
    pointer-events: none;
}

.checkpoint-section .vendor-title {
    color: #c53030;
    position: relative;
}

.checkpoint-section .vendor-title::after {
    background: linear-gradient(135deg, #e53e3e, #c53030);
}

.checkpoint-section .vendor-description {
    color: #744210;
}

.checkpoint-section .solution-card {
    border: 2px solid rgba(214, 48, 49, 0.2);
    background: linear-gradient(135deg, rgba(214, 48, 49, 0.06), #ffffff);
    position: relative;
    box-shadow: 0 2px 8px rgba(214, 48, 49, 0.08);
}

.checkpoint-section .solution-card::before {
    background: linear-gradient(90deg, transparent, rgba(214, 48, 49, 0.08), transparent);
}

.checkpoint-section .solution-card:hover {
    border-color: #d63031;
    box-shadow: 0 15px 40px rgba(214, 48, 49, 0.22);
    background: linear-gradient(135deg, rgba(214, 48, 49, 0.08), #ffffff);
}

.checkpoint-section .solution-icon {
    background: linear-gradient(135deg, rgba(229, 62, 62, 0.1), rgba(197, 48, 48, 0.06));
    color: #c53030;
}

.checkpoint-section .solution-card:hover .solution-icon {
    background: linear-gradient(135deg, #e53e3e, #c53030);
    color: white;
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.35);
}

.checkpoint-section .solution-card.solution-highlight {
    border-color: #e53e3e;
    background: linear-gradient(135deg, rgba(229, 62, 62, 0.06), #ffffff);
    box-shadow: 0 8px 30px rgba(229, 62, 62, 0.12);
}

/* Cisco Section Styling */
.cisco-section {
    background: linear-gradient(135deg, #f8fcff 0%, #ffffff 50%, #f0faff 100%);
    border-left: 6px solid #00bceb;
    position: relative;
}

.cisco-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at bottom right, rgba(0, 188, 235, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.cisco-section .vendor-title {
    color: #0078d4;
    position: relative;
}

.cisco-section .vendor-title::after {
    background: linear-gradient(135deg, #00bceb, #0078d4);
}

.cisco-section .vendor-description {
    color: #2c5aa0;
}

.cisco-section .solution-card {
    border: 2px solid rgba(0, 188, 235, 0.12);
    background: linear-gradient(135deg, rgba(0, 188, 235, 0.02), #ffffff);
    position: relative;
}

.cisco-section .solution-card::before {
    background: linear-gradient(90deg, transparent, rgba(0, 188, 235, 0.06), transparent);
}

.cisco-section .solution-card:hover {
    border-color: #00bceb;
    box-shadow: 0 15px 40px rgba(0, 188, 235, 0.18);
    background: linear-gradient(135deg, rgba(0, 188, 235, 0.04), #ffffff);
}

.cisco-section .solution-icon {
    background: linear-gradient(135deg, rgba(0, 188, 235, 0.08), rgba(0, 120, 212, 0.05));
    color: #0078d4;
}

.cisco-section .solution-card:hover .solution-icon {
    background: linear-gradient(135deg, #00bceb, #0078d4);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 188, 235, 0.35);
}

.cisco-section .solution-card.solution-highlight {
    border-color: #00bceb;
    background: linear-gradient(135deg, rgba(0, 188, 235, 0.05), #ffffff);
    box-shadow: 0 8px 30px rgba(0, 188, 235, 0.12);
}

.vendor-header {
    text-align: center;
    margin-bottom: 60px;
}

.vendor-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    color: #0a0a23;
    margin-bottom: 20px;
    position: relative;
}

.vendor-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.vendor-description {
    font-size: 18px;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.vendor-solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.solution-card {
    background: white;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.solution-card:hover {
    transform: translateY(-8px);
    border-color: #ff6b35;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
}

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

.solution-card.solution-highlight {
    border-color: #ff6b35;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03), white);
}

.solution-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.solution-card:hover .solution-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.solution-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0a0a23;
    margin-bottom: 15px;
    line-height: 1.3;
}

.solution-card p {
    color: #666666;
    font-size: 16px;
    line-height: 1.6;
}

/* Different Approach Section */
.different-approach-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a3a 100%);
    color: white;
}

.different-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.different-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.different-item:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

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

.different-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.different-item:hover .different-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.different-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.different-item p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.6;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .security-vendor-section {
        padding: 60px 0;
    }

    .vendor-solutions-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .solution-card {
        padding: 25px 20px;
    }

    .different-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .different-item {
        padding: 25px 20px;
    }
}

/* Security Services Grid - Three Column Layout */
.security-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.security-services-grid .service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.security-services-grid .service-card:hover {
    transform: translateY(-8px);
    border: 2px solid rgba(255, 107, 53, 0.8);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 107, 53, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.security-services-grid .service-card .service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #ff6b35;
    transition: all 0.3s ease;
}

.security-services-grid .service-card:hover .service-icon {
    color: #f7931e;
    transform: scale(1.1);
}

.security-services-grid .service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    line-height: 1.3;
}

.security-services-grid .service-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.6;
    flex-grow: 1;
}

/* Responsive Design for Security Services */
@media (max-width: 1024px) {
    .security-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .security-services-grid .service-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .security-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .security-services-grid .service-card:nth-child(3) {
        grid-column: auto;
        max-width: none;
    }

    .security-services-grid .service-card {
        min-height: 240px;
        padding: 25px 20px;
    }
}

/* Benefits Grid for Why Choose sections */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border: 2px solid rgba(255, 107, 53, 0.8);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 107, 53, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.benefit-check {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.benefit-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
    line-height: 1.3;
}

.benefit-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-card {
        padding: 25px 20px;
    }
}

/* Blog Article Styles */
.blog-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: -70px;
    padding-top: 70px;
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a3a 100%) !important;
}

.blog-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.blog-hero-background svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.animated-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(255, 107, 53, 0.15) 0%, 
        rgba(247, 147, 30, 0.12) 25%, 
        rgba(52, 152, 219, 0.08) 50%, 
        rgba(155, 89, 182, 0.1) 75%, 
        rgba(255, 107, 53, 0.15) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 50%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.particle-1 {
    width: 8px;
    height: 8px;
    top: 20%;
    left: 10%;
    animation: float1 20s ease-in-out infinite;
}

.particle-2 {
    width: 6px;
    height: 6px;
    top: 60%;
    left: 80%;
    animation: float2 25s ease-in-out infinite;
}

.particle-3 {
    width: 10px;
    height: 10px;
    top: 80%;
    left: 20%;
    animation: float3 18s ease-in-out infinite;
}

.particle-4 {
    width: 4px;
    height: 4px;
    top: 30%;
    left: 70%;
    animation: float4 22s ease-in-out infinite;
}

.particle-5 {
    width: 7px;
    height: 7px;
    top: 70%;
    left: 60%;
    animation: float5 16s ease-in-out infinite;
}

.particle-6 {
    width: 5px;
    height: 5px;
    top: 40%;
    left: 30%;
    animation: float6 24s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.3; }
    25% { transform: translateY(-30px) translateX(20px) scale(1.2); opacity: 0.6; }
    50% { transform: translateY(-60px) translateX(-10px) scale(0.8); opacity: 0.4; }
    75% { transform: translateY(-20px) translateX(30px) scale(1.1); opacity: 0.7; }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.4; }
    33% { transform: translateY(40px) translateX(-25px) scale(1.3); opacity: 0.2; }
    66% { transform: translateY(-25px) translateX(15px) scale(0.9); opacity: 0.5; }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.3; }
    50% { transform: translateY(-40px) translateX(-20px) scale(1.4); opacity: 0.6; }
}

@keyframes float4 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.5; }
    20% { transform: translateY(-15px) translateX(25px) scale(1.1); opacity: 0.3; }
    40% { transform: translateY(30px) translateX(-15px) scale(0.8); opacity: 0.7; }
    60% { transform: translateY(-25px) translateX(10px) scale(1.2); opacity: 0.4; }
    80% { transform: translateY(15px) translateX(-20px) scale(0.9); opacity: 0.6; }
}

@keyframes float5 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.4; }
    25% { transform: translateY(20px) translateX(-30px) scale(1.3); opacity: 0.2; }
    75% { transform: translateY(-35px) translateX(20px) scale(0.7); opacity: 0.6; }
}

@keyframes float6 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.3; }
    40% { transform: translateY(-50px) translateX(35px) scale(1.5); opacity: 0.5; }
    80% { transform: translateY(25px) translateX(-25px) scale(0.8); opacity: 0.4; }
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-categories {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.blog-categories .category {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5), 0 2px 4px rgba(0, 0, 0, 0.3);
}

.blog-date {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin: 0;
}

.blog-content {
    background: #ffffff;
    color: #333333;
    padding: 80px 0;
    position: relative;
}

.blog-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    line-height: 1.8;
}

.blog-intro {
    font-size: 20px;
    font-weight: 500;
    color: #444444;
    margin-bottom: 40px;
    line-height: 1.7;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(247, 147, 30, 0.05));
    border-left: 4px solid #ff6b35;
    border-radius: 0 8px 8px 0;
}

.blog-article h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0a0a23;
    margin: 45px 0 25px 0;
    line-height: 1.3;
    position: relative;
    padding-bottom: 15px;
}

.blog-article h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.blog-article p {
    font-size: 18px;
    margin-bottom: 28px;
    color: #444444;
    line-height: 1.7;
    font-weight: 400;
}

.blog-highlight {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(247, 147, 30, 0.05));
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-left: 5px solid #ff6b35;
    border-radius: 12px;
    padding: 28px 32px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.08);
}

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

.blog-highlight:hover::before {
    left: 100%;
}

.blog-highlight p {
    margin: 0;
    font-weight: 600;
    color: #333333;
    font-size: 16px;
    font-style: italic;
}

.blog-list {
    padding-left: 0;
    list-style: none;
    margin: 30px 0;
}

.blog-list li {
    position: relative;
    padding: 12px 0 12px 35px;
    margin-bottom: 12px;
    color: #444444;
    font-size: 17px;
    line-height: 1.6;
}

.blog-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    color: #27ae60;
    font-weight: bold;
    font-size: 18px;
    background: rgba(39, 174, 96, 0.1);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.blog-cta {
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a3a 100%);
    color: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    margin: 50px 0 40px 0;
    position: relative;
    overflow: hidden;
}

.blog-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.blog-cta h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.blog-cta p {
    font-size: 16px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.blog-cta .cta-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.blog-cta .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.blog-navigation {
    background: #f8f9fa;
    padding: 60px 0;
    border-top: 1px solid #e9ecef;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.back-to-blog:hover {
    color: #f7931e;
    transform: translateX(-3px);
}

.related-articles h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0a0a23;
    margin-bottom: 30px;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.related-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.related-card:hover {
    border-color: #ff6b35;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.related-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0a0a23;
    margin-bottom: 12px;
    line-height: 1.4;
}

.related-card p {
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive Styles for Blog */
@media (max-width: 768px) {
    .blog-hero {
</new_str>
</changes>
<replit_final_file>
/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    width: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    line-height: 1.6;
    color: #ffffff !important;
    background-color: #0a0a23 !important;
    min-height: 100vh;
    padding-top: 70px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(10, 10, 35, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    position: relative;
    gap: 40px;
    box-sizing: border-box;
}

.nav-logo .logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
    flex-grow: 1;
    justify-content: center;
}

.nav-dropdown {
    position: relative;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-block;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: #ffffff;
}

.dropdown-content {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: rgba(10, 10, 35, 0.98);
    backdrop-filter: blur(10px);
    min-width: 280px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    pointer-events: auto;
}

.dropdown-group {
    margin-bottom: 15px;
}

.dropdown-group:last-child {
    margin-bottom: 0;
}

.dropdown-group-header {
    color: #ff6b35;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 20px 5px 20px;
    margin-bottom: 5px;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.dropdown-content a {
    display: block;
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none !important;
    padding: 10px 30px;
    transition: all 0.3s ease;
    font-size: 14px;
    position: relative;
}

.dropdown-content a:hover {
    background: rgba(255, 107, 53, 0.15);
    color: #ff6b35 !important;
}

.dropdown-group a {
    display: block;
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none !important;
    padding: 10px 30px;
    transition: all 0.3s ease;
    font-size: 14px;
    position: relative;
}

.dropdown-group a:hover {
    background: rgba(255, 107, 53, 0.15);
    color: #ff6b35 !important;
}

/* Desktop dropdown hover functionality - only on desktop */
@media (min-width: 769px) {
    .nav-dropdown:hover .dropdown-content {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

/* Contact Methods Grid */
.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.contact-method-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-method-card:hover {
    transform: translateY(-8px);
    border: 2px solid rgba(255, 107, 53, 0.8);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 107, 53, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.contact-method-icon {
    color: #ff6b35;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-method-card:hover .contact-method-icon {
    color: #f7931e;
    transform: scale(1.1);
}

.contact-method-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.contact-method-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 25px;
}

.contact-method-btn {
    background: transparent;
    border: 2px solid #ff6b35;
    color: #ff6b35;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-method-btn:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

/* Contact Form Layout */
.contact-form-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-form-intro {
    position: sticky;
    top: 120px;
}

.contact-form-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.contact-benefit {
    display: flex;
    align-items: center;
    gap: 15px;
}

.benefit-icon {
    background: rgba(39, 174, 96, 0.2);
    color: #27ae60;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
}

.contact-benefit span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 500;
}

.certifications-section {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.certifications-inline {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.certifications-inline .cert-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
}

/* Modern Form Styling */
.contact-form-container {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.form-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.form-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.form-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.modern-form {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #0a0a23;
    color: #ffffff;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    margin-top: 10px;
}

.modern-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.modern-checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.modern-checkmark {
    position: relative;
    height: 20px;
    width: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.modern-checkbox-label:hover input ~ .modern-checkmark {
    border-color: #ff6b35;
    background-color: rgba(255, 107, 53, 0.1);
}

.modern-checkbox-label input:checked ~ .modern-checkmark {
    background-color: #ff6b35;
    border-color: #ff6b35;
}

.modern-checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.modern-checkbox-label input:checked ~ .modern-checkmark:after {
    display: block;
}

.modern-submit-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.modern-submit-btn:hover {
    background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255, 107, 53, 0.4);
}

.modern-submit-btn:active {
    transform: translateY(0);
}

.submit-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-privacy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-top: 15px;
    line-height: 1.4;
}

/* Professional Message Overlay */
.message-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

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

.message-modal {
    background: #ffffff;
    border-radius: 16px;
    max-width: 480px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    transform: translateY(30px) scale(0.95);
    transition: all 0.3s ease;
    position: relative;
}

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

.message-header {
    background: linear-gradient(135deg, #0a0a23, #1a1a3a);
    padding: 30px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.message-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.message-header .message-icon {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
    position: relative;
    z-index: 1;
}

.message-overlay.error .message-header .message-icon {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.message-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 1;
}

.message-body {
    padding: 30px;
    text-align: center;
}

.message-body p {
    color: #333333;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 15px 0;
    font-weight: 500;
}

.message-subtitle {
    color: #666666 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    margin: 15px 0 0 0 !important;
}

.message-footer {
    padding: 0 30px 30px;
    text-align: center;
}

.message-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.message-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.message-overlay.error .message-btn {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.message-overlay.error .message-btn:hover {
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .message-modal {
        width: 95%;
        margin: 20px;
    }

    .message-header {
        padding: 25px 20px;
    }

    .message-body {
        padding: 25px 20px;
    }

    .message-footer {
        padding: 0 20px 25px;
    }

    .message-header .message-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin-bottom: 15px;
    }

    .message-header h3 {
        font-size: 20px;
    }
}

/* Mobile responsiveness for contact form */
@media (max-width: 1024px) {
    .contact-form-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-intro {
        position: static;
        text-align: center;
    }

    .contact-methods-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .modern-form {
        padding: 30px 25px;
    }

    .form-header {
        padding: 25px 25px;
    }

    .contact-method-card {
        padding: 30px 25px;
    }

    .contact-benefits {
        align-items: center;
    }

    .certifications-inline {
        justify-content: center;
    }
}

.contact-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    white-space: nowrap;
    flex-shrink: 0;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 3px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: -70px;
    padding-top: 70px;
    box-sizing: border-box;
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a3a 100%) !important;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.gradient-ribbon {
    position: absolute;
    top: 20%;
    left: -20%;
    width: 140%;
    height: 60%;
    background: linear-gradient(45deg, 
        rgba(255, 107, 53, 0.3) 0%, 
        rgba(247, 147, 30, 0.3) 25%, 
        rgba(155, 89, 182, 0.3) 50%, 
        rgba(52, 152, 219, 0.3) 75%, 
        rgba(255, 107, 53, 0.3) 100%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
    transform: rotate(-15deg);
    z-index: 0;
    pointer-events: none;
}

@keyframes float {
    0%, 100% { 
        transform: rotate(-15deg) translateY(0px) scale(1); 
        opacity: 0.8;
    }
    50% { 
        transform: rotate(-15deg) translateY(-30px) scale(1.02); 
        opacity: 1;
    }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
    position: relative;
    z-index: 10;
}

.hero-title {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 400;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.2;
    letter-spacing: -0.005em;
    max-width: 750px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.2vw, 1.4rem);
    font-weight: 300;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    max-width: 600px;
    text-align: center;
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.hero-btn {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: #ffffff;
    color: #0a0a23;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* Security Intro Section */
.security-intro-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    color: #333333;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.security-intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

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

.security-intro-text h2 {
    font-size: clamp(2.4rem, 4.5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 30px;
    color: #0a0a23;
    line-height: 1.1;
    position: relative;
    padding-bottom: 20px;
}

.security-intro-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.security-intro-text p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #555555;
    line-height: 1.7;
}

.security-intro-text p:first-of-type {
    font-size: 20px;
    font-weight: 500;
    color: #333333;
    margin-bottom: 20px;
}

.security-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 18px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.06), rgba(247, 147, 30, 0.04));
    padding: 20px 25px;
    border-radius: 16px;
    border-left: 4px solid #ff6b35;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.1);
}

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

.highlight-item:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.12), rgba(247, 147, 30, 0.08));
    transform: translateX(8px) translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
    border-left-color: #f7931e;
}

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

.highlight-icon {
    font-size: 24px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.highlight-item:hover .highlight-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.highlight-item span {
    color: #333333;
    font-weight: 600;
    font-size: 17px;
    letter-spacing: 0.3px;
}

.security-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.security-shield-container {
    position: relative;
    width: 320px;
    height: 320px;
    filter: drop-shadow(0 10px 30px rgba(255, 107, 53, 0.15));
}

.security-shield {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-layer {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    animation: shield-pulse 4s ease-in-out infinite;
}

.shield-outer {
    width: 100%;
    height: 100%;
    border-color: rgba(255, 107, 53, 0.2);
    animation-delay: 0s;
}

.shield-middle {
    width: 70%;
    height: 70%;
    border-color: rgba(255, 107, 53, 0.4);
    animation-delay: 1.3s;
}

.shield-inner {
    width: 40%;
    height: 40%;
    border-color: rgba(255, 107, 53, 0.6);
    animation-delay: 2.6s;
}

.shield-core {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
    animation: shield-glow 3s ease-in-out infinite alternate;
}

.shield-core svg {
    width: 45px;
    height: 45px;
}

@keyframes shield-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.3;
    }
}

@keyframes shield-glow {
    0% {
        box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    }
    100% {
        box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
    }
}

/* Think Before You Click Section (fallback for other pages) */
.think-section {
    background: #ffffff;
    color: #333333;
    padding: 60px 0;
}

.think-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.think-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 30px;
    color: #0a0a23;
}

.think-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555555;
    line-height: 1.7;
}

.read-more-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-top: 20px;
}

.read-more-btn:hover {
    transform: translateY(-2px);
}

.think-visual {
    position: relative;
    height: 300px;
}

.abstract-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #9b59b6, #3498db);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morphing 8s ease-in-out infinite;
}

@keyframes morphing {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
    50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
    75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
}

.microsoft-squares {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 240px;
    height: 240px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
}

.ms-square {
    width: 100%;
    height: 100%;
    border-radius: 6px;
    animation: squareFloat 4.5s ease-in-out infinite;
    position: relative;
    transition: all 0.3s ease;
}

.ms-square::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.square-1 {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    animation-delay: 0s;
}

.square-1::before {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    filter: blur(8px);
}

.square-2 {
    background: linear-gradient(135deg, #27ae60, #229954);
    animation-delay: 1.125s;
}

.square-2::before {
    background: linear-gradient(135deg, #27ae60, #229954);
    filter: blur(8px);
}

.square-3 {
    background: linear-gradient(135deg, #3498db, #2980b9);
    animation-delay: 2.25s;
}

.square-3::before {
    background: linear-gradient(135deg, #3498db, #2980b9);
    filter: blur(8px);
}

.square-4 {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    animation-delay: 3.375s;
}

.square-4::before {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    filter: blur(8px);
}

@keyframes squareFloat {
    0%, 100% {
        transform: translateY(0px) scale(1) rotate(0deg);
        opacity: 0.9;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    25% {
        transform: translateY(-8px) scale(1.02) rotate(1deg);
        opacity: 1;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    }
    50% {
        transform: translateY(-12px) scale(1.05) rotate(0deg);
        opacity: 0.95;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    }
    75% {
        transform: translateY(-8px) scale(1.02) rotate(-1deg);
        opacity: 1;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    }
}

/* How We're Different Section */
.how-different-section {
    background: linear-gradient(135deg, #1a1a40 0%, #2a2a50 50%, #1a1a40 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.how-different-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.15) 0%, rgba(52, 152, 219, 0.12) 50%, transparent 70%);
    transform: rotate(15deg);
    pointer-events: none;
}

.different-intro {
    font-size: clamp(1.2rem, 2.8vw, 1.5rem);
    text-align: center;
    margin-bottom: 60px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.different-main {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.approach-manifesto {
    position: sticky;
    top: 120px;
    padding-right: 20px;
}

.manifesto-number {
    font-size: clamp(5rem, 10vw, 8rem);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px rgba(155, 89, 182, 0.4);
    line-height: 0.7;
    margin-bottom: 25px;
    font-family: 'Inter', sans-serif;
}

.manifesto-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.manifesto-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 25px;
}

.manifesto-highlight {
    background: rgba(155, 89, 182, 0.12);
    border-left: 4px solid #9b59b6;
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

.manifesto-highlight p {
    color: #9b59b6;
    font-weight: 600;
    font-size: 16px;
    margin: 0;
}

.philosophy-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 10px;
}

.philosophy-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 25px;
    position: relative;
    transition: all 0.4s ease;
    transform-origin: left center;
}

.philosophy-item:hover {
    background: rgba(155, 89, 182, 0.08);
    border-color: rgba(155, 89, 182, 0.25);
    transform: translateX(15px);
}

.philosophy-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #9b59b6, #3498db);
    border-radius: 4px 0 0 4px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.philosophy-item:hover::before {
    opacity: 1;
}

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

.philosophy-icon {
    color: #9b59b6;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.philosophy-item:hover .philosophy-icon {
    color: #3498db;
    transform: scale(1.1);
}

.philosophy-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}

.philosophy-item p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
}

/* Enhanced Stats Section */
.cyber-stats-showcase {
    margin: 60px 0;
    padding: 50px 40px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.06), rgba(247, 147, 30, 0.03));
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.12);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.cyber-stats-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.stats-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.stat-card-large {
    background: white;
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.stat-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.05), transparent);
    transition: left 0.6s ease;
}

.stat-card-large:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #ff6b35;
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.15);
}

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

.stat-image-container {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.stat-image-large {
    width: 100%;
    max-width: 350px;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.1));
}

.stat-card-large:hover .stat-image-large {
    transform: scale(1.03);
    filter: drop-shadow(0 8px 25px rgba(255, 107, 53, 0.2));
}

.stat-insight {
    text-align: center;
    position: relative;
}

.stat-insight h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0a0a23;
    margin-bottom: 15px;
    line-height: 1.3;
    position: relative;
}

.stat-insight h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.stat-insight p {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* Legacy Stats Section (keeping for compatibility) */
.cyber-stats-section {
    margin: 50px 0;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(247, 147, 30, 0.05));
    border-radius: 16px;
    border: 1px solid rgba(255, 107, 53, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.stats-grid-cyber {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.stat-graphic {
    position: relative;
    text-align: center;
    background: white;
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stat-graphic:hover {
    transform: translateY(-8px);
    border-color: #ff6b35;
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.2);
}

.stat-image {
    width: 280px;
    height: 200px;
    object-fit: contain;
    border-radius: 12px;
    margin: 0 auto 20px auto;
    display: block;
    padding: 20px;
    transition: all 0.3s ease;
}

.stat-content {
    position: relative;
}

.stat-year {
    font-size: 42px;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 8px;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(255, 107, 53, 0.1);
}

.stat-description {
    font-size: 15px;
    color: #555555;
    line-height: 1.5;
    margin-bottom: 15px;
    font-weight: 500;
}

.stat-icon {
    font-size: 28px;
    margin-top: 12px;
    opacity: 0.8;
}

/* Responsive Design for Enhanced Stats */
@media (max-width: 1024px) {
    .stats-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stat-card-large {
        padding: 30px 25px;
    }

    .cyber-stats-showcase {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .stats-grid-enhanced {
        gap: 25px;
    }

    .stat-card-large {
        padding: 25px 20px;
    }

    .cyber-stats-showcase {
        padding: 30px 20px;
        margin: 40px 0;
    }

    .stat-image-large {
        max-width: 100%;
    }

    .stat-insight h3 {
        font-size: 20px;
    }

    .stat-insight p {
        font-size: 15px;
    }
}

/* Microsoft Section */
.microsoft-section {
    background: #0f0f2a;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.microsoft-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.gradient-ribbon-microsoft {
    position: absolute;
    top: 20%;
    left: -40%;
    width: 180%;
    height: 60%;
    background: linear-gradient(60deg, 
        rgba(231, 76, 60, 0.15) 0%, 
        rgba(39, 174, 96, 0.15) 25%, 
        rgba(52, 152, 219, 0.15) 50%, 
        rgba(243, 156, 18, 0.15) 75%);
    border-radius: 50%;
    animation: float-microsoft 22s ease-in-out infinite;
    transform: rotate(-25deg);
}

@keyframes float-microsoft {
    0%, 100% { transform: rotate(-25deg) translateY(0px) scale(1); }
    50% { transform: rotate(-25deg) translateY(-25px) scale(1.02); }
}

.microsoft-section .container {
    position: relative;
    z-index: 1;
}

.microsoft-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.microsoft-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.microsoft-text p {
    font-size: 16px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.microsoft-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 12px;
    margin: 25px 0;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    font-size: 14px;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
}

.feature-item::before {
    content: '✓';
    color: #27ae60;
    font-weight: bold;
    margin-right: 10px;
}

.microsoft-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    font-size: 15px;
}

.microsoft-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.microsoft-visual {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a3a 50%, #0a0a23 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-headline {
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    font-weight: 600;
    text-align: center;
    margin-bottom: 12px;
    color: #ff6b35;
    letter-spacing: -0.5px;
}

.services-intro {
    font-size: clamp(1rem, 2vw, 1.1rem);
    text-align: center;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    border: 2px solid rgba(255, 107, 53, 0.8);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 107, 53, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.service-card.featured {
    border: 2px solid #ff6b35;
    background: rgba(255, 107, 53, 0.05);
}

.service-icon {
    font-size: 40px;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    color: #ff6b35;
    transition: all 0.3s ease;
}

.service-icon svg {
    width: 40px;
    height: 40px;
    color: inherit;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    color: #f7931e;
    transform: scale(1.08);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
    line-height: 1.3;
}

.service-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    position: relative;
    z-index: 1;
    line-height: 1.4;
}

/* Clients Section */
.clients-section {
    background: #ffffff;
    color: #333333;
    padding: 60px 0;
}

.clients-section .section-title {
    color: #0a0a23;
    background: linear-gradient(135deg, #0a0a23, #333333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.clients-description {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #666666;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.client-logo {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 15px 30px;
    text-align: center;
    font-weight: 600;
    color: #666666;
    transition: transform 0.3s ease;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo:hover {
    transform: scale(1.05);
}

.client-logo-image {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

/* News Section */
.news-section {
    background: #0a0a23;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.news-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.gradient-ribbon-news {
    position: absolute;
    top: 30%;
    right: -30%;
    width: 120%;
    height: 40%;
    background: linear-gradient(-45deg, 
        rgba(155, 89, 182, 0.2) 0%, 
        rgba(52, 152, 219, 0.2) 25%, 
        rgba(255, 107, 53, 0.2) 50%, 
        rgba(247, 147, 30, 0.2) 75%);
    border-radius: 50%;
    animation: float-reverse 25s ease-in-out infinite;
    transform: rotate(20deg);
}

@keyframes float-reverse {
    0%, 100% { transform: rotate(20deg) translateY(0px); }
    50% { transform: rotate(20deg) translateY(40px); }
}

.news-section .container {
    position: relative;
    z-index: 1;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    align-items: stretch;
}

.news-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 0;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    min-height: 400px;
}

.news-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.news-image img,
.news-image svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img,
.news-card:hover .news-image svg {
    transform: scale(1.05);
}

.news-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.news-categories {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.category {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
    line-height: 1.4;
    flex-grow: 0;
    min-height: 50px;
    display: flex;
    align-items: flex-start;
}

.news-date {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin-bottom: 15px;
    font-weight: 500;
    min-height: 18px;
    display: flex;
    align-items: center;
}

.news-excerpt {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
    flex-grow: 1;
    min-height: 84px;
    display: flex;
    align-items: flex-start;
}

.read-more-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: auto;
}

.read-more-link:hover {
    color: #f7931e;
    transform: translateX(3px);
}

.read-more-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.read-more-link:hover::after {
    transform: translateX(3px);
}

/* Connectivity Features */
.connectivity-features {
    margin-top: 60px;
    text-align: center;
}

.connectivity-features h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px 20px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 107, 53, 0.08);
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-3px);
}

.feature-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ff6b35;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.5;
}

/* Footer */
.footer {
    background: #0a0a23;
}

.footer-main {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-logo .logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
    display: block;
}

.footer-details p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 18px;
    line-height: 1.7;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.certifications {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.cert-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.footer-cta {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.gradient-swirl {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: linear-gradient(45deg, 
        rgba(255, 107, 53, 0.1), 
        rgba(247, 147, 30, 0.1), 
        rgba(155, 89, 182, 0.1));
    border-radius: 50%;
    animation: spin 30s linear infinite;
}

@keyframes spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

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

.cta-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.cta-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #ff6b35;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 15px;
    }

    .nav-link {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
    }

    /* Mobile navigation menu */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 35, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 30px 20px;
        transition: left 0.3s ease-in-out;
        gap: 20px;
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
        order: 3;
        margin-left: auto;
        z-index: 1001;
    }

    .contact-btn {
        order: 2;
        padding: 8px 16px;
        font-size: 13px;
        white-space: nowrap;
    }

    /* Mobile dropdown styling */
    .nav-dropdown {
        width: 100%;
        margin-bottom: 10px;
    }

    .nav-link {
        width: 100%;
        padding: 15px 0;
        font-size: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        cursor: pointer;
    }



    /* Mobile dropdown content - hidden by default */
    .dropdown-content {
        display: none !important;
        position: static;
        background: rgba(255, 255, 255, 0.05);
        margin-top: 10px;
        border: none;
        border-radius: 8px;
        padding: 15px;
        box-shadow: none;
        min-width: auto;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    /* Show dropdown when parent has open class or mobile-open class is added */
    .nav-dropdown.open .dropdown-content,
    .dropdown-content.mobile-open {
        display: block !important;
    }

    .dropdown-group {
        margin-bottom: 20px;
    }

    .dropdown-group-header {
        padding: 5px 0;
        margin-bottom: 8px;
        border-bottom: 1px solid rgba(255, 107, 53, 0.3);
    }

    .dropdown-group a {
        padding: 12px 0;
        margin-left: 0;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .dropdown-group a:last-child {
        border-bottom: none;
    }

    /* Mobile menu contact button */
    .nav-menu .contact-btn {
        margin-top: 20px;
        align-self: stretch;
        text-align: center;
    }

    .think-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .security-intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .security-visual {
        height: 280px;
    }

    .security-shield-container {
        width: 220px;
        height: 220px;
    }

    .shield-core {
        width: 60px;
        height: 60px;
    }

    .shield-core svg {
        width: 30px;
        height: 30px;
    }

    .security-highlights {
        gap: 12px;
    }

    .highlight-item {
        padding: 12px 16px;
    }

    .highlight-item span {
        font-size: 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .news-card {
        max-width: none;
    }

    .news-image {
        height: 180px;
    }

    .news-content {
        padding: 20px;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .microsoft-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .microsoft-features {
        grid-template-columns: 1fr;
    }

    .microsoft-visual {
        height: 300px;
    }

    .different-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .approach-manifesto {
        position: static;
        text-align: center;
    }

    .manifesto-number {
        font-size: 4rem;
    }

    .manifesto-title {
        font-size: 2rem;
    }

    .different-intro {
        max-width: 100%;
        margin-bottom: 40px;
        text-align: center;
    }

    .philosophy-stack {
        gap: 20px;
    }

    .philosophy-item:hover {
        transform: translateY(-5px);
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .stat-number {
        font-size: 40px;
    }



    /* Blog Article Mobile Styles */
    .blog-title {
        font-size: 32px;
    }

    .blog-hero {
        height: 50vh;
        min-height: 400px;
    }

    .blog-article {
        padding: 0 15px;
    }

    .blog-article h2 {
        font-size: 26px;
        margin: 35px 0 20px 0;
    }

    .blog-article p, .blog-intro {
        font-size: 16px;
    }

    .blog-highlight {
        padding: 20px;
        margin: 30px 0;
    }

    .blog-cta {
        padding: 30px 20px;
        margin: 40px 0 30px 0;
    }

    .blog-cta h3 {
        font-size: 24px;
    }

    .related-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 70px;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.4;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .hero-content {
        padding: 0 15px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .news-card {
        padding: 20px;
    }

    .footer-cta {
        padding: 30px 20px;
    }
}

@media (max-width: 1024px) {
    .security-intro-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .security-intro-text {
        padding-right: 0;
        max-width: 800px;
        margin: 0 auto;
    }

    .security-highlights {
        max-width: 600px;
        margin: 40px auto 0;
    }
}

@media (max-width: 768px) {
    .security-intro-section {
        padding: 80px 0;
    }

    .security-intro-content {
        gap: 50px;    }

    .security-intro-text h2 {
        font-size: clamp(2rem, 6vw, 2.8rem);
        margin-bottom: 25px;
    }

    .security-intro-text h2::after {
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
    }

    .security-intro-text p {
        font-size: 17px;
        margin-bottom: 20px;
    }

    .security-intro-text p:first-of-type {
        font-size: 18px;
    }

    .security-visual {
        height: 300px;
    }

    .security-shield-container {
        width: 260px;
        height: 260px;
    }

    .shield-core {
        width: 70px;
        height: 70px;
    }

    .shield-core svg {
        width: 35px;
        height: 35px;
    }

    .security-highlights {
        gap: 15px;
        margin-top: 35px;
    }

    .highlight-item {
        padding: 18px 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .highlight-item:hover {
        transform: translateY(-3px);
    }

    .highlight-icon {
        font-size: 22px;
        padding: 10px;
    }

    .highlight-item span {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .security-intro-section {
        padding: 60px 0;
    }

    .security-intro-content {
        gap:40px;
    }

    .security-visual {
        height: 240px;
    }

    .security-shield-container {
        width: 200px;
        height: 200px;
    }

    .shield-core {
        width: 60px;
        height: 60px;
    }

    .shield-core svg {
        width: 30px;
        height: 30px;
    }

    .highlight-item {
        padding: 16px 18px;
    }
}

/* Vendor Sections Styling */
.security-vendor-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.security-vendor-section:nth-child(odd) {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

/* Check Point Section Styling */
.checkpoint-section {
    background: linear-gradient(135deg, #faf5f5 0%, #f5eeee 50%, #fbf8f8 100%);
    border-left: 6px solid #d63031;
    position: relative;
}

.checkpoint-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top left, rgba(214, 48, 49, 0.08) 0%, rgba(229, 62, 62, 0.02) 70%, transparent 100%);
    pointer-events: none;
}

.checkpoint-section .vendor-title {
    color: #c53030;
    position: relative;
}

.checkpoint-section .vendor-title::after {
    background: linear-gradient(135deg, #e53e3e, #c53030);
}

.checkpoint-section .vendor-description {
    color: #744210;
}

.checkpoint-section .solution-card {
    border: 2px solid rgba(214, 48, 49, 0.2);
    background: linear-gradient(135deg, rgba(214, 48, 49, 0.06), #ffffff);
    position: relative;
    box-shadow: 0 2px 8px rgba(214, 48, 49, 0.08);
}

.checkpoint-section .solution-card::before {
    background: linear-gradient(90deg, transparent, rgba(214, 48, 49, 0.08), transparent);
}

.checkpoint-section .solution-card:hover {
    border-color: #d63031;
    box-shadow: 0 15px 40px rgba(214, 48, 49, 0.22);
    background: linear-gradient(135deg, rgba(214, 48, 49, 0.08), #ffffff);
}

.checkpoint-section .solution-icon {
    background: linear-gradient(135deg, rgba(229, 62, 62, 0.1), rgba(197, 48, 48, 0.06));
    color: #c53030;
}

.checkpoint-section .solution-card:hover .solution-icon {
    background: linear-gradient(135deg, #e53e3e, #c53030);
    color: white;
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.35);
}

.checkpoint-section .solution-card.solution-highlight {
    border-color: #e53e3e;
    background: linear-gradient(135deg, rgba(229, 62, 62, 0.06), #ffffff);
    box-shadow: 0 8px 30px rgba(229, 62, 62, 0.12);
}

/* Cisco Section Styling */
.cisco-section {
    background: linear-gradient(135deg, #f8fcff 0%, #ffffff 50%, #f0faff 100%);
    border-left: 6px solid #00bceb;
    position: relative;
}

.cisco-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at bottom right, rgba(0, 188, 235, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.cisco-section .vendor-title {
    color: #0078d4;
    position: relative;
}

.cisco-section .vendor-title::after {
    background: linear-gradient(135deg, #00bceb, #0078d4);
}

.cisco-section .vendor-description {
    color: #2c5aa0;
}

.cisco-section .solution-card {
    border: 2px solid rgba(0, 188, 235, 0.12);
    background: linear-gradient(135deg, rgba(0, 188, 235, 0.02), #ffffff);
    position: relative;
}

.cisco-section .solution-card::before {
    background: linear-gradient(90deg, transparent, rgba(0, 188, 235, 0.06), transparent);
}

.cisco-section .solution-card:hover {
    border-color: #00bceb;
    box-shadow: 0 15px 40px rgba(0, 188, 235, 0.18);
    background: linear-gradient(135deg, rgba(0, 188, 235, 0.04), #ffffff);
}

.cisco-section .solution-icon {
    background: linear-gradient(135deg, rgba(0, 188, 235, 0.08), rgba(0, 120, 212, 0.05));
    color: #0078d4;
}

.cisco-section .solution-card:hover .solution-icon {
    background: linear-gradient(135deg, #00bceb, #0078d4);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 188, 235, 0.35);
}

.cisco-section .solution-card.solution-highlight {
    border-color: #00bceb;
    background: linear-gradient(135deg, rgba(0, 188, 235, 0.05), #ffffff);
    box-shadow: 0 8px 30px rgba(0, 188, 235, 0.12);
}

.vendor-header {
    text-align: center;
    margin-bottom: 60px;
}

.vendor-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    color: #0a0a23;
    margin-bottom: 20px;
    position: relative;
}

.vendor-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.vendor-description {
    font-size: 18px;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.vendor-solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.solution-card {
    background: white;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.solution-card:hover {
    transform: translateY(-8px);
    border-color: #ff6b35;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
}

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

.solution-card.solution-highlight {
    border-color: #ff6b35;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03), white);
}

.solution-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.solution-card:hover .solution-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.solution-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0a0a23;
    margin-bottom: 15px;
    line-height: 1.3;
}

.solution-card p {
    color: #666666;
    font-size: 16px;
    line-height: 1.6;
}

/* Different Approach Section */
.different-approach-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a3a 100%);
    color: white;
}

.different-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.different-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.different-item:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

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

.different-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.different-item:hover .different-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.different-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.different-item p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.6;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .security-vendor-section {
        padding: 60px 0;
    }

    .vendor-solutions-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .solution-card {
        padding: 25px 20px;
    }

    .different-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .different-item {
        padding: 25px 20px;
    }
}

/* Security Services Grid - Three Column Layout */
.security-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.security-services-grid .service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.security-services-grid .service-card:hover {
    transform: translateY(-8px);
    border: 2px solid rgba(255, 107, 53, 0.8);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 107, 53, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.security-services-grid .service-card .service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #ff6b35;
    transition: all 0.3s ease;
}

.security-services-grid .service-card:hover .service-icon {
    color: #f7931e;
    transform: scale(1.1);
}

.security-services-grid .service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    line-height: 1.3;
}

.security-services-grid .service-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.6;
    flex-grow: 1;
}

/* Responsive Design for Security Services */
@media (max-width: 1024px) {
    .security-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .security-services-grid .service-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .security-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .security-services-grid .service-card:nth-child(3) {
        grid-column: auto;
        max-width: none;
    }

    .security-services-grid .service-card {
        min-height: 240px;
        padding: 25px 20px;
    }
}

/* Benefits Grid for Why Choose sections */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border: 2px solid rgba(255, 107, 53, 0.8);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 107, 53, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.benefit-check {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.benefit-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
    line-height: 1.3;
}

.benefit-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-card {
        padding: 25px 20px;
    }
}

/* Blog Article Styles */
.blog-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: -70px;
    padding-top: 70px;
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a3a 100%) !important;
}

.blog-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.blog-hero-background svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.animated-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(255, 107, 53, 0.15) 0%, 
        rgba(247, 147, 30, 0.12) 25%, 
        rgba(52, 152, 219, 0.08) 50%, 
        rgba(155, 89, 182, 0.1) 75%, 
        rgba(255, 107, 53, 0.15) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 50%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.particle-1 {
    width: 8px;
    height: 8px;
    top: 20%;
    left: 10%;
    animation: float1 20s ease-in-out infinite;
}

.particle-2 {
    width: 6px;
    height: 6px;
    top: 60%;
    left: 80%;
    animation: float2 25s ease-in-out infinite;
}

.particle-3 {
    width: 10px;
    height: 10px;
    top: 80%;
    left: 20%;
    animation: float3 18s ease-in-out infinite;
}

.particle-4 {
    width: 4px;
    height: 4px;
    top: 30%;
    left: 70%;
    animation: float4 22s ease-in-out infinite;
}

.particle-5 {
    width: 7px;
    height: 7px;
    top: 70%;
    left: 60%;
    animation: float5 16s ease-in-out infinite;
}

.particle-6 {
    width: 5px;
    height: 5px;
    top: 40%;
    left: 30%;
    animation: float6 24s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.3; }
    25% { transform: translateY(-30px) translateX(20px) scale(1.2); opacity: 0.6; }
    50% { transform: translateY(-60px) translateX(-10px) scale(0.8); opacity: 0.4; }
    75% { transform: translateY(-20px) translateX(30px) scale(1.1); opacity: 0.7; }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.4; }
    33% { transform: translateY(40px) translateX(-25px) scale(1.3); opacity: 0.2; }
    66% { transform: translateY(-25px) translateX(15px) scale(0.9); opacity: 0.5; }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.3; }
    50% { transform: translateY(-40px) translateX(-20px) scale(1.4); opacity: 0.6; }
}

@keyframes float4 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.5; }
    20% { transform: translateY(-15px) translateX(25px) scale(1.1); opacity: 0.3; }
    40% { transform: translateY(30px) translateX(-15px) scale(0.8); opacity: 0.7; }
    60% { transform: translateY(-25px) translateX(10px) scale(1.2); opacity: 0.4; }
    80% { transform: translateY(15px) translateX(-20px) scale(0.9); opacity: 0.6; }
}

@keyframes float5 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.4; }
    25% { transform: translateY(20px) translateX(-30px) scale(1.3); opacity: 0.2; }
    75% { transform: translateY(-35px) translateX(20px) scale(0.7); opacity: 0.6; }
}

@keyframes float6 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.3; }
    40% { transform: translateY(-50px) translateX(35px) scale(1.5); opacity: 0.5; }
    80% { transform: translateY(25px) translateX(-25px) scale(0.8); opacity: 0.4; }
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-categories {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.blog-categories .category {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5), 0 2px 4px rgba(0, 0, 0, 0.3);
}

.blog-date {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin: 0;
}

.blog-content {
    background: #ffffff;
    color: #333333;
    padding: 80px 0;
    position: relative;
}

.blog-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    line-height: 1.8;
}

.blog-intro {
    font-size: 20px;
    font-weight: 500;
    color: #444444;
    margin-bottom: 40px;
    line-height: 1.7;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(247, 147, 30, 0.05));
    border-left: 4px solid #ff6b35;
    border-radius: 0 8px 8px 0;
}

.blog-article h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0a0a23;
    margin: 45px 0 25px 0;
    line-height: 1.3;
    position: relative;
    padding-bottom: 15px;
}

.blog-article h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.blog-article p {
    font-size: 18px;
    margin-bottom: 28px;
    color: #444444;
    line-height: 1.7;
    font-weight: 400;
}

.blog-highlight {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(247, 147, 30, 0.05));
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-left: 5px solid #ff6b35;
    border-radius: 12px;
    padding: 28px 32px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.08);
}

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

.blog-highlight:hover::before {
    left: 100%;
}

.blog-highlight p {
    margin: 0;
    font-weight: 600;
    color: #333333;
    font-size: 16px;
    font-style: italic;
}

.blog-list {
    padding-left: 0;
    list-style: none;
    margin: 30px 0;
}

.blog-list li {
    position: relative;
    padding: 12px 0 12px 35px;
    margin-bottom: 12px;
    color: #444444;
    font-size: 17px;
    line-height: 1.6;
}

.blog-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    color: #27ae60;
    font-weight: bold;
    font-size: 18px;
    background: rgba(39, 174, 96, 0.1);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.blog-cta {
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a3a 100%);
    color: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    margin: 50px 0 40px 0;
    position: relative;
    overflow: hidden;
}

.blog-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.blog-cta h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.blog-cta p {
    font-size: 16px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.blog-cta .cta-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.blog-cta .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.blog-navigation {
    background: #f8f9fa;
    padding: 60px 0;
    border-top: 1px solid #e9ecef;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.back-to-blog:hover {
    color: #f7931e;
    transform: translateX(-3px);
}

.related-articles h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0a0a23;
    margin-bottom: 30px;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.related-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.related-card:hover {
    border-color: #ff6b35;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.related-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0a0a23;
    margin-bottom: 12px;
    line-height: 1.4;
}

.related-card p {
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive Styles for Blog */
@media (max-width: 768px) {
    .blog-hero {
        height: 50vh;
        min-height: 400px;
    }

    .blog-title {
        font-size: 32px;
    }

    .blog-content {
        padding: 60px 0;
    }

    .blog-article {
        padding: 0 15px;
    }

    .blog-article h2 {
        font-size: 26px;
        margin: 35px 0 20px 0;
    }

    .blog-article p, .blog-intro {
        font-size: 16px;
    }

    .blog-highlight {
        padding: 20px;
        margin: 30px 0;
    }

    .blog-cta {
        padding: 30px 20px;
        margin: 40px 0 30px 0;
    }

    .blog-cta h3 {
        font-size: 24px;
    }

    .related-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Service card interactions with keyboard support */
document.addEventListener('DOMContentLoaded', function() {
    const serviceCards = document.querySelectorAll('.service-card');

    serviceCards.forEach(card => {
        // Make cards focusable
        card.setAttribute('tabindex', '0');
        card.setAttribute('role', 'button');

        // Add keyboard support
        card.addEventListener('keydown', function(e) {
            if (e.key === 'Enter' || e.key === ' ') {
                e.preventDefault();
                this.click();
            }
        });

        // Add aria labels for screen readers
        const serviceName = card.querySelector('h3').textContent;
        card.setAttribute('aria-label', `Learn more about ${serviceName}`);
    });
});

@media (max-width: 1024px) {
    .security-intro-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .security-intro-text {
        padding-right: 0;
        max-width: 800px;
        margin: 0 auto;
    }

    .security-highlights {
        max-width: 600px;
        margin: 40px auto 0;
    }
}

@media (max-width: 768px) {
    .security-intro-section {
        padding: 80px 0;
    }

    .security-intro-content {
        gap: 50px;    }

    .security-intro-text h2 {
        font-size: clamp(2rem, 6vw, 2.8rem);
        margin-bottom: 25px;
    }

    .security-intro-text h2::after {
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
    }

    .security-intro-text p {
        font-size: 17px;
        margin-bottom: 20px;
    }

    .security-intro-text p:first-of-type {
        font-size: 18px;
    }

    .security-visual {
        height: 300px;
    }

    .security-shield-container {
        width: 260px;
        height: 260px;
    }

    .shield-core {
        width: 70px;
        height: 70px;
    }

    .shield-core svg {
        width: 35px;
        height: 35px;
    }

    .security-highlights {
        gap: 15px;
        margin-top: 35px;
    }

    .highlight-item {
        padding: 18px 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .highlight-item:hover {
        transform: translateY(-3px);
    }

    .highlight-icon {
        font-size: 22px;
        padding: 10px;
    }

    .highlight-item span {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .security-intro-section {
        padding: 60px 0;
    }

    .security-intro-content {
        gap:40px;
    }

    .security-visual {
        height: 240px;
    }

    .security-shield-container {
        width: 200px;
        height: 200px;
    }

    .shield-core {
        width: 60px;
        height: 60px;
    }

    .shield-core svg {
        width: 30px;
        height: 30px;
    }

    .highlight-item {
        padding: 16px 18px;
    }
}

/* Vendor Sections Styling */
.security-vendor-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.security-vendor-section:nth-child(odd) {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

/* Check Point Section Styling */
.checkpoint-section {
    background: linear-gradient(135deg, #faf5f5 0%, #f5eeee 50%, #fbf8f8 100%);
    border-left: 6px solid #d63031;
    position: relative;
}

.checkpoint-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top left, rgba(214, 48, 49, 0.08) 0%, rgba(229, 62, 62, 0.02) 70%, transparent 100%);
    pointer-events: none;
}

.checkpoint-section .vendor-title {
    color: #c53030;
    position: relative;
}

.checkpoint-section .vendor-title::after {
    background: linear-gradient(135deg, #e53e3e, #c53030);
}

.checkpoint-section .vendor-description {
    color: #744210;
}

.checkpoint-section .solution-card {
    border: 2px solid rgba(214, 48, 49, 0.2);
    background: linear-gradient(135deg, rgba(214, 48, 49, 0.06), #ffffff);
    position: relative;
    box-shadow: 0 2px 8px rgba(214, 48, 49, 0.08);
}

.checkpoint-section .solution-card::before {
    background: linear-gradient(90deg, transparent, rgba(214, 48, 49, 0.08), transparent);
}

.checkpoint-section .solution-card:hover {
    border-color: #d63031;
    box-shadow: 0 15px 40px rgba(214, 48, 49, 0.22);
    background: linear-gradient(135deg, rgba(214, 48, 49, 0.08), #ffffff);
}

.checkpoint-section .solution-icon {
    background: linear-gradient(135deg, rgba(229, 62, 62, 0.1), rgba(197, 48, 48, 0.06));
    color: #c53030;
}

.checkpoint-section .solution-card:hover .solution-icon {
    background: linear-gradient(135deg, #e53e3e, #c53030);
    color: white;
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.35);
}

.checkpoint-section .solution-card.solution-highlight {
    border-color: #e53e3e;
    background: linear-gradient(135deg, rgba(229, 62, 62, 0.06), #ffffff);
    box-shadow: 0 8px 30px rgba(229, 62, 62, 0.12);
}

/* Cisco Section Styling */
.cisco-section {
    background: linear-gradient(135deg, #f8fcff 0%, #ffffff 50%, #f0faff 100%);
    border-left: 6px solid #00bceb;
    position: relative;
}

.cisco-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at bottom right, rgba(0, 188, 235, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.cisco-section .vendor-title {
    color: #0078d4;
    position: relative;
}

.cisco-section .vendor-title::after {
    background: linear-gradient(135deg, #00bceb, #0078d4);
}

.cisco-section .vendor-description {
    color: #2c5aa0;
}

.cisco-section .solution-card {
    border: 2px solid rgba(0, 188, 235, 0.12);
    background: linear-gradient(135deg, rgba(0, 188, 235, 0.02), #ffffff);
    position: relative;
}

.cisco-section .solution-card::before {
    background: linear-gradient(90deg, transparent, rgba(0, 188, 235, 0.06), transparent);
}

.cisco-section .solution-card:hover {
    border-color: #00bceb;
    box-shadow: 0 15px 40px rgba(0, 188, 235, 0.18);
    background: linear-gradient(135deg, rgba(0, 188, 235, 0.04), #ffffff);
}

.cisco-section .solution-icon {
    background: linear-gradient(135deg, rgba(0, 188, 235, 0.08), rgba(0, 120, 212, 0.05));
    color: #0078d4;
}

.cisco-section .solution-card:hover .solution-icon {
    background: linear-gradient(135deg, #00bceb, #0078d4);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 188, 235, 0.35);
}

.cisco-section .solution-card.solution-highlight {
    border-color: #00bceb;
    background: linear-gradient(135deg, rgba(0, 188, 235, 0.05), #ffffff);
    box-shadow: 0 8px 30px rgba(0, 188, 235, 0.12);
}

.vendor-header {
    text-align: center;
    margin-bottom: 60px;
}

.vendor-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    color: #0a0a23;
    margin-bottom: 20px;
    position: relative;
}

.vendor-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.vendor-description {
    font-size: 18px;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.vendor-solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.solution-card {
    background: white;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.solution-card:hover {
    transform: translateY(-8px);
    border-color: #ff6b35;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
}

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

.solution-card.solution-highlight {
    border-color: #ff6b35;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03), white);
}

.solution-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.solution-card:hover .solution-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.solution-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0a0a23;
    margin-bottom: 15px;
    line-height: 1.3;
}

.solution-card p {
    color: #666666;
    font-size: 16px;
    line-height: 1.6;
}

/* Different Approach Section */
.different-approach-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a3a 100%);
    color: white;
}

.different-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.different-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.different-item:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

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

.different-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.different-item:hover .different-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.different-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.different-item p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.6;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .security-vendor-section {
        padding: 60px 0;
    }

    .vendor-solutions-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .solution-card {
        padding: 25px 20px;
    }

    .different-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .different-item {
        padding: 25px 20px;
    }
}

/* Security Services Grid - Three Column Layout */
.security-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.security-services-grid .service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.security-services-grid .service-card:hover {
    transform: translateY(-8px);
    border: 2px solid rgba(255, 107, 53, 0.8);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 107, 53, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.security-services-grid .service-card .service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #ff6b35;
    transition: all 0.3s ease;
}

.security-services-grid .service-card:hover .service-icon {
    color: #f7931e;
    transform: scale(1.1);
}

.security-services-grid .service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    line-height: 1.3;
}

.security-services-grid .service-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.6;
    flex-grow: 1;
}

/* Responsive Design for Security Services */
@media (max-width: 1024px) {
    .security-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .security-services-grid .service-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .security-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .security-services-grid .service-card:nth-child(3) {
        grid-column: auto;
        max-width: none;
    }

    .security-services-grid .service-card {
        min-height: 240px;
        padding: 25px 20px;
    }
}

/* Benefits Grid for Why Choose sections */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border: 2px solid rgba(255, 107, 53, 0.8);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 107, 53, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.benefit-check {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.benefit-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
    line-height: 1.3;
}

.benefit-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-card {
        padding: 25px 20px;
    }
}

/* Blog Article Styles */
.blog-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: -70px;
    padding-top: 70px;
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a3a 100%) !important;
}

.blog-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.blog-hero-background svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.animated-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(255, 107, 53, 0.15) 0%, 
        rgba(247, 147, 30, 0.12) 25%, 
        rgba(52, 152, 219, 0.08) 50%, 
        rgba(155, 89, 182, 0.1) 75%, 
        rgba(255, 107, 53, 0.15) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 50%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.particle-1 {
    width: 8px;
    height: 8px;
    top: 20%;
    left: 10%;
    animation: float1 20s ease-in-out infinite;
}

.particle-2 {
    width: 6px;
    height: 6px;
    top: 60%;
    left: 80%;
    animation: float2 25s ease-in-out infinite;
}

.particle-3 {
    width: 10px;
    height: 10px;
    top: 80%;
    left: 20%;
    animation: float3 18s ease-in-out infinite;
}

.particle-4 {
    width: 4px;
    height: 4px;
    top: 30%;
    left: 70%;
    animation: float4 22s ease-in-out infinite;
}

.particle-5 {
    width: 7px;
    height: 7px;
    top: 70%;
    left: 60%;
    animation: float5 16s ease-in-out infinite;
}

.particle-6 {
    width: 5px;
    height: 5px;
    top: 40%;
    left: 30%;
    animation: float6 24s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.3; }
    25% { transform: translateY(-30px) translateX(20px) scale(1.2); opacity: 0.6; }
    50% { transform: translateY(-60px) translateX(-10px) scale(0.8); opacity: 0.4; }
    75% { transform: translateY(-20px) translateX(30px) scale(1.1); opacity: 0.7; }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.4; }
    33% { transform: translateY(40px) translateX(-25px) scale(1.3); opacity: 0.2; }
    66% { transform: translateY(-25px) translateX(15px) scale(0.9); opacity: 0.5; }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.3; }
    50% { transform: translateY(-40px) translateX(-20px) scale(1.4); opacity: 0.6; }
}

@keyframes float4 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.5; }
    20% { transform: translateY(-15px) translateX(25px) scale(1.1); opacity: 0.3; }
    40% { transform: translateY(30px) translateX(-15px) scale(0.8); opacity: 0.7; }
    60% { transform: translateY(-25px) translateX(10px) scale(1.2); opacity: 0.4; }
    80% { transform: translateY(15px) translateX(-20px) scale(0.9); opacity: 0.6; }
}

@keyframes float5 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.4; }
    25% { transform: translateY(20px) translateX(-30px) scale(1.3); opacity: 0.2; }
    75% { transform: translateY(-35px) translateX(20px) scale(0.7); opacity: 0.6; }
}

@keyframes float6 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.3; }
    40% { transform: translateY(-50px) translateX(35px) scale(1.5); opacity: 0.5; }
    80% { transform: translateY(25px) translateX(-25px) scale(0.8); opacity: 0.4; }
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-categories {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.blog-categories .category {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5), 0 2px 4px rgba(0, 0, 0, 0.3);
}

.blog-date {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin: 0;
}

.blog-content {
    background: #ffffff;
    color: #333333;
    padding: 80px 0;
    position: relative;
}

.blog-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    line-height: 1.8;
}

.blog-intro {
    font-size: 20px;
    font-weight: 500;
    color: #444444;
    margin-bottom: 40px;
    line-height: 1.7;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(247, 147, 30, 0.05));
    border-left: 4px solid #ff6b35;
    border-radius: 0 8px 8px 0;
}

.blog-article h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0a0a23;
    margin: 45px 0 25px 0;
    line-height: 1.3;
    position: relative;
    padding-bottom: 15px;
}

.blog-article h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.blog-article p {
    font-size: 18px;
    margin-bottom: 28px;
    color: #444444;
    line-height: 1.7;
    font-weight: 400;
}

.blog-highlight {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(247, 147, 30, 0.05));
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-left: 5px solid #ff6b35;
    border-radius: 12px;
    padding: 28px 32px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.08);
}

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

.blog-highlight:hover::before {
    left: 100%;
}

.blog-highlight p {
    margin: 0;
    font-weight: 600;
    color: #333333;
    font-size: 16px;
    font-style: italic;
}

.blog-list {
    padding-left: 0;
    list-style: none;
    margin: 30px 0;
}

.blog-list li {
    position: relative;
    padding: 12px 0 12px 35px;
    margin-bottom: 12px;
    color: #444444;
    font-size: 17px;
    line-height: 1.6;
}

.blog-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    color: #27ae60;
    font-weight: bold;
    font-size: 18px;
    background: rgba(39, 174, 96, 0.1);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.blog-cta {
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a3a 100%);
    color: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    margin: 50px 0 40px 0;
    position: relative;
    overflow: hidden;
}

.blog-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.blog-cta h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.blog-cta p {
    font-size: 16px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.blog-cta .cta-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.blog-cta .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.blog-navigation {
    background: #f8f9fa;
    padding: 60px 0;
    border-top: 1px solid #e9ecef;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.back-to-blog:hover {
    color: #f7931e;
    transform: translateX(-3px);
}

.related-articles h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0a0a23;
    margin-bottom: 30px;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.related-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.related-card:hover {
    border-color: #ff6b35;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.related-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0a0a23;
    margin-bottom: 12px;
    line-height: 1.4;
}

.related-card p {
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive Styles for Blog */
@media (max-width: 768px) {
    .blog-hero {
        height: 50vh;
        min-height: 400px;
    }

    .blog-title {
        font-size: 32px;
    }

    .blog-content {
        padding: 60px 0;
    }

    .blog-article {
        padding: 0 15px;
    }

    .blog-article h2 {
        font-size: 26px;
        margin: 35px 0 20px 0;
    }

    .blog-article p, .blog-intro {
        font-size: 16px;
    }

    .blog-highlight {
        padding: 20px;
        margin: 30px 0;
    }

    .blog-cta {
        padding: 30px 20px;
        margin: 40px 0 30px 0;
    }

    .blog-cta h3 {
        font-size: 24px;
    }

    .related-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Service card interactions with keyboard support */
document.addEventListener('DOMContentLoaded', function() {
    const serviceCards = document.querySelectorAll('.service-card');

    serviceCards.forEach(card => {
        // Make cards focusable
        card.setAttribute('tabindex', '0');
        card.setAttribute('role', 'button');

        // Add keyboard support
        card.addEventListener('keydown', function(e) {
            if (e.key === 'Enter' || e.key === ' ') {
                e.preventDefault();
                this.click();
            }
        });

        // Add aria labels for screen readers
        const serviceName = card.querySelector('h3').textContent;
        card.setAttribute('aria-label', `Learn more about ${serviceName}`);
    });
});

@media (max-width: 1024px) {
    .security-intro-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .security-intro-text {
        padding-right: 0;
        max-width: 800px;
        margin: 0 auto;
    }

    .security-highlights {
        max-width: 600px;
        margin: 40px auto 0;
    }
}

@media (max-width: 768px) {
    .security-intro-section {
        padding: 80px 0;
    }

    .security-intro-content {
        gap: 50px;    }

    .security-intro-text h2 {
        font-size: clamp(2rem, 6vw, 2.8rem);
        margin-bottom: 25px;
    }

    .security-intro-text h2::after {
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
    }

    .security-intro-text p {
        font-size: 17px;
        margin-bottom: 20px;
    }

    .security-intro-text p:first-of-type {
        font-size: 18px;
    }

    .security-visual {
        height: 300px;
    }

    .security-shield-container {
        width: 260px;
        height: 260px;
    }

    .shield-core {
        width: 70px;
        height: 70px;
    }

    .shield-core svg {
        width: 35px;
        height: 35px;
    }

    .security-highlights {
        gap: 15px;
        margin-top: 35px;
    }

    .highlight-item {
        padding: 18px 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .highlight-item:hover {
        transform: translateY(-3px);
    }

    .highlight-icon {
        font-size: 22px;
        padding: 10px;
    }

    .highlight-item span {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .security-intro-section {
        padding: 60px 0;
    }

    .security-intro-content {
        gap:40px;
    }

    .security-visual {
        height: 240px;
    }

    .security-shield-container {
        width: 200px;
        height: 200px;
    }

    .shield-core {
        width: 60px;
        height: 60px;
    }

    .shield-core svg {
        width: 30px;
        height: 30px;
    }

    .highlight-item {
        padding: 16px 18px;
    }
}

/* Vendor Sections Styling */
.security-vendor-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.security-vendor-section:nth-child(odd) {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

/* Check Point Section Styling */
.checkpoint-section {
    background: linear-gradient(135deg, #faf5f5 0%, #f5eeee 50%, #fbf8f8 100%);
    border-left: 6px solid #d63031;
    position: relative;
}

.checkpoint-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top left, rgba(214, 48, 49, 0.08) 0%, rgba(229, 62, 62, 0.02) 70%, transparent 100%);
    pointer-events: none;
}

.checkpoint-section .vendor-title {
    color: #c53030;
    position: relative;
}

.checkpoint-section .vendor-title::after {
    background: linear-gradient(135deg, #e53e3e, #c53030);
}

.checkpoint-section .vendor-description {
    color: #744210;
}

.checkpoint-section .solution-card {
    border: 2px solid rgba(214, 48, 49, 0.2);
    background: linear-gradient(135deg, rgba(214, 48, 49, 0.06), #ffffff);
    position: relative;
    box-shadow: 0 2px 8px rgba(214, 48, 49, 0.08);
}

.checkpoint-section .solution-card::before {
    background: linear-gradient(90deg, transparent, rgba(214, 48, 49, 0.08), transparent);
}

.checkpoint-section .solution-card:hover {
    border-color: #d63031;
    box-shadow: 0 15px 40px rgba(214, 48, 49, 0.22);
    background: linear-gradient(135deg, rgba(214, 48, 49, 0.08), #ffffff);
}

.checkpoint-section .solution-icon {
    background: linear-gradient(135deg, rgba(229, 62, 62, 0.1), rgba(197, 48, 48, 0.06));
    color: #c53030;
}

.checkpoint-section .solution-card:hover .solution-icon {
    background: linear-gradient(135deg, #e53e3e, #c53030);
    color: white;
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.35);
}

.checkpoint-section .solution-card.solution-highlight {
    border-color: #e53e3e;
    background: linear-gradient(135deg, rgba(229, 62, 62, 0.06), #ffffff);
    box-shadow: 0 8px 30px rgba(229, 62, 62, 0.12);
}

/* Cisco Section Styling */
.cisco-section {
    background: linear-gradient(135deg, #f8fcff 0%, #ffffff 50%, #f0faff 100%);
    border-left: 6px solid #00bceb;
    position: relative;
}

.cisco-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at bottom right, rgba(0, 188, 235, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.cisco-section .vendor-title {
    color: #0078d4;
    position: relative;
}

.cisco-section .vendor-title::after {
    background: linear-gradient(135deg, #00bceb, #0078d4);
}

.cisco-section .vendor-description {
    color: #2c5aa0;
}

.cisco-section .solution-card {
    border: 2px solid rgba(0, 188, 235, 0.12);
    background: linear-gradient(135deg, rgba(0, 188, 235, 0.02), #ffffff);
    position: relative;
}

.cisco-section .solution-card::before {
    background: linear-gradient(90deg, transparent, rgba(0, 188, 235, 0.06), transparent);
}

.cisco-section .solution-card:hover {
    border-color: #00bceb;
    box-shadow: 0 15px 40px rgba(0, 188, 235, 0.18);
    background: linear-gradient(135deg, rgba(0, 188, 235, 0.04), #ffffff);
}

.cisco-section .solution-icon {
    background: linear-gradient(135deg, rgba(0, 188, 235, 0.08), rgba(0, 120, 212, 0.05));
    color: #0078d4;
}

.cisco-section .solution-card:hover .solution-icon {
    background: linear-gradient(135deg, #00bceb, #0078d4);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 188, 235, 0.35);
}

.cisco-section .solution-card.solution-highlight {
    border-color: #00bceb;
    background: linear-gradient(135deg, rgba(0, 188, 235, 0.05), #ffffff);
    box-shadow: 0 8px 30px rgba(0, 188, 235, 0.12);
}

.vendor-header {
    text-align: center;
    margin-bottom: 60px;
}

.vendor-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    color: #0a0a23;
    margin-bottom: 20px;
    position: relative;
}

.vendor-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.vendor-description {
    font-size: 18px;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.vendor-solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.solution-card {
    background: white;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.solution-card:hover {
    transform: translateY(-8px);
    border-color: #ff6b35;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
}

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

.solution-card.solution-highlight {
    border-color: #ff6b35;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03), white);
}

.solution-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.solution-card:hover .solution-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.solution-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0a0a23;
    margin-bottom: 15px;
    line-height: 1.3;
}

.solution-card p {
    color: #666666;
    font-size: 16px;
    line-height: 1.6;
}

/* Different Approach Section */
.different-approach-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a3a 100%);
    color: white;
}

.different-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.different-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.different-item:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

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

.different-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.different-item:hover .different-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.different-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.different-item p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.6;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .security-vendor-section {
        padding: 60px 0;
    }

    .vendor-solutions-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .solution-card {
        padding: 25px 20px;
    }

    .different-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .different-item {
        padding: 25px 20px;
    }
}

/* Security Services Grid - Three Column Layout */
.security-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.security-services-grid .service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.security-services-grid .service-card:hover {
    transform: translateY(-8px);
    border: 2px solid rgba(255, 107, 53, 0.8);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 107, 53, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.security-services-grid .service-card .service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #ff6b35;
    transition: all 0.3s ease;
}

.security-services-grid .service-card:hover .service-icon {
    color: #f7931e;
    transform: scale(1.1);
}

.security-services-grid .service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    line-height: 1.3;
}

.security-services-grid .service-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.6;
    flex-grow: 1;
}

/* Responsive Design for Security Services */
@media (max-width: 1024px) {
    .security-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .security-services-grid .service-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .security-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .security-services-grid .service-card:nth-child(3) {
        grid-column: auto;
        max-width: none;
    }

    .security-services-grid .service-card {
        min-height: 240px;
        padding: 25px 20px;
    }
}

/* Benefits Grid for Why Choose sections */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border: 2px solid rgba(255, 107, 53, 0.8);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 107, 53, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.benefit-check {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.benefit-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
    line-height: 1.3;
}

.benefit-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-card {
        padding: 25px 20px;
    }
}

/* Blog Article Styles */
.blog-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: -70px;
    padding-top: 70px;
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a3a 100%) !important;
}

.blog-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.blog-hero-background svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.animated-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(255, 107, 53, 0.15) 0%, 
        rgba(247, 147, 30, 0.12) 25%, 
        rgba(52, 152, 219, 0.08) 50%, 
        rgba(155, 89, 182, 0.1) 75%, 
        rgba(255, 107, 53, 0.15) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 50%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.particle-1 {
    width: 8px;
    height: 8px;
    top: 20%;
    left: 10%;
    animation: float1 20s ease-in-out infinite;
}

.particle-2 {
    width: 6px;
    height: 6px;
    top: 60%;
    left: 80%;
    animation: float2 25s ease-in-out infinite;
}

.particle-3 {
    width: 10px;
    height: 10px;
    top: 80%;
    left: 20%;
    animation: float3 18s ease-in-out infinite;
}

.particle-4 {
    width: 4px;
    height: 4px;
    top: 30%;
    left: 70%;
    animation: float4 22s ease-in-out infinite;
}

.particle-5 {
    width: 7px;
    height: 7px;
    top: 70%;
    left: 60%;
    animation: float5 16s ease-in-out infinite;
}

.particle-6 {
    width: 5px;
    height: 5px;
    top: 40%;
    left: 30%;
    animation: float6 24s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.3; }
    25% { transform: translateY(-30px) translateX(20px) scale(1.2); opacity: 0.6; }
    50% { transform: translateY(-60px) translateX(-10px) scale(0.8); opacity: 0.4; }
    75% { transform: translateY(-20px) translateX(30px) scale(1.1); opacity: 0.7; }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.4; }
    33% { transform: translateY(40px) translateX(-25px) scale(1.3); opacity: 0.2; }
    66% { transform: translateY(-25px) translateX(15px) scale(0.9); opacity: 0.5; }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.3; }
    50% { transform: translateY(-40px) translateX(-20px) scale(1.4); opacity: 0.6; }
}

@keyframes float4 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.5; }
    20% { transform: translateY(-15px) translateX(25px) scale(1.1); opacity: 0.3; }
    40% { transform: translateY(30px) translateX(-15px) scale(0.8); opacity: 0.7; }
    60% { transform: translateY(-25px) translateX(10px) scale(1.2); opacity: 0.4; }
    80% { transform: translateY(15px) translateX(-20px) scale(0.9); opacity: 0.6; }
}

@keyframes float5 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.4; }
    25% { transform: translateY(20px) translateX(-30px) scale(1.3); opacity: 0.2; }
    75% { transform: translateY(-35px) translateX(20px) scale(0.7); opacity: 0.6; }
}

@keyframes float6 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.3; }
    40% { transform: translateY(-50px) translateX(35px) scale(1.5); opacity: 0.5; }
    80% { transform: translateY(25px) translateX(-25px) scale(0.8); opacity: 0.4; }
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-categories {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.blog-categories .category {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5), 0 2px 4px rgba(0, 0, 0, 0.3);
}

.blog-date {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin: 0;
}

.blog-content {
    background: #ffffff;
    color: #333333;
    padding: 80px 0;
    position: relative;
}

.blog-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    line-height: 1.8;
}

.blog-intro {
    font-size: 20px;
    font-weight: 500;
    color: #444444;
    margin-bottom: 40px;
    line-height: 1.7;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(247, 147, 30, 0.05));
    border-left: 4px solid #ff6b35;
    border-radius: 0 8px 8px 0;
}

.blog-article h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0a0a23;
    margin: 45px 0 25px 0;
    line-height: 1.3;
    position: relative;
    padding-bottom: 15px;
}

.blog-article h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.blog-article p {
    font-size: 18px;
    margin-bottom: 28px;
    color: #444444;
    line-height: 1.7;
    font-weight: 400;
}

.blog-highlight {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(247, 147, 30, 0.05));
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-left: 5px solid #ff6b35;
    border-radius: 12px;
    padding: 28px 32px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.08);
}

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

.blog-highlight:hover::before {
    left: 100%;
}

.blog-highlight p {
    margin: 0;
    font-weight: 600;
    color: #333333;
    font-size: 16px;
    font-style: italic;
}

.blog-list {
    padding-left: 0;
    list-style: none;
    margin: 30px 0;
}

.blog-list li {
    position: relative;
    padding: 12px 0 12px 35px;
    margin-bottom: 12px;
    color: #444444;
    font-size: 17px;
    line-height: 1.6;
}

.blog-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    color: #27ae60;
    font-weight: bold;
    font-size: 18px;
    background: rgba(39, 174, 96, 0.1);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.blog-cta {
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a3a 100%);
    color: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    margin: 50px 0 40px 0;
    position: relative;
    overflow: hidden;
}

.blog-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.blog-cta h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.blog-cta p {
    font-size: 16px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.blog-cta .cta-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.blog-cta .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.blog-navigation {
    background: #f8f9fa;
    padding: 60px 0;
    border-top: 1px solid #e9ecef;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.back-to-blog:hover {
    color: #f7931e;
    transform: translateX(-3px);
}

.related-articles h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0a0a23;
    margin-bottom: 30px;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.related-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.related-card:hover {
    border-color: #ff6b35;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.related-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0a0a23;
    margin-bottom: 12px;
    line-height: 1.4;
}

.related-card p {
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive Styles for Blog */
@media (max-width: 768px) {
    .blog-hero {
        height: 50vh;
        min-height: 400px;
    }

    .blog-title {
        font-size: 32px;
    }

    .blog-content {
        padding: 60px 0;
    }

    .blog-article {
        padding: 0 15px;
    }

    .blog-article h2 {
        font-size: 26px;
        margin: 35px 0 20px 0;
    }

    .blog-article p, .blog-intro {
        font-size: 16px;
    }

    .blog-highlight {
        padding: 20px;
        margin: 30px 0;
    }

    .blog-cta {
        padding: 30px 20px;
        margin: 40px 0 30px 0;
    }

    .blog-cta h3 {
        font-size: 24px;
    }

    .related-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Service card interactions with keyboard support */
document.addEventListener('DOMContentLoaded', function() {
    const serviceCards = document.querySelectorAll('.service-card');

    serviceCards.forEach(card => {
        // Make cards focusable
        card.setAttribute('tabindex', '0');
        card.setAttribute('role', 'button');

        // Add keyboard support
        card.addEventListener('keydown', function(e) {
            if (e.key === 'Enter' || e.key === ' ') {
                e.preventDefault();
                this.click();
            }
        });

        // Add aria labels for screen readers
        const serviceName = card.querySelector('h3').textContent;
        card.setAttribute('aria-label', `Learn more about ${serviceName}`);
    });
});

@media (max-width: 1024px) {
    .security-intro-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .security-intro-text {
        padding-right: 0;
        max-width: 800px;
        margin: 0 auto;
    }

    .security-highlights {
        max-width: 600px;
        margin: 40px auto 0;
    }
}

@media (max-width: 768px) {
    .security-intro-section {
        padding: 80px 0;
    }

    .security-intro-content {
        gap: 50px;    }

    .security-intro-text h2 {
        font-size: clamp(2rem, 6vw, 2.8rem);
        margin-bottom: 25px;
    }

    .security-intro-text h2::after {
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
    }

    .security-intro-text p {
        font-size: 17px;
        margin-bottom: 20px;
    }

    .security-intro-text p:first-of-type {
        font-size: 18px;
    }

    .security-visual {
        height: 300px;
    }

    .security-shield-container {
        width: 260px;
        height: 260px;
    }

    .shield-core {
        width: 70px;
        height: 70px;
    }

    .shield-core svg {
        width: 35px;
        height: 35px;
    }

    .security-highlights {
        gap: 15px;
        margin-top: 35px;
    }

    .highlight-item {
        padding: 18px 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .highlight-item:hover {
        transform: translateY(-3px);
    }

    .highlight-icon {
        font-size: 22px;
        padding: 10px;
    }

    .highlight-item span {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .security-intro-section {
        padding: 60px 0;
    }

    .security-intro-content {
        gap:40px;
    }

    .security-visual {
        height: 240px;
    }

    .security-shield-container {
        width: 200px;
        height: 200px;
    }

    .shield-core {
        width: 60px;
        height: 60px;
    }

    .shield-core svg {
        width: 30px;
        height: 30px;
    }

    .highlight-item {
        padding: 16px 18px;
    }
}

/* Vendor Sections Styling */
.security-vendor-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.security-vendor-section:nth-child(odd) {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

/* Check Point Section Styling */
.checkpoint-section {
    background: linear-gradient(135deg, #faf5f5 0%, #f5eeee 50%, #fbf8f8 100%);
    border-left: 6px solid #d63031;
    position: relative;
}

.checkpoint-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top left, rgba(214, 48, 49, 0.08) 0%, rgba(229, 62, 62, 0.02) 70%, transparent 100%);
    pointer-events: none;
}

.checkpoint-section .vendor-title {
    color: #c53030;
    position: relative;
}

.checkpoint-section .vendor-title::after {
    background: linear-gradient(135deg, #e53e3e, #c53030);
}

.checkpoint-section .vendor-description {
    color: #744210;
}

.checkpoint-section .solution-card {
    border: 2px solid rgba(214, 48, 49, 0.2);
    background: linear-gradient(135deg, rgba(214, 48, 49, 0.06), #ffffff);
    position: relative;
    box-shadow: 0 2px 8px rgba(214, 48, 49, 0.08);
}

.checkpoint-section .solution-card::before {
    background: linear-gradient(90deg, transparent, rgba(214, 48, 49, 0.08), transparent);
}

.checkpoint-section .solution-card:hover {
    border-color: #d63031;
    box-shadow: 0 15px 40px rgba(214, 48, 49, 0.22);
    background: linear-gradient(135deg, rgba(214, 48, 49, 0.08), #ffffff);
}

.checkpoint-section .solution-icon {
    background: linear-gradient(135deg, rgba(229, 62, 62, 0.1), rgba(197, 48, 48, 0.06));
    color: #c53030;
}

.checkpoint-section .solution-card:hover .solution-icon {
    background: linear-gradient(135deg, #e53e3e, #c53030);
    color: white;
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.35);
}

.checkpoint-section .solution-card.solution-highlight {
    border-color: #e53e3e;
    background: linear-gradient(135deg, rgba(229, 62, 62, 0.06), #ffffff);
    box-shadow: 0 8px 30px rgba(229, 62, 62, 0.12);
}

/* Cisco Section Styling */
.cisco-section {
    background: linear-gradient(135deg, #f8fcff 0%, #ffffff 50%, #f0faff 100%);
    border-left: 6px solid #00bceb;
    position: relative;
}

.cisco-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at bottom right, rgba(0, 188, 235, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.cisco-section .vendor-title {
    color: #0078d4;
    position: relative;
}

.cisco-section .vendor-title::after {
    background: linear-gradient(135deg, #00bceb, #0078d4);
}

.cisco-section .vendor-description {
    color: #2c5aa0;
}

.cisco-section .solution-card {
    border: 2px solid rgba(0, 188, 235, 0.12);
    background: linear-gradient(135deg, rgba(0, 188, 235, 0.02), #ffffff);
    position: relative;
}

.cisco-section .solution-card::before {
    background: linear-gradient(90deg, transparent, rgba(0, 188, 235, 0.06), transparent);
}

.cisco-section .solution-card:hover {
    border-color: #00bceb;
    box-shadow: 0 15px 40px rgba(0, 188, 235, 0.18);
    background: linear-gradient(135deg, rgba(0, 188, 235, 0.04), #ffffff);
}

.cisco-section .solution-icon {
    background: linear-gradient(135deg, rgba(0, 188, 235, 0.08), rgba(0, 120, 212, 0.05));
    color: #0078d4;
}

.cisco-section .solution-card:hover .solution-icon {
    background: linear-gradient(135deg, #00bceb, #0078d4);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 188, 235, 0.35);
}

.cisco-section .solution-card.solution-highlight {
    border-color: #00bceb;
    background: linear-gradient(135deg, rgba(0, 188, 235, 0.05), #ffffff);
    box-shadow: 0 8px 30px rgba(0, 188, 235, 0.12);
}

.vendor-header {
    text-align: center;
    margin-bottom: 60px;
}

.vendor-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    color: #0a0a23;
    margin-bottom: 20px;
    position: relative;
}

.vendor-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.vendor-description {
    font-size: 18px;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.vendor-solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.solution-card {
    background: white;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.solution-card:hover {
    transform: translateY(-8px);
    border-color: #ff6b35;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
}

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

.solution-card.solution-highlight {
    border-color: #ff6b35;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03), white);
}

.solution-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.solution-card:hover .solution-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.solution-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0a0a23;
    margin-bottom: 15px;
    line-height: 1.3;
}

.solution-card p {
    color: #666666;
    font-size: 16px;
    line-height: 1.6;
}

/* Different Approach Section */
.different-approach-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a3a 100%);
    color: white;
}

.different-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.different-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.different-item:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

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

.different-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.different-item:hover .different-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.different-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.different-item p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.6;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .security-vendor-section {
        padding: 60px 0;
    }

    .vendor-solutions-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .solution-card {
        padding: 25px 20px;
    }

    .different-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .different-item {
        padding: 25px 20px;
    }
}

/* Security Services Grid - Three Column Layout */
.security-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.security-services-grid .service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.security-services-grid .service-card:hover {
    transform: translateY(-8px);
    border: 2px solid rgba(255, 107, 53, 0.8);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 107, 53, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.security-services-grid .service-card .service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #ff6b35;
    transition: all 0.3s ease;
}

.security-services-grid .service-card:hover .service-icon {
    color: #f7931e;
    transform: scale(1.1);
}

.security-services-grid .service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    line-height: 1.3;
}

.security-services-grid .service-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.6;
    flex-grow: 1;
}

/* Responsive Design for Security Services */
@media (max-width: 1024px) {
    .security-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .security-services-grid .service-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .security-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .security-services-grid .service-card:nth-child(3) {
        grid-column: auto;
        max-width: none;
    }

    .security-services-grid .service-card {
        min-height: 240px;
        padding: 25px 20px;
    }
}

/* Benefits Grid for Why Choose sections */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border: 2px solid rgba(255, 107, 53, 0.8);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 107, 53, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.benefit-check {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.benefit-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
    line-height: 1.3;
}

.benefit-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-card {
        padding: 25px 20px;
    }
}

/* Blog Article Styles */
.blog-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: -70px;
    padding-top: 70px;
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a3a 100%) !important;
}

.blog-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.blog-hero-background svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.animated-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(255, 107, 53, 0.15) 0%, 
        rgba(247, 147, 30, 0.12) 25%, 
        rgba(52, 152, 219, 0.08) 50%, 
        rgba(155, 89, 182, 0.1) 75%, 
        rgba(255, 107, 53, 0.15) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 50%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.particle-1 {
    width: 8px;
    height: 8px;
    top: 20%;
    left: 10%;
    animation: float1 20s ease-in-out infinite;
}

.particle-2 {
    width: 6px;
    height: 6px;
    top: 60%;
    left: 80%;
    animation: float2 25s ease-in-out infinite;
}

.particle-3 {
    width: 10px;
    height: 10px;
    top: 80%;
    left: 20%;
    animation: float3 18s ease-in-out infinite;
}

.particle-4 {
    width: 4px;
    height: 4px;
    top: 30%;
    left: 70%;
    animation: float4 22s ease-in-out infinite;
}

.particle-5 {
    width: 7px;
    height: 7px;
    top: 70%;
    left: 60%;
    animation: float5 16s ease-in-out infinite;
}

.particle-6 {
    width: 5px;
    height: 5px;
    top: 40%;
    left: 30%;
    animation: float6 24s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.3; }
    25% { transform: translateY(-30px) translateX(20px) scale(1.2); opacity: 0.6; }
    50% { transform: translateY(-60px) translateX(-10px) scale(0.8); opacity: 0.4; }
    75% { transform: translateY(-20px) translateX(30px) scale(1.1); opacity: 0.7; }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.4; }
    33% { transform: translateY(40px) translateX(-25px) scale(1.3); opacity: 0.2; }
    66% { transform: translateY(-25px) translateX(15px) scale(0.9); opacity: 0.5; }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.3; }
    50% { transform: translateY(-40px) translateX(-20px) scale(1.4); opacity: 0.6; }
}

@keyframes float4 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.5; }
    20% { transform: translateY(-15px) translateX(25px) scale(1.1); opacity: 0.3; }
    40% { transform: translateY(30px) translateX(-15px) scale(0.8); opacity: 0.7; }
    60% { transform: translateY(-25px) translateX(10px) scale(1.2); opacity: 0.4; }
    80% { transform: translateY(15px) translateX(-20px) scale(0.9); opacity: 0.6; }
}

@keyframes float5 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.4; }
    25% { transform: translateY(20px) translateX(-30px) scale(1.3); opacity: 0.2; }
    75% { transform: translateY(-35px) translateX(20px) scale(0.7); opacity: 0.6; }
}

@keyframes float6 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.3; }
    40% { transform: translateY(-50px) translateX(35px) scale(1.5); opacity: 0.5; }
    80% { transform: translateY(25px) translateX(-25px) scale(0.8); opacity: 0.4; }
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-categories {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.blog-categories .category {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5), 0 2px 4px rgba(0, 0, 0, 0.3);
}

.blog-date {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin: 0;
}

.blog-content {
    background: #ffffff;
    color: #333333;
    padding: 80px 0;
    position: relative;
}

.blog-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    line-height: 1.8;
}

.blog-intro {
    font-size: 20px;
    font-weight: 500;
    color: #444444;
    margin-bottom: 40px;
    line-height: 1.7;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(247, 147, 30, 0.05));
    border-left: 4px solid #ff6b35;
    border-radius: 0 8px 8px 0;
}

.blog-article h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0a0a23;
    margin: 45px 0 25px 0;
    line-height: 1.3;
    position: relative;
    padding-bottom: 15px;
}

.blog-article h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.blog-article p {
    font-size: 18px;
    margin-bottom: 28px;
    color: #444444;
    line-height: 1.7;
    font-weight: 400;
}

.blog-highlight {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(247, 147, 30, 0.05));
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-left: 5px solid #ff6b35;
    border-radius: 12px;
    padding: 28px 32px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.08);
}

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

.blog-highlight:hover::before {
    left: 100%;
}

.blog-highlight p {
    margin: 0;
    font-weight: 600;
    color: #333333;
    font-size: 16px;
    font-style: italic;
}

.blog-list {
    padding-left: 0;
    list-style: none;
    margin: 30px 0;
}

.blog-list li {
    position: relative;
    padding: 12px 0 12px 35px;
    margin-bottom: 12px;
    color: #444444;
    font-size: 17px;
    line-height: 1.6;
}

.blog-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    color: #27ae60;
    font-weight: bold;
    font-size: 18px;
    background: rgba(39, 174, 96, 0.1);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.blog-cta {
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a3a 100%);
    color: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    margin: 50px 0 40px 0;
    position: relative;
    overflow: hidden;
}

.blog-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.blog-cta h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.blog-cta p {
    font-size: 16px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.blog-cta .cta-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.blog-cta .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.blog-navigation {
    background: #f8f9fa;
    padding: 60px 0;
    border-top: 1px solid #e9ecef;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.back-to-blog:hover {
    color: #f7931e;
    transform: translateX(-3px);
}

.related-articles h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0a0a23;
    margin-bottom: 30px;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.related-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.related-card:hover {
    border-color: #ff6b35;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.related-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0a0a23;
    margin-bottom: 12px;
    line-height: 1.4;
}

.related-card p {
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive Styles for Blog */
@media (max-width: 768px) {
    .blog-hero {
        height: 50vh;
        min-height: 400px;
    }

    .blog-title {
        font-size: 32px;
    }

    .blog-content {
        padding: 60px 0;
    }

    .blog-article {
        padding: 0 15px;
    }

    .blog-article h2 {
        font-size: 26px;
        margin: 35px 0 20px 0;
    }

    .blog-article p, .blog-intro {
        font-size: 16px;
    }

    .blog-highlight {
        padding: 20px;
        margin: 30px 0;
    }

    .blog-cta {
        padding: 30px 20px;
        margin: 40px 0 30px 0;
    }

    .blog-cta h3 {
        font-size: 24px;
    }

    .related-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Service card interactions with keyboard support */
document.addEventListener('DOMContentLoaded', function() {
    const serviceCards = document.querySelectorAll('.service-card');

    serviceCards.forEach(card => {
        // Make cards focusable
        card.setAttribute('tabindex', '0');
        card.setAttribute('role', 'button');

        // Add keyboard support
        card.addEventListener('keydown', function(e) {
            if (e.key === 'Enter' || e.key === ' ') {
                e.preventDefault();
                this.click();
            }
        });

        // Add aria labels for screen readers
        const serviceName = card.querySelector('h3').textContent;
        card.setAttribute('aria-label', `Learn more about ${serviceName}`);
    });
});

@media (max-width: 1024px) {
    .security-intro-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .security-intro-text {
        padding-right: 0;
        max-width: 800px;
        margin: 0 auto;
    }

    .security-highlights {
        max-width: 600px;
        margin: 40px auto 0;
    }
}

@media (max-width: 768px) {
    .security-intro-section {
        padding: 80px 0;
    }

    .security-intro-content {
        gap: 50px;    }

    .security-intro-text h2 {
        font-size: clamp(2rem, 6vw, 2.8rem);
        margin-bottom: 25px;
    }

    .security-intro-text h2::after {
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
    }

    .security-intro-text p {
        font-size: 17px;
        margin-bottom: 20px;
    }

    .security-intro-text p:first-of-type {
        font-size: 18px;
    }

    .security-visual {
        height: 300px;
    }

    .security-shield-container {
        width: 260px;
        height: 260px;
    }

    .shield-core {
        width: 70px;
        height: 70px;
    }

    .shield-core svg {
        width: 35px;
        height: 35px;
    }

    .security-highlights {
        gap: 15px;
        margin-top: 35px;
    }

    .highlight-item {
        padding: 18px 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .highlight-item:hover {
        transform: translateY(-3px);
    }

    .highlight-icon {
        font-size: 22px;
        padding: 10px;
    }

    .highlight-item span {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .security-intro-section {
        padding: 60px 0;
    }

    .security-intro-content {
        gap:40px;
    }

    .security-visual {
        height: 240px;
    }

    .security-shield-container {
        width: 200px;
        height: 200px;
    }

    .shield-core {
        width: 60px;
        height: 60px;
    }

    .shield-core svg {
        width: 30px;
        height: 30px;
    }

    .highlight-item {
        padding: 16px 18px;
    }
}

/* Vendor Sections Styling */
.security-vendor-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.security-vendor-section:nth-child(odd) {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

/* Check Point Section Styling */
.checkpoint-section {
    background: linear-gradient(135deg, #faf5f5 0%, #f5eeee 50%, #fbf8f8 100%);
    border-left: 6px solid #d63031;
    position: relative;
}

.checkpoint-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top left, rgba(214, 48, 49, 0.08) 0%, rgba(229, 62, 62, 0.02) 70%, transparent 100%);
    pointer-events: none;
}

.checkpoint-section .vendor-title {
    color: #c53030;
    position: relative;
}

.checkpoint-section .vendor-title::after {
    background: linear-gradient(135deg, #e53e3e, #c53030);
}

.checkpoint-section .vendor-description {
    color: #744210;
}

.checkpoint-section .solution-card {
    border: 2px solid rgba(214, 48, 49, 0.2);
    background: linear-gradient(135deg, rgba(214, 48, 49, 0.06), #ffffff);
    position: relative;
    box-shadow: 0 2px 8px rgba(214, 48, 49, 0.08);
}

.checkpoint-section .solution-card::before {
    background: linear-gradient(90deg, transparent, rgba(214, 48, 49, 0.08), transparent);
}

.checkpoint-section .solution-card:hover {
    border-color: #d63031;
    box-shadow: 0 15px 40px rgba(214, 48, 49, 0.22);
    background: linear-gradient(135deg, rgba(214, 48, 49, 0.08), #ffffff);
}

.checkpoint-section .solution-icon {
    background: linear-gradient(135deg, rgba(229, 62, 62, 0.1), rgba(197, 48, 48, 0.06));
    color: #c53030;
}

.checkpoint-section .solution-card:hover .solution-icon {
    background: linear-gradient(135deg, #e53e3e, #c53030);
    color: white;
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.35);
}

.checkpoint-section .solution-card.solution-highlight {
    border-color: #e53e3e;
    background: linear-gradient(135deg, rgba(229, 62, 62, 0.06), #ffffff);
    box-shadow: 0 8px 30px rgba(229, 62, 62, 0.12);
}

/* Cisco Section Styling */
.cisco-section {
    background: linear-gradient(135deg, #f8fcff 0%, #ffffff 50%, #f0faff 100%);
    border-left: 6px solid #00bceb;
    position: relative;
}

.cisco-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at bottom right, rgba(0, 188, 235, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.cisco-section .vendor-title {
    color: #0078d4;
    position: relative;
}

.cisco-section .vendor-title::after {
    background: linear-gradient(135deg, #00bceb, #0078d4);
}

.cisco-section .vendor-description {
    color: #2c5aa0;
}

.cisco-section .solution-card {
    border: 2px solid rgba(0, 188, 235, 0.12);
    background: linear-gradient(135deg, rgba(0, 188, 235, 0.02), #ffffff);
    position: relative;
}

.cisco-section .solution-card::before {
    background: linear-gradient(90deg, transparent, rgba(0, 188, 235, 0.06), transparent);
}

.cisco-section .solution-card:hover {
    border-color: #00bceb;
    box-shadow: 0 15px 40px rgba(0, 188, 235, 0.18);
    background: linear-gradient(135deg, rgba(0, 188, 235, 0.04), #ffffff);
}

.cisco-section .solution-icon {
    background: linear-gradient(135deg, rgba(0, 188, 235, 0.08), rgba(0, 120, 212, 0.05));
    color: #0078d4;
}

.cisco-section .solution-card:hover .solution-icon {
    background: linear-gradient(135deg, #00bceb, #0078d4);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 188, 235, 0.35);
}

.cisco-section .solution-card.solution-highlight {
    border-color: #00bceb;
    background: linear-gradient(135deg, rgba(0, 188, 235, 0.05), #ffffff);
    box-shadow: 0 8px 30px rgba(0, 188, 235, 0.12);
}

.vendor-header {
    text-align: center;
    margin-bottom: 60px;
}

.vendor-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    color: #0a0a23;
    margin-bottom: 20px;
    position: relative;
}

.vendor-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.vendor-description {
    font-size: 18px;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.vendor-solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.solution-card {
    background: white;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.solution-card:hover {
    transform: translateY(-8px);
    border-color: #ff6b35;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
}

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

.solution-card.solution-highlight {
    border-color: #ff6b35;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03), white);
}

.solution-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.solution-card:hover .solution-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.solution-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0a0a23;
    margin-bottom: 15px;
    line-height: 1.3;
}

.solution-card p {
    color: #666666;
    font-size: 16px;
    line-height: 1.6;
}

/* Different Approach Section */
.different-approach-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a3a 100%);
    color: white;
}

.different-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.different-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.different-item:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

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

.different-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.different-item:hover .different-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.different-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.different-item p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.6;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .security-vendor-section {
        padding: 60px 0;
    }

    .vendor-solutions-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .solution-card {
        padding: 25px 20px;
    }

    .different-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .different-item {
        padding: 25px 20px;
    }
}

/* Security Services Grid - Three Column Layout */
.security-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.security-services-grid .service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.security-services-grid .service-card:hover {
    transform: translateY(-8px);
    border: 2px solid rgba(255, 107, 53, 0.8);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 107, 53, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.security-services-grid .service-card .service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #ff6b35;
    transition: all 0.3s ease;
}

.security-services-grid .service-card:hover .service-icon {
    color: #f7931e;
    transform: scale(1.1);
}

.security-services-grid .service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    line-height: 1.3;
}

.security-services-grid .service-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.6;
    flex-grow: 1;
}

/* Responsive Design for Security Services */
@media (max-width: 1024px) {
    .security-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .security-services-grid .service-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .security-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .security-services-grid .service-card:nth-child(3) {
        grid-column: auto;
        max-width: none;
    }

    .security-services-grid .service-card {
        min-height: 240px;
        padding: 25px 20px;
    }
}

/* Benefits Grid for Why Choose sections */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border: 2px solid rgba(255, 107, 53, 0.8);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 107, 53, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.benefit-check {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.benefit-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
    line-height: 1.3;
}

.benefit-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-card {
        padding: 25px 20px;
    }
}

/* Blog Article Styles */
.blog-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: -70px;
    padding-top: 70px;
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a3a 100%) !important;
}

.blog-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.blog-hero-background svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.animated-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(255, 107, 53, 0.15) 0%, 
        rgba(247, 147, 30, 0.12) 25%, 
        rgba(52, 152, 219, 0.08) 50%, 
        rgba(155, 89, 182, 0.1) 75%, 
        rgba(255, 107, 53, 0.15) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 50%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.particle-1 {
    width: 8px;
    height: 8px;
    top: 20%;
    left: 10%;
    animation: float1 20s ease-in-out infinite;
}

.particle-2 {
    width: 6px;
    height: 6px;
    top: 60%;
    left: 80%;
    animation: float2 25s ease-in-out infinite;
}

.particle-3 {
    width: 10px;
    height: 10px;
    top: 80%;
    left: 20%;
    animation: float3 18s ease-in-out infinite;
}

.particle-4 {
    width: 4px;
    height: 4px;
    top: 30%;
    left: 70%;
    animation: float4 22s ease-in-out infinite;
}

.particle-5 {
    width: 7px;
    height: 7px;
    top: 70%;
    left: 60%;
    animation: float5 16s ease-in-out infinite;
}

.particle-6 {
    width: 5px;
    height: 5px;
    top: 40%;
    left: 30%;
    animation: float6 24s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.3; }
    25% { transform: translateY(-30px) translateX(20px) scale(1.2); opacity: 0.6; }
    50% { transform: translateY(-60px) translateX(-10px) scale(0.8); opacity: 0.4; }
    75% { transform: translateY(-20px) translateX(30px) scale(1.1); opacity: 0.7; }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.4; }
    33% { transform: translateY(40px) translateX(-25px) scale(1.3); opacity: 0.2; }
    66% { transform: translateY(-25px) translateX(15px) scale(0.9); opacity: 0.5; }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.3; }
    50% { transform: translateY(-40px) translateX(-20px) scale(1.4); opacity: 0.6; }
}

@keyframes float4 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.5; }
    20% { transform: translateY(-15px) translateX(25px) scale(1.1); opacity: 0.3; }
    40% { transform: translateY(30px) translateX(-15px) scale(0.8); opacity: 0.7; }
    60% { transform: translateY(-25px) translateX(10px) scale(1.2); opacity: 0.4; }
    80% { transform: translateY(15px) translateX(-20px) scale(0.9); opacity: 0.6; }
}

@keyframes float5 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.4; }
    25% { transform: translateY(20px) translateX(-30px) scale(1.3); opacity: 0.2; }
    75% { transform: translateY(-35px) translateX(20px) scale(0.7); opacity: 0.6; }
}

@keyframes float6 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.3; }
    40% { transform: translateY(-50px) translateX(35px) scale(1.5); opacity: 0.5; }
    80% { transform: translateY(25px) translateX(-25px) scale(0.8); opacity: 0.4; }
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-categories {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.blog-categories .category {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5), 0 2px 4px rgba(0, 0, 0, 0.3);
}

.blog-date {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin: 0;
}

.blog-content {
    background: #ffffff;
    color: #333333;
    padding: 80px 0;
    position: relative;
}

.blog-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    line-height: 1.8;
}

.blog-intro {
    font-size: 20px;
    font-weight: 500;
    color: #444444;
    margin-bottom: 40px;
    line-height: 1.7;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(247, 147, 30, 0.05));
    border-left: 4px solid #ff6b35;
    border-radius: 0 8px 8px 0;
}

.blog-article h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0a0a23;
    margin: 45px 0 25px 0;
    line-height: 1.3;
    position: relative;
    padding-bottom: 15px;
}

.blog-article h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.blog-article p {
    font-size: 18px;
    margin-bottom: 28px;
    color: #444444;
    line-height: 1.7;
    font-weight: 400;
}

.blog-highlight {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(247, 147, 30, 0.05));
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-left: 5px solid #ff6b35;
    border-radius: 12px;
    padding: 28px 32px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.08);
}

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

.blog-highlight:hover::before {
    left: 100%;
}

.blog-highlight p {
    margin: 0;
    font-weight: 600;
    color: #333333;
    font-size: 16px;
    font-style: italic;
}

.blog-list {
    padding-left: 0;
    list-style: none;
    margin: 30px 0;
}

.blog-list li {
    position: relative;
    padding: 12px 0 12px 35px;
    margin-bottom: 12px;
    color: #444444;
    font-size: 17px;
    line-height: 1.6;
}

.blog-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    color: #27ae60;
    font-weight: bold;
    font-size: 18px;
    background: rgba(39, 174, 96, 0.1);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.blog-cta {
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a3a 100%);
    color: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    margin: 50px 0 40px 0;
    position: relative;
    overflow: hidden;
}

.blog-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.blog-cta h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.blog-cta p {
    font-size: 16px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.blog-cta .cta-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.blog-cta .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.blog-navigation {
    background: #f8f9fa;
    padding: 60px 0;
    border-top: 1px solid #e9ecef;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.back-to-blog:hover {
    color: #f7931e;
    transform: translateX(-3px);
}

.related-articles h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0a0a23;
    margin-bottom: 30px;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.related-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.related-card:hover {
    border-color: #ff6b35;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.related-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0a0a23;
    margin-bottom: 12px;
    line-height: 1.4;
}

.related-card p {
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive Styles for Blog */
@media (max-width: 768px) {
    .blog-hero {
        height: 50vh;
        min-height: 400px;
    }

    .blog-title {
        font-size: 32px;
    }

    .blog-content {
        padding: 60px 0;
    }

    .blog-article {
        padding: 0 15px;
    }

    .blog-article h2 {
        font-size: 26px;
        margin: 35px 0 20px 0;
    }

    .blog-article p, .blog-intro {
        font-size: 16px;
    }

    .blog-highlight {
        padding: 20px;
        margin: 30px 0;
    }

    .blog-cta {
        padding: 30px 20px;
        margin: 40px 0 30px 0;
    }

    .blog-cta h3 {
        font-size: 24px;
    }

    .related-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Service card interactions with keyboard support */
document.addEventListener('DOMContentLoaded', function() {
    const serviceCards = document.querySelectorAll('.service-card');

    serviceCards.forEach(card => {
        // Make cards focusable
        card.setAttribute('tabindex', '0');
        card.setAttribute('role', 'button');

        // Add keyboard support
        card.addEventListener('keydown', function(e) {
            if (e.key === 'Enter' || e.key === ' ') {
                e.preventDefault();
                this.click();
            }
        });

        // Add aria labels for screen readers
        const serviceName = card.querySelector('h3').textContent;
        card.setAttribute('aria-label', `Learn more about ${serviceName}`);
    });
});

@media (max-width: 1024px) {
    .security-intro-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .security-intro-text {
        padding-right: 0;
        max-width: 800px;
        margin: 0 auto;
    }

    .security-highlights {
        max-width: 600px;
        margin: 40px auto 0;
    }
}

@media (max-width: 768px) {
    .security-intro-section {
        padding: 80px 0;
    }

    .security-intro-content {
        gap: 50px;    }

    .security-intro-text h2 {
        font-size: clamp(2rem, 6vw, 2.8rem);
        margin-bottom: 25px;
    }

    .security-intro-text h2::after {
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
    }

    .security-intro-text p {
        font-size: 17px;
        margin-bottom: 20px;
    }

    .security-intro-text p:first-of-type {
        font-size: 18px;
    }

    .security-visual {
        height: 300px;
    }

    .security-shield-container {
        width: 260px;
        height: 260px;
    }

    .shield-core {
        width: 70px;
        height: 70px;
    }

    .shield-core svg {
        width: 35px;
        height: 35px;
    }

    .security-highlights {
        gap: 15px;
        margin-top: 35px;
    }

    .highlight-item {
        padding: 18px 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .highlight-item:hover {
        transform: translateY(-3px);
    }

    .highlight-icon {
        font-size: 22px;
        padding: 10px;
    }

    .highlight-item span {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .security-intro-section {
        padding: 60px 0;
    }

    .security-intro-content {
        gap:40px;
    }

    .security-visual {
        height: 240px;
    }

    .security-shield-container {
        width: 200px;
        height: 200px;
    }

    .shield-core {
        width: 60px;
        height: 60px;
    }

    .shield-core svg {
        width: 30px;
        height: 30px;
    }

    .highlight-item {
        padding: 16px 18px;
    }
}

/* Vendor Sections Styling */
.security-vendor-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.security-vendor-section:nth-child(odd) {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

/* Check Point Section Styling */
.checkpoint-section {
    background: linear-gradient(135deg, #faf5f5 0%, #f5eeee 50%, #fbf8f8 100%);
    border-left: 6px solid #d63031;
    position: relative;
}

.checkpoint-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top left, rgba(214, 48, 49, 0.08) 0%, rgba(229, 62, 62, 0.02) 70%, transparent 100%);
    pointer-events: none;
}

.checkpoint-section .vendor-title {
    color: #c53030;
    position: relative;
}

.checkpoint-section .vendor-title::after {
    background: linear-gradient(135deg, #e53e3e, #c53030);
}

.checkpoint-section .vendor-description {
    color: #744210;
}

.checkpoint-section .solution-card {
    border: 2px solid rgba(214, 48, 49, 0.2);
    background: linear-gradient(135deg, rgba(214, 48, 49, 0.06), #ffffff);
    position: relative;
    box-shadow: 0 2px 8px rgba(214, 48, 49, 0.08);
}

.checkpoint-section .solution-card::before {
    background: linear-gradient(90deg, transparent, rgba(214, 48, 49, 0.08), transparent);
}

.checkpoint-section .solution-card:hover {
    border-color: #d63031;
    box-shadow: 0 15px 40px rgba(214, 48, 49, 0.22);
    background: linear-gradient(135deg, rgba(214, 48, 49, 0.08), #ffffff);
}

.checkpoint-section .solution-icon {
    background: linear-gradient(135deg, rgba(229, 62, 62, 0.1), rgba(197, 48, 48, 0.06));
    color: #c53030;
}

.checkpoint-section .solution-card:hover .solution-icon {
    background: linear-gradient(135deg, #e53e3e, #c53030);
    color: white;
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.35);
}

.checkpoint-section .solution-card.solution-highlight {
    border-color: #e53e3e;
    background: linear-gradient(135deg, rgba(229, 62, 62, 0.06), #ffffff);
    box-shadow: 0 8px 30px rgba(229, 62, 62, 0.12);
}

/* Cisco Section Styling */
.cisco-section {
    background: linear-gradient(135deg, #f8fcff 0%, #ffffff 50%, #f0faff 100%);
    border-left: 6px solid #00bceb;
    position: relative;
}

.cisco-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at bottom right, rgba(0, 188, 235, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.cisco-section .vendor-title {
    color: #0078d4;
    position: relative;
}

.cisco-section .vendor-title::after {
    background: linear-gradient(135deg, #00bceb, #0078d4);
}

.cisco-section .vendor-description {
    color: #2c5aa0;
}

.cisco-section .solution-card {
    border: 2px solid rgba(0, 188, 235, 0.12);
    background: linear-gradient(135deg, rgba(0, 188, 235, 0.02), #ffffff);
    position: relative;
}

.cisco-section .solution-card::before {
    background: linear-gradient(90deg, transparent, rgba(0, 188, 235, 0.06), transparent);
}

.cisco-section .solution-card:hover {
    border-color: #00bceb;
    box-shadow: 0 15px 40px rgba(0, 188, 235, 0.18);
    background: linear-gradient(135deg, rgba(0, 188, 235, 0.04), #ffffff);
}

.cisco-section .solution-icon {
    background: linear-gradient(135deg, rgba(0, 188, 235, 0.08), rgba(0, 120, 212, 0.05));
    color: #0078d4;
}

.cisco-section .solution-card:hover .solution-icon {
    background: linear-gradient(135deg, #00bceb, #0078d4);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 188, 235, 0.35);
}

.cisco-section .solution-card.solution-highlight {
    border-color: #00bceb;
    background: linear-gradient(135deg, rgba(0, 188, 235, 0.05), #ffffff);
    box-shadow: 0 8px 30px rgba(0, 188, 235, 0.12);
}

.vendor-header {
    text-align: center;
    margin-bottom: 60px;
}

.vendor-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    color: #0a0a23;
    margin-bottom: 20px;
    position: relative;
}

.vendor-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.vendor-description {
    font-size: 18px;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.vendor-solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.solution-card {
    background: white;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.solution-card:hover {
    transform: translateY(-8px);
    border-color: #ff6b35;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
}

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

.solution-card.solution-highlight {
    border-color: #ff6b35;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03), white);
}

.solution-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.solution-card:hover .solution-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.solution-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0a0a23;
    margin-bottom: 15px;
    line-height: 1.3;
}

.solution-card p {
    color: #666666;
    font-size: 16px;
    line-height: 1.6;
}

/* Different Approach Section */
.different-approach-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a3a 100%);
    color: white;
}

.different-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.different-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.different-item:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

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

.different-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.different-item:hover .different-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.different-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.different-item p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.6;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .security-vendor-section {
        padding: 60px 0;
    }

    .vendor-solutions-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .solution-card {
        padding: 25px 20px;
    }

    .different-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .different-item {
        padding: 25px 20px;
    }
}

/* Security Services Grid - Three Column Layout */
.security-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.security-services-grid .service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.security-services-grid .service-card:hover {
    transform: translateY(-8px);
    border: 2px solid rgba(255, 107, 53, 0.8);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 107, 53, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.security-services-grid .service-card .service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #ff6b35;
    transition: all 0.3s ease;
}

.security-services-grid .service-card:hover .service-icon {
    color: #f7931e;
    transform: scale(1.1);
}

.security-services-grid .service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    line-height: 1.3;
}

.security-services-grid .service-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.6;
    flex-grow: 1;
}

/* Responsive Design for Security Services */
@media (max-width: 1024px) {
    .security-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .security-services-grid .service-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .security-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .security-services-grid .service-card:nth-child(3) {
        grid-column: auto;
        max-width: none;
    }

    .security-services-grid .service-card {
        min-height: 240px;
        padding: 25px 20px;
    }
}

/* Benefits Grid for Why Choose sections */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border: 2px solid rgba(255, 107, 53, 0.8);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 107, 53, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.benefit-check {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.benefit-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
    line-height: 1.3;
}

.benefit-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-card {
        padding: 25px 20px;
    }
}

/* Blog Article Styles */
.blog-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: -70px;
    padding-top: 70px;
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a3a 100%) !important;
}

.blog-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.blog-hero-background svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.animated-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(255, 107, 53, 0.15) 0%, 
        rgba(247, 147, 30, 0.12) 25%, 
        rgba(52, 152, 219, 0.08) 50%, 
        rgba(155, 89, 182, 0.1) 75%, 
        rgba(255, 107, 53, 0.15) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 50%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.particle-1 {
    width: 8px;
    height: 8px;
    top: 20%;
    left: 10%;
    animation: float1 20s ease-in-out infinite;
}

.particle-2 {
    width: 6px;
    height: 6px;
    top: 60%;
    left: 80%;
    animation: float2 25s ease-in-out infinite;
}

.particle-3 {
    width: 10px;
    height: 10px;
    top: 80%;
    left: 20%;
    animation: float3 18s ease-in-out infinite;
}

.particle-4 {
    width: 4px;
    height: 4px;
    top: 30%;
    left: 70%;
    animation: float4 22s ease-in-out infinite;
}

.particle-5 {
    width: 7px;
    height: 7px;
    top: 70%;
    left: 60%;
    animation: float5 16s ease-in-out infinite;
}

.particle-6 {
    width: 5px;
    height: 5px;
    top: 40%;
    left: 30%;
    animation: float6 24s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.3; }
    25% { transform: translateY(-30px) translateX(20px) scale(1.2); opacity: 0.6; }
    50% { transform: translateY(-60px) translateX(-10px) scale(0.8); opacity: 0.4; }
    75% { transform: translateY(-20px) translateX(30px) scale(1.1); opacity: 0.7; }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.4; }
    33% { transform: translateY(40px) translateX(-25px) scale(1.3); opacity: 0.2; }
    66% { transform: translateY(-25px) translateX(15px) scale(0.9); opacity: 0.5; }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.3; }
    50% { transform: translateY(-40px) translateX(-20px) scale(1.4); opacity: 0.6; }
}

@keyframes float4 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.5; }
    20% { transform: translateY(-15px) translateX(25px) scale(1.1); opacity: 0.3; }
    40% { transform: translateY(30px) translateX(-15px) scale(0.8); opacity: 0.7; }
    60% { transform: translateY(-25px) translateX(10px) scale(1.2); opacity: 0.4; }
    80% { transform: translateY(15px) translateX(-20px) scale(0.9); opacity: 0.6; }
}

@keyframes float5 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.4; }
    25% { transform: translateY(20px) translateX(-30px) scale(1.3); opacity: 0.2; }
    75% { transform: translateY(-35px) translateX(20px) scale(0.7); opacity: 0.6; }
}

@keyframes float6 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.3; }
    40% { transform: translateY(-50px) translateX(35px) scale(1.5); opacity: 0.5; }
    80% { transform: translateY(25px) translateX(-25px) scale(0.8); opacity: 0.4; }
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-categories {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.blog-categories .category {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5), 0 2px 4px rgba(0, 0, 0, 0.3);
}

.blog-date {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin: 0;
}

.blog-content {
    background: #ffffff;
    color: #333333;
    padding: 80px 0;
    position: relative;
}

.blog-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    line-height: 1.8;
}

.blog-intro {
    font-size: 20px;
    font-weight: 500;
    color: #444444;
    margin-bottom: 40px;
    line-height: 1.7;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(247, 147, 30, 0.05));
    border-left: 4px solid #ff6b35;
    border-radius: 0 8px 8px 0;
}

.blog-article h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0a0a23;
    margin: 45px 0 25px 0;
    line-height: 1.3;
    position: relative;
    padding-bottom: 15px;
}

.blog-article h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.blog-article p {
    font-size: 18px;
    margin-bottom: 28px;
    color: #444444;
    line-height: 1.7;
    font-weight: 400;
}

.blog-highlight {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(247, 147, 30, 0.05));
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-left: 5px solid #ff6b35;
    border-radius: 12px;
    padding: 28px 32px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.08);
}

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

.blog-highlight:hover::before {
    left: 100%;
}

.blog-highlight p {
    margin: 0;
    font-weight: 600;
    color: #333333;
    font-size: 16px;
    font-style: italic;
}

.blog-list {
    padding-left: 0;
    list-style: none;
    margin: 30px 0;
}

.blog-list li {
    position: relative;
    padding: 12px 0 12px 35px;
    margin-bottom: 12px;
    color: #444444;
    font-size: 17px;
    line-height: 1.6;
}

.blog-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    color: #27ae60;
    font-weight: bold;
    font-size: 18px;
    background: rgba(39, 174, 96, 0.1);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.blog-cta {
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a3a 100%);
    color: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    margin: 50px 0 40px 0;
    position: relative;
    overflow: hidden;
}

.blog-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.blog-cta h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.blog-cta p {
    font-size: 16px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.blog-cta .cta-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.blog-cta .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.blog-navigation {
    background: #f8f9fa;
    padding: 60px 0;
    border-top: 1px solid #e9ecef;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.back-to-blog:hover {
    color: #f7931e;
    transform: translateX(-3px);
}

.related-articles h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0a0a23;
    margin-bottom: 30px;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.related-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.related-card:hover {
    border-color: #ff6b35;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.related-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0a0a23;
    margin-bottom: 12px;
    line-height: 1.4;
}

.related-card p {
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive Styles for Blog */
@media (max-width: 768px) {
    .blog-hero {
        height: 50vh;
        min-height: 400px;
    }

    .blog-title {
        font-size: 32px;
    }

    .blog-content {
        padding: 60px 0;
    }

    .blog-article {
        padding: 0 15px;
    }

    .blog-article h2 {
        font-size: 26px;
        margin: 35px 0 20px 0;
    }

    .blog-article p, .blog-intro {
        font-size: 16px;
    }

    .blog-highlight {
        padding: 20px;
        margin: 30px 0;
    }

    .blog-cta {
        padding: 30px 20px;
        margin: 40px 0 30px 0;
    }

    .blog-cta h3 {
        font-size: 24px;
    }

    .related-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Service card interactions with keyboard support */
document.addEventListener('DOMContentLoaded', function() {
    const serviceCards = document.querySelectorAll('.service-card');

    serviceCards.forEach(card => {
        // Make cards focusable
        card.setAttribute('tabindex', '0');
        card.setAttribute('role', 'button');

        // Add keyboard support
        card.addEventListener('keydown', function(e) {
            if (e.key === 'Enter' || e.key === ' ') {
                e.preventDefault();
                this.click();
            }
        });

        // Add aria labels for screen readers
        const serviceName = card.querySelector('h3').textContent;
        card.setAttribute('aria-label', `Learn more about ${serviceName}`);
    });
});

@media (max-width: 1024px) {
    .security-intro-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .security-intro-text {
        padding-right: 0;
        max-width: 800px;
        margin: 0 auto;
    }

    .security-highlights {
        max-width: 600px;
        margin: 40px auto 0;
    }
}

@media (max-width: 768px) {
    .security-intro-section {
        padding: 80px 0;
    }

    .security-intro-content {
        gap: 50px;    }

    .security-intro-text h2 {
        font-size: clamp(2rem, 6vw, 2.8rem);
        margin-bottom: 25px;
    }

    .security-intro-text h2::after {
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
    }

    .security-intro-text p {
        font-size: 17px;
        margin-bottom: 20px;
    }

    .security-intro-text p:first-of-type {
        font-size: 18px;
    }

    .security-visual {
        height: 300px;
    }

    .security-shield-container {
        width: 260px;
        height: 260px;
    }

    .shield-core {
        width: 70px;
        height: 70px;
    }

    .shield-core svg {
        width: 35px;
        height: 35px;
    }

    .security-highlights {
        gap: 15px;
        margin-top: 35px;
    }

    .highlight-item {
        padding: 18px 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .highlight-item:hover {
        transform: translateY(-3px);
    }

    .highlight-icon {
        font-size: 22px;
        padding: 10px;
    }

    .highlight-item span {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .security-intro-section {
        padding: 60px 0;
    }

    .security-intro-content {
        gap:40px;
    }

    .security-visual {
        height: 240px;
    }

    .security-shield-container {
        width: 200px;
        height: 200px;
    }

    .shield-core {
        width: 60px;
        height: 60px;
    }

    .shield-core svg {
        width: 30px;
        height: 30px;
    }

    .highlight-item {
        padding: 16px 18px;
    }
}

/* Vendor Sections Styling */
.security-vendor-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.security-vendor-section:nth-child(odd) {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

/* Check Point Section Styling */
.checkpoint-section {
    background: linear-gradient(135deg, #faf5f5 0%, #f5eeee 50%, #fbf8f8 100%);
    border-left: 6px solid #d63031;
    position: relative;
}

.checkpoint-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top left, rgba(214, 48, 49, 0.08) 0%, rgba(229, 62, 62, 0.02) 70%, transparent 100%);
    pointer-events: none;
}

.checkpoint-section .vendor-title {
    color: #c53030;
    position: relative;
}

.checkpoint-section .vendor-title::after {
    background: linear-gradient(135deg, #e53e3e, #c53030);
}

.checkpoint-section .vendor-description {
    color: #744210;
}

.checkpoint-section .solution-card {
    border: 2px solid rgba(214, 48, 49, 0.2);
    background: linear-gradient(135deg, rgba(214, 48, 49, 0.06), #ffffff);
    position: relative;
    box-shadow: 0 2px 8px rgba(214, 48, 49, 0.08);
}

.checkpoint-section .solution-card::before {
    background: linear-gradient(90deg, transparent, rgba(214, 48, 49, 0.08), transparent);
}

.checkpoint-section .solution-card:hover {
    border-color: #d63031;
    box-shadow: 0 15px 40px rgba(214, 48, 49, 0.22);
    background: linear-gradient(135deg, rgba(214, 48, 49, 0.08), #ffffff);
}

.checkpoint-section .solution-icon {
    background: linear-gradient(135deg, rgba(229, 62, 62, 0.1), rgba(197, 48, 48, 0.06));
    color: #c53030;
}

.checkpoint-section .solution-card:hover .solution-icon {
    background: linear-gradient(135deg, #e53e3e, #c53030);
    color: white;
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.35);
}

.checkpoint-section .solution-card.solution-highlight {
    border-color: #e53e3e;
    background: linear-gradient(135deg, rgba(229, 62, 62, 0.06), #ffffff);
    box-shadow: 0 8px 30px rgba(229, 62, 62, 0.12);
}

/* Cisco Section Styling */
.cisco-section {
    background: linear-gradient(135deg, #f8fcff 0%, #ffffff 50%, #f0faff 100%);
    border-left: 6px solid #00bceb;
    position: relative;
}

.cisco-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at bottom right, rgba(0, 188, 235, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.cisco-section .vendor-title {
    color: #0078d4;
    position: relative;
}

.cisco-section .vendor-title::after {
    background: linear-gradient(135deg, #00bceb, #0078d4);
}

.cisco-section .vendor-description {
    color: #2c5aa0;
}

.cisco-section .solution-card {
    border: 2px solid rgba(0, 188, 235, 0.12);
    background: linear-gradient(135deg, rgba(0, 188, 235, 0.02), #ffffff);
    position: relative;
}

.cisco-section .solution-card::before {
    background: linear-gradient(90deg, transparent, rgba(0, 188, 235, 0.06), transparent);
}

.cisco-section .solution-card:hover {
    border-color: #00bceb;
    box-shadow: 0 15px 40px rgba(0, 188, 235, 0.18);
    background: linear-gradient(135deg, rgba(0, 188, 235, 0.04), #ffffff);
}

.cisco-section .solution-icon {
    background: linear-gradient(135deg, rgba(0, 188, 235, 0.08), rgba(0, 120, 212, 0.05));
    color: #0078d4;
}

.cisco-section .solution-card:hover .solution-icon {
    background: linear-gradient(135deg, #00bceb, #0078d4);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 188, 235, 0.35);
}

.cisco-section .solution-card.solution-highlight {
    border-color: #00bceb;
    background: linear-gradient(135deg, rgba(0, 188, 235, 0.05), #ffffff);
    box-shadow: 0 8px 30px rgba(0, 188, 235, 0.12);
}

.vendor-header {
    text-align: center;
    margin-bottom: 60px;
}

.vendor-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    color: #0a0a23;
    margin-bottom: 20px;
    position: relative;
}

.vendor-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.vendor-description {
    font-size: 18px;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.vendor-solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.solution-card {
    background: white;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.solution-card:hover {
    transform: translateY(-8px);
    border-color: #ff6b35;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
}

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

.solution-card.solution-highlight {
    border-color: #ff6b35;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03), white);
}

.solution-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.solution-card:hover .solution-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.solution-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0a0a23;
    margin-bottom: 15px;
    line-height: 1.3;
}

.solution-card p {
    color: #666666;
    font-size: 16px;
    line-height: 1.6;
}

/* Different Approach Section */
.different-approach-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a3a 100%);
    color: white;
}

.different-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.different-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.different-item:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

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

.different-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.different-item:hover .different-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.different-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.different-item p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.6;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .security-vendor-section {
        padding: 60px 0;
    }

    .vendor-solutions-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .solution-card {
        padding: 25px 20px;
    }

    .different-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .different-item {
        padding: 25px 20px;
    }
}

/* Security Services Grid - Three Column Layout */
.security-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.security-services-grid .service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.security-services-grid .service-card:hover {
    transform: translateY(-8px);
    border: 2px solid rgba(255, 107, 53, 0.8);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 107, 53, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.security-services-grid .service-card .service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #ff6b35;
    transition: all 0.3s ease;
}

.security-services-grid .service-card:hover .service-icon {
    color: #f7931e;
    transform: scale(1.1);
}

.security-services-grid .service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    line-height: 1.3;
}

.security-services-grid .service-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.6;
    flex-grow: 1;
}

/* Responsive Design for Security Services */
@media (max-width: 1024px) {
    .security-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .security-services-grid .service-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .security-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .security-services-grid .service-card:nth-child(3) {
        grid-column: auto;
        max-width: none;
    }

    .security-services-grid .service-card {
        min-height: 240px;
        padding: 25px 20px;
    }
}

/* Benefits Grid for Why Choose sections */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border: 2px solid rgba(255, 107, 53, 0.8);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 107, 53, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.benefit-check {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.benefit-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
    line-height: 1.3;
}

.benefit-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-card {
        padding: 25px 20px;
    }
}

/* Blog Article Styles */
.blog-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: -70px;
    padding-top: 70px;
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a3a 100%) !important;
}

.blog-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.blog-hero-background svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.animated-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(255, 107, 53, 0.15) 0%, 
        rgba(247, 147, 30, 0.12) 25%, 
        rgba(52, 152, 219, 0.08) 50%, 
        rgba(155, 89, 182, 0.1) 75%, 
        rgba(255, 107, 53, 0.15) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 50%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.particle-1 {
    width: 8px;
    height: 8px;
    top: 20%;
    left: 10%;
    animation: float1 20s ease-in-out infinite;
}

.particle-2 {
    width: 6px;
    height: 6px;
    top: 60%;
    left: 80%;
    animation: float2 25s ease-in-out infinite;
}

.particle-3 {
    width: 10px;
    height: 10px;
    top: 80%;
    left: 20%;
    animation: float3 18s ease-in-out infinite;
}

.particle-4 {
    width: 4px;
    height: 4px;
    top: 30%;
    left: 70%;
    animation: float4 22s ease-in-out infinite;
}

.particle-5 {
    width: 7px;
    height: 7px;
    top: 70%;
    left: 60%;
    animation: float5 16s ease-in-out infinite;
}

.particle-6 {
    width: 5px;
    height: 5px;
    top: 40%;
    left: 30%;
    animation: float6 24s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.3; }
    25% { transform: translateY(-30px) translateX(20px) scale(1.2); opacity: 0.6; }
    50% { transform: translateY(-60px) translateX(-10px) scale(0.8); opacity: 0.4; }
    75% { transform: translateY(-20px) translateX(30px) scale(1.1); opacity: 0.7; }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.4; }
    33% { transform: translateY(40px) translateX(-25px) scale(1.3); opacity: 0.2; }
    66% { transform: translateY(-25px) translateX(15px) scale(0.9); opacity: 0.5; }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.3; }
    50% { transform: translateY(-40px) translateX(-20px) scale(1.4); opacity: 0.6; }
}

@keyframes float4 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.5; }
    20% { transform: translateY(-15px) translateX(25px) scale(1.1); opacity: 0.3; }
    40% { transform: translateY(30px) translateX(-15px) scale(0.8); opacity: 0.7; }
    60% { transform: translateY(-25px) translateX(10px) scale(1.2); opacity: 0.4; }
    80% { transform: translateY(15px) translateX(-20px) scale(0.9); opacity: 0.6; }
}

@keyframes float5 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.4; }
    25% { transform: translateY(20px) translateX(-30px) scale(1.3); opacity: 0.2; }
    75% { transform: translateY(-35px) translateX(20px) scale(0.7); opacity: 0.6; }
}

@keyframes float6 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.3; }
    40% { transform: translateY(-50px) translateX(35px) scale(1.5); opacity: 0.5; }
    80% { transform: translateY(25px) translateX(-25px) scale(0.8); opacity: 0.4; }
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-categories {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.blog-categories .category {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5), 0 2px 4px rgba(0, 0, 0, 0.3);
}

.blog-date {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin: 0;
}

.blog-content {
    background: #ffffff;
    color: #333333;
    padding: 80px 0;
    position: relative;
}

.blog-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    line-height: 1.8;
}

.blog-intro {
    font-size: 20px;
    font-weight: 500;
    color: #444444;
    margin-bottom: 40px;
    line-height: 1.7;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(247, 147, 30, 0.05));
    border-left: 4px solid #ff6b35;
    border-radius: 0 8px 8px 0;
}

.blog-article h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0a0a23;
    margin: 45px 0 25px 0;
    line-height: 1.3;
    position: relative;
    padding-bottom: 15px;
}

.blog-article h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.blog-article p {
    font-size: 18px;
    margin-bottom: 28px;
    color: #444444;
    line-height: 1.7;
    font-weight: 400;
}

.blog-highlight {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(247, 147, 30, 0.05));
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-left: 5px solid #ff6b35;
    border-radius: 12px;
    padding: 28px 32px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.08);
}

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

.blog-highlight:hover::before {
    left: 100%;
}

.blog-highlight p {
    margin: 0;
    font-weight: 600;
    color: #333333;
    font-size: 16px;
    font-style: italic;
}

.blog-list {
    padding-left: 0;
    list-style: none;
    margin: 30px 0;
}

.blog-list li {
    position: relative;
    padding: 12px 0 12px 35px;
    margin-bottom: 12px;
    color: #444444;
    font-size: 17px;
    line-height: 1.6;
}

.blog-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    color: #27ae60;
    font-weight: bold;
    font-size: 18px;
    background: rgba(39, 174, 96, 0.1);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.blog-cta {
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a3a 100%);
    color: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    margin: 50px 0 40px 0;
    position: relative;
    overflow: hidden;
}

.blog-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.blog-cta h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.blog-cta p {
    font-size: 16px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.blog-cta .cta-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.blog-cta .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.blog-navigation {
    background: #f8f9fa;
    padding: 60px 0;
    border-top: 1px solid #e9ecef;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.back-to-blog:hover {
    color: #f7931e;
    transform: translateX(-3px);
}

.related-articles h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0a0a23;
    margin-bottom: 30px;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.related-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.related-card:hover {
    border-color: #ff6b35;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.related-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0a0a23;
    margin-bottom: 12px;
    line-height: 1.4;
}

.related-card p {
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive Styles for Blog */
@media (max-width: 768px) {
    .blog-hero {
        height: 50vh;
        min-height: 400px;
    }

    .blog-title {
        font-size: 32px;
    }

    .blog-content {
        padding: 60px 0;
    }

    .blog-article {
        padding: 0 15px;
    }

    .blog-article h2 {
        font-size: 26px;
        margin: 35px 0 20px 0;
    }

    .blog-article p, .blog-intro {
        font-size: 16px;
    }

    .blog-highlight {
        padding: 20px;
        margin: 30px 0;
    }

    .blog-cta {
        padding: 30px 20px;
        margin: 40px 0 30px 0;
    }

    .blog-cta h3 {
        font-size: 24px;
    }

    .related-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Service card interactions with keyboard support */
document.addEventListener('DOMContentLoaded', function() {
    const serviceCards = document.querySelectorAll('.service-card');

    serviceCards.forEach(card => {
        // Make cards focusable
        card.setAttribute('tabindex', '0');
        card.setAttribute('role', 'button');

        // Add keyboard support
        card.addEventListener('keydown', function(e) {
            if (e.key === 'Enter' || e.key === ' ') {
                e.preventDefault();
                this.click();
            }
        });

        // Add aria labels for screen readers
        const serviceName = card.querySelector('h3').textContent;
        card.setAttribute('aria-label', `Learn more about ${serviceName}`);
    });
});

@media (max-width: 1024px) {
    .security-intro-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .security-intro-text {
        padding-right: 0;
        max-width: 800px;
        margin: 0 auto;
    }

    .security-highlights {
        max-width: 600px;
        margin: 40px auto 0;
    }
}

@media (max-width: 768px) {
    .security-intro-section {
        padding: 80px 0;
    }

    .security-intro-content {
        gap: 50px;    }

    .security-intro-text h2 {
        font-size: clamp(2rem, 6vw, 2.8rem);
        margin-bottom: 25px;
    }

    .security-intro-text h2::after {
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
    }

    .security-intro-text p {
        font-size: 17px;
        margin-bottom: 20px;
    }

    .security-intro-text p:first-of-type {
        font-size: 18px;
    }

    .security-visual {
        height: 300px;
    }

    .security-shield-container {
        width: 260px;
        height: 260px;
    }

    .shield-core {
        width: 70px;
        height: 70px;
    }

    .shield-core svg {
        width: 35px;
        height: 35px;
    }

    .security-highlights {
        gap: 15px;
        margin-top: 35px;
    }

    .highlight-item {
        padding: 18px 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .highlight-item:hover {
        transform: translateY(-3px);
    }

    .highlight-icon {
        font-size: 22px;
        padding: 10px;
    }

    .highlight-item span {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .security-intro-section {
        padding: 60px 0;
    }

    .security-intro-content {
        gap:40px;
    }

    .security-visual {
        height: 240px;
    }

    .security-shield-container {
        width: 200px;
        height: 200px;
    }

    .shield-core {
        width: 60px;
        height: 60px;
    }

    .shield-core svg {
        width: 30px;
        height: 30px;
    }

    .highlight-item {
        padding: 16px 18px;
    }
}

/* Vendor Sections Styling */
.security-vendor-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.security-vendor-section:nth-child(odd) {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

/* Check Point Section Styling */
.checkpoint-section {
    background: linear-gradient(135deg, #faf5f5 0%, #f5eeee 50%, #fbf8f8 100%);
    border-left: 6px solid #d63031;
    position: relative;
}

.checkpoint-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top left, rgba(214, 48, 49, 0.08) 0%, rgba(229, 62, 62, 0.02) 70%, transparent 100%);
    pointer-events: none;
}

.checkpoint-section .vendor-title {
    color: #c53030;
    position: relative;
}

.checkpoint-section .vendor-title::after {
    background: linear-gradient(135deg, #e53e3e, #c53030);
}

.checkpoint-section .vendor-description {
    color: #744210;
}

.checkpoint-section .solution-card {
    border: 2px solid rgba(214, 48, 49, 0.2);
    background: linear-gradient(135deg, rgba(214, 48, 49, 0.06), #ffffff);
    position: relative;
    box-shadow: 0 2px 8px rgba(214, 48, 49, 0.08);
}

.checkpoint-section .solution-card::before {
    background: linear-gradient(90deg, transparent, rgba(214, 48, 49, 0.08), transparent);
}

.checkpoint-section .solution-card:hover {
    border-color: #d63031;
    box-shadow: 0 15px 40px rgba(214, 48, 49, 0.22);
    background: linear-gradient(135deg, rgba(214, 48, 49, 0.08), #ffffff);
}

.checkpoint-section .solution-icon {
    background: linear-gradient(135deg, rgba(229, 62, 62, 0.1), rgba(197, 48, 48, 0.06));
    color: #c53030;
}

.checkpoint-section .solution-card:hover .solution-icon {
    background: linear-gradient(135deg, #e53e3e, #c53030);
    color: white;
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.35);
}

.checkpoint-section .solution-card.solution-highlight {
    border-color: #e53e3e;
    background: linear-gradient(135deg, rgba(229, 62, 62, 0.06), #ffffff);
    box-shadow: 0 8px 30px rgba(229, 62, 62, 0.12);
}

/* Cisco Section Styling */
.cisco-section {
    background: linear-gradient(135deg, #f8fcff 0%, #ffffff 50%, #f0faff 100%);
    border-left: 6px solid #00bceb;
    position: relative;
}

.cisco-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at bottom right, rgba(0, 188, 235, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.cisco-section .vendor-title {
    color: #0078d4;
    position: relative;
}

.cisco-section .vendor-title::after {
    background: linear-gradient(135deg, #00bceb, #0078d4);
}

.cisco-section .vendor-description {
    color: #2c5aa0;
}

.cisco-section .solution-card {
    border: 2px solid rgba(0, 188, 235, 0.12);
    background: linear-gradient(135deg, rgba(0, 188, 235, 0.02), #ffffff);
    position: relative;
}

.cisco-section .solution-card::before {
    background: linear-gradient(90deg, transparent, rgba(0, 188, 235, 0.06), transparent);
}

.cisco-section .solution-card:hover {
    border-color: #00bceb;
    box-shadow: 0 15px 40px rgba(0, 188, 235, 0.18);
    background: linear-gradient(135deg, rgba(0, 188, 235, 0.04), #ffffff);
}

.cisco-section .solution-icon {
    background: linear-gradient(135deg, rgba(0, 188, 235, 0.08), rgba(0, 120, 212, 0.05));
    color: #0078d4;
}

.cisco-section .solution-card:hover .solution-icon {
    background: linear-gradient(135deg, #00bceb, #0078d4);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 188, 235, 0.35);
}

.cisco-section .solution-card.solution-highlight {
    border-color: #00bceb;
    background: linear-gradient(135deg, rgba(0, 188, 235, 0.05), #ffffff);
    box-shadow: 0 8px 30px rgba(0, 188, 235, 0.12);
}

.vendor-header {
    text-align: center;
    margin-bottom: 60px;
}

.vendor-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    color: #0a0a23;
    margin-bottom: 20px;
    position: relative;
}

.vendor-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.vendor-description {
    font-size: 18px;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.vendor-solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.solution-card {
    background: white;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.solution-card:hover {
    transform: translateY(-8px);
    border-color: #ff6b35;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
}

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

.solution-card.solution-highlight {
    border-color: #ff6b35;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03), white);
}

.solution-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.solution-card:hover .solution-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.solution-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0a0a23;
    margin-bottom: 15px;
    line-height: 1.3;
}

.solution-card p {
    color: #666666;
    font-size: 16px;
    line-height: 1.6;
}

/* Different Approach Section */
.different-approach-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a3a 100%);
    color: white;
}

.different-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.different-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.different-item:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

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

.different-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.different-item:hover .different-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.different-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.different-item p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.6;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .security-vendor-section {
        padding: 60px 0;
    }

    .vendor-solutions-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .solution-card {
        padding: 25px 20px;
    }

    .different-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .different-item {
        padding: 25px 20px;
    }
}

/* Security Services Grid - Three Column Layout */
.security-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.security-services-grid .service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.security-services-grid .service-card:hover {
    transform: translateY(-8px);
    border: 2px solid rgba(255, 107, 53, 0.8);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 107, 53, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.security-services-grid .service-card .service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #ff6b35;
    transition: all 0.3s ease;
}

.security-services-grid .service-card:hover .service-icon {
    color: #f7931e;
    transform: scale(1.1);
}

.security-services-grid .service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    line-height: 1.3;
}

.security-services-grid .service-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.6;
    flex-grow: 1;
}

/* Responsive Design for Security Services */
@media (max-width: 1024px) {
    .security-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .security-services-grid .service-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .security-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .security-services-grid .service-card:nth-child(3) {
        grid-column: auto;
        max-width: none;
    }

    .security-services-grid .service-card {
        min-height: 240px;
        padding: 25px 20px;
    }
}

/* Benefits Grid for Why Choose sections */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border: 2px solid rgba(255, 107, 53, 0.8);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 107, 53, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.benefit-check {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.benefit-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
    line-height: 1.3;
}

.benefit-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-card {
        padding: 25px 20px;
    }
}

/* Blog Article Styles */
.blog-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: -70px;
    padding-top: 70px;
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a3a 100%) !important;
}

.blog-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.blog-hero-background svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.animated-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(255, 107, 53, 0.15) 0%, 
        rgba(247, 147, 30, 0.12) 25%, 
        rgba(52, 152, 219, 0.08) 50%, 
        rgba(155, 89, 182, 0.1) 75%, 
        rgba(255, 107, 53, 0.15) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 50%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.particle-1 {
    width: 8px;
    height: 8px;
    top: 20%;
    left: 10%;
    animation: float1 20s ease-in-out infinite;
}

.particle-2 {
    width: 6px;
    height: 6px;
    top: 60%;
    left: 80%;
    animation: float2 25s ease-in-out infinite;
}

.particle-3 {
    width: 10px;
    height: 10px;
    top: 80%;
    left: 20%;
    animation: float3 18s ease-in-out infinite;
}

.particle-4 {
    width: 4px;
    height: 4px;
    top: 30%;
    left: 70%;
    animation: float4 22s ease-in-out infinite;
}

.particle-5 {
    width: 7px;
    height: 7px;
    top: 70%;
    left: 60%;
    animation: float5 16s ease-in-out infinite;
}

.particle-6 {
    width: 5px;
    height: 5px;
    top: 40%;
    left: 30%;
    animation: float6 24s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.3; }
    25% { transform: translateY(-30px) translateX(20px) scale(1.2); opacity: 0.6; }
    50% { transform: translateY(-60px) translateX(-10px) scale(0.8); opacity: 0.4; }
    75% { transform: translateY(-20px) translateX(30px) scale(1.1); opacity: 0.7; }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.4; }
    33% { transform: translateY(40px) translateX(-25px) scale(1.3); opacity: 0.2; }
    66% { transform: translateY(-25px) translateX(15px) scale(0.9); opacity: 0.5; }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.3; }
    50% { transform: translateY(-40px) translateX(-20px) scale(1.4); opacity: 0.6; }
}

@keyframes float4 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.5; }
    20% { transform: translateY(-15px) translateX(25px) scale(1.1); opacity: 0.3; }
    40% { transform: translateY(30px) translateX(-15px) scale(0.8); opacity: 0.7; }
    60% { transform: translateY(-25px) translateX(10px) scale(1.2); opacity: 0.4; }
    80% { transform: translateY(15px) translateX(-20px) scale(0.9); opacity: 0.6; }
}

@keyframes float5 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.4; }
    25% { transform: translateY(20px) translateX(-30px) scale(1.3); opacity: 0.2; }
    75% { transform: translateY(-35px) translateX(20px) scale(0.7); opacity: 0.6; }
}

@keyframes float6 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.3; }
    40% { transform: translateY(-50px) translateX(35px) scale(1.5); opacity: 0.5; }
    80% { transform: translateY(25px) translateX(-25px) scale(0.8); opacity: 0.4; }
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-categories {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.blog-categories .category {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5), 0 2px 4px rgba(0, 0, 0, 0.3);
}

.blog-date {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin: 0;
}

.blog-content {
    background: #ffffff;
    color: #333333;
    padding: 80px 0;
    position: relative;
}

.blog-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    line-height: 1.8;
}

.blog-intro {
    font-size: 20px;
    font-weight: 500;
    color: #444444;
    margin-bottom: 40px;
    line-height: 1.7;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(247, 147, 30, 0.05));
    border-left: 4px solid #ff6b35;
    border-radius: 0 8px 8px 0;
}

.blog-article h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0a0a23;
    margin: 45px 0 25px 0;
    line-height: 1.3;
    position: relative;
    padding-bottom: 15px;
}

.blog-article h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.blog-article p {
    font-size: 18px;
    margin-bottom: 28px;
    color: #444444;
    line-height: 1.7;
    font-weight: 400;
}

.blog-highlight {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(247, 147, 30, 0.05));
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-left: 5px solid #ff6b35;
    border-radius: 12px;
    padding: 28px 32px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.08);
}

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

.blog-highlight:hover::before {
    left: 100%;
}

.blog-highlight p {
    margin: 0;
    font-weight: 600;
    color: #333333;
    font-size: 16px;
    font-style: italic;
}

.blog-list {
    padding-left: 0;
    list-style: none;
    margin: 30px 0;
}

.blog-list li {
    position: relative;
    padding: 12px 0 12px 35px;
    margin-bottom: 12px;
    color: #444444;
    font-size: 17px;
    line-height: 1.6;
}

.blog-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    color: #27ae60;
    font-weight: bold;
    font-size: 18px;
    background: rgba(39, 174, 96, 0.1);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.blog-cta {
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a3a 100%);
    color: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    margin: 50px 0 40px 0;
    position: relative;
    overflow: hidden;
}

.blog-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.blog-cta h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.blog-cta p {
    font-size: 16px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.blog-cta .cta-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.blog-cta .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.blog-navigation {
    background: #f8f9fa;
    padding: 60px 0;
    border-top: 1px solid #e9ecef;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.back-to-blog:hover {
    color: #f7931e;
    transform: translateX(-3px);
}

.related-articles h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0a0a23;
    margin-bottom: 30px;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.related-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.related-card:hover {
    border-color: #ff6b35;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.related-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0a0a23;
    margin-bottom: 12px;
    line-height: 1.4;
}

.related-card p {
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive Styles for Blog */
@media (max-width: 768px) {
    .blog-hero {
        height: 50vh;
        min-height: 400px;
    }

    .blog-title {
        font-size: 32px;
    }

    .blog-content {
        padding: 60px 0;
    }

    .blog-article {
        padding: 0 15px;
    }

    .blog-article h2 {
        font-size: 26px;
        margin: 35px 0 20px 0;
    }

    .blog-article p, .blog-intro {
        font-size: 16px;
    }

    .blog-highlight {
        padding: 20px;
        margin: 30px 0;
    }

    .blog-cta {
        padding: 30px 20px;
        margin: 40px 0 30px 0;
    }

    .blog-cta h3 {
        font-size: 24px;
    }

    .related-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Service card interactions with keyboard support */
document.addEventListener('DOMContentLoaded', function() {
    const serviceCards = document.querySelectorAll('.service-card');

    serviceCards.forEach(card => {
        // Make cards focusable
        card.setAttribute('tabindex', '0');
        card.setAttribute('role', 'button');

        // Add keyboard support
        card.addEventListener('keydown', function(e) {
            if (e.key === 'Enter' || e.key === ' ') {
                e.preventDefault();
                this.click();
            }
        });

        // Add aria labels for screen readers
        const serviceName = card.querySelector('h3').textContent;
        card.setAttribute('aria-label', `Learn more about ${serviceName}`);
    });
});

@media (max-width: 1024px) {
    .security-intro-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .security-intro-text {
        padding-right: 0;
        max-width: 800px;
        margin: 0 auto;
    }

    .security-highlights {
        max-width: 600px;
        margin: 40px auto 0;
    }
}

@media (max-width: 768px) {
    .security-intro-section {
        padding: 80px 0;
    }

    .security-intro-content {
        gap: 50px;    }

    .security-intro-text h2 {
        font-size: clamp(2rem, 6vw, 2.8rem);
        margin-bottom: 25px;
    }

    .security-intro-text h2::after {
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
    }

    .security-intro-text p {
        font-size: 17px;
        margin-bottom: 20px;
    }

    .security-intro-text p:first-of-type {
        font-size: 18px;
    }

    .security-visual {
        height: 300px;
    }

    .security-shield-container {
        width: 260px;
        height: 260px;
    }

    .shield-core {
        width: 70px;
        height: 70px;
    }

    .shield-core svg {
        width: 35px;
        height: 35px;
    }

    .security-highlights {
        gap: 15px;
        margin-top: 35px;
    }

    .highlight-item {
        padding: 18px 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .highlight-item:hover {
        transform: translateY(-3px);
    }

    .highlight-icon {
        font-size: 22px;
        padding: 10px;
    }

    .highlight-item span {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .security-intro-section {
        padding: 60px 0;
    }

    .security-intro-content {
        gap:40px;
    }

    .security-visual {
        height: 240px;
    }

    .security-shield-container {
        width: 200px;
        height: 200px;
    }

    .shield-core {
        width: 60px;
        height: 60px;
    }

    .shield-core svg {
        width: 30px;
        height: 30px;
    }

    .highlight-item {
        padding: 16px 18px;
    }
}

/* Vendor Sections Styling */
.security-vendor-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.security-vendor-section:nth-child(odd) {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

/* Check Point Section Styling */
.checkpoint-section {
    background: linear-gradient(135deg, #faf5f5 0%, #f5eeee 50%, #fbf8f8 100%);
    border-left: 6px solid #d63031;
    position: relative;
}

.checkpoint-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top left, rgba(214, 48, 49, 0.08) 0%, rgba(229, 62, 62, 0.02) 70%, transparent 100%);
    pointer-events: none;
}

.checkpoint-section .vendor-title {
    color: #c53030;
    position: relative;
}

.checkpoint-section .vendor-title::after {
    background: linear-gradient(135deg, #e53e3e, #c53030);
}

.checkpoint-section .vendor-description {
    color: #744210;
}

.checkpoint-section .solution-card {
    border: 2px solid rgba(214, 48, 49, 0.2);
    background: linear-gradient(135deg, rgba(214, 48, 49, 0.06), #ffffff);
    position: relative;
    box-shadow: 0 2px 8px rgba(214, 48, 49, 0.08);
}

.checkpoint-section .solution-card::before {
    background: linear-gradient(90deg, transparent, rgba(214, 48, 49, 0.08), transparent);
}

.checkpoint-section .solution-card:hover {
    border-color: #d63031;
    box-shadow: 0 15px 40px rgba(214, 48, 49, 0.22);
    background: linear-gradient(135deg, rgba(214, 48, 49, 0.08), #ffffff);
}

.checkpoint-section .solution-icon {
    background: linear-gradient(135deg, rgba(229, 62, 62, 0.1), rgba(197, 48, 48, 0.06));
    color: #c53030;
}

.checkpoint-section .solution-card:hover .solution-icon {
    background: linear-gradient(135deg, #e53e3e, #c53030);
    color: white;
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.35);
}

.checkpoint-section .solution-card.solution-highlight {
    border-color: #e53e3e;
    background: linear-gradient(135deg, rgba(229, 62, 62, 0.06), #ffffff);
    box-shadow: 0 8px 30px rgba(229, 62, 62, 0.12);
}

/* Cisco Section Styling */
.cisco-section {
    background: linear-gradient(135deg, #f8fcff 0%, #ffffff 50%, #f0faff 100%);
    border-left: 6px solid #00bceb;
    position: relative;
}

.cisco-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at bottom right, rgba(0, 188, 235, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.cisco-section .vendor-title {
    color: #0078d4;
    position: relative;
}

.cisco-section .vendor-title::after {
    background: linear-gradient(135deg, #00bceb, #0078d4);
}

.cisco-section .vendor-description {
    color: #2c5aa0;
}

.cisco-section .solution-card {
    border: 2px solid rgba(0, 188, 235, 0.12);
    background: linear-gradient(135deg, rgba(0, 188, 235, 0.02), #ffffff);
    position: relative;
}

.cisco-section .solution-card::before {
    background: linear-gradient(90deg, transparent, rgba(0, 188, 235, 0.06), transparent);
}

.cisco-section .solution-card:hover {
    border-color: #00bceb;
    box-shadow: 0 15px 40px rgba(0, 188, 235, 0.18);
    background: linear-gradient(135deg, rgba(0, 188, 235, 0.04), #ffffff);
}

.cisco-section .solution-icon {
    background: linear-gradient(135deg, rgba(0, 188, 235, 0.08), rgba(0, 120, 212, 0.05));
    color: #0078d4;
}

.cisco-section .solution-card:hover .solution-icon {
    background: linear-gradient(135deg, #00bceb, #0078d4);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 188, 235, 0.35);
}

.cisco-section .solution-card.solution-highlight {
    border-color: #00bceb;
    background: linear-gradient(135deg, rgba(0, 188, 235, 0.05), #ffffff);
    box-shadow: 0 8px 30px rgba(0, 188, 235, 0.12);
}

.vendor-header {
    text-align: center;
    margin-bottom: 60px;
}

.vendor-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    color: #0a0a23;
    margin-bottom: 20px;
    position: relative;
}

.vendor-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.vendor-description {
    font-size: 18px;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.vendor-solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.solution-card {
    background: white;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.solution-card:hover {
    transform: translateY(-8px);
    border-color: #ff6b35;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
}

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

.solution-card.solution-highlight {
    border-color: #ff6b35;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03), white);
}

.solution-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.solution-card:hover .solution-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.solution-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0a0a23;
    margin-bottom: 15px;
    line-height: 1.3;
}

.solution-card p {
    color: #666666;
    font-size: 16px;
    line-height: 1.6;
}

/* Different Approach Section */
.different-approach-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a3a 100%);
    color: white;
}

.different-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.different-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.different-item:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

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

.different-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.different-item:hover .different-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.different-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.different-item p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.6;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .security-vendor-section {
        padding: 60px 0;
    }

    .vendor-solutions-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .solution-card {
        padding: 25px 20px;
    }

    .different-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .different-item {
        padding: 25px 20px;
    }
}

/* Security Services Grid - Three Column Layout */
.security-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.security-services-grid .service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.security-services-grid .service-card:hover {
    transform: translateY(-8px);
    border: 2px solid rgba(255, 107, 53, 0.8);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 107, 53, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.security-services-grid .service-card .service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #ff6b35;
    transition: all 0.3s ease;
}

.security-services-grid .service-card:hover .service-icon {
    color: #f7931e;
    transform: scale(1.1);
}

.security-services-grid .service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    line-height: 1.3;
}

.security-services-grid .service-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.6;
    flex-grow: 1;
}

/* Responsive Design for Security Services */
@media (max-width: 1024px) {
    .security-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .security-services-grid .service-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .security-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .security-services-grid .service-card:nth-child(3) {
        grid-column: auto;
        max-width: none;
    }

    .security-services-grid .service-card {
        min-height: 240px;
        padding: 25px 20px;
    }
}

/* Benefits Grid for Why Choose sections */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border: 2px solid rgba(255, 107, 53, 0.8);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 107, 53, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.benefit-check {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.benefit-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
    line-height: 1.3;
}

.benefit-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-card {
        padding: 25px 20px;
    }
}

/* Blog Article Styles */
.blog-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: -70px;
    padding-top: 70px;
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a3a 100%) !important;
}

.blog-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.blog-hero-background svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.animated-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(255, 107, 53, 0.15) 0%, 
        rgba(247, 147, 30, 0.12) 25%, 
        rgba(52, 152, 219, 0.08) 50%, 
        rgba(155, 89, 182, 0.1) 75%, 
        rgba(255, 107, 53, 0.15) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 50%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.particle-1 {
    width: 8px;
    height: 8px;
    top: 20%;
    left: 10%;
    animation: float1 20s ease-in-out infinite;
}

.particle-2 {
    width: 6px;
    height: 6px;
    top: 60%;
    left: 80%;
    animation: float2 25s ease-in-out infinite;
}

.particle-3 {
    width: 10px;
    height: 10px;
    top: 80%;
    left: 20%;
    animation: float3 18s ease-in-out infinite;
}

.particle-4 {
    width: 4px;
    height: 4px;
    top: 30%;
    left: 70%;
    animation: float4 22s ease-in-out infinite;
}

.particle-5 {
    width: 7px;
    height: 7px;
    top: 70%;
    left: 60%;
    animation: float5 16s ease-in-out infinite;
}

.particle-6 {
    width: 5px;
    height: 5px;
    top: 40%;
    left: 30%;
    animation: float6 24s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.3; }
    25% { transform: translateY(-30px) translateX(20px) scale(1.2); opacity: 0.6; }
    50% { transform: translateY(-60px) translateX(-10px) scale(0.8); opacity: 0.4; }
    75% { transform: translateY(-20px) translateX(30px) scale(1.1); opacity: 0.7; }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.4; }
    33% { transform: translateY(40px) translateX(-25px) scale(1.3); opacity: 0.2; }
    66% { transform: translateY(-25px) translateX(15px) scale(0.9); opacity: 0.5; }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.3; }
    50% { transform: translateY(-40px) translateX(-20px) scale(1.4); opacity: 0.6; }
}

@keyframes float4 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.5; }
    20% { transform: translateY(-15px) translateX(25px) scale(1.1); opacity: 0.3; }
    40% { transform: translateY(30px) translateX(-15px) scale(0.8); opacity: 0.7; }
    60% { transform: translateY(-25px) translateX(10px) scale(1.2); opacity: 0.4; }
    80% { transform: translateY(15px) translateX(-20px) scale(0.9); opacity: 0.6; }
}

@keyframes float5 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.4; }
    25% { transform: translateY(20px) translateX(-30px) scale(1.3); opacity: 0.2; }
    75% { transform: translateY(-35px) translateX(20px) scale(0.7); opacity: 0.6; }
}

@keyframes float6 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.3; }
    40% { transform: translateY(-50px) translateX(35px) scale(1.5); opacity: 0.5; }
    80% { transform: translateY(25px) translateX(-25px) scale(0.8); opacity: 0.4; }
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-categories {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.blog-categories .category {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5), 0 2px 4px rgba(0, 0, 0, 0.3);
}

.blog-date {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin: 0;
}

.blog-content {
    background: #ffffff;
    color: #333333;
    padding: 80px 0;
    position: relative;
}

.blog-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    line-height: 1.8;
}

.blog-intro {
    font-size: 20px;
    font-weight: 500;
    color: #444444;
    margin-bottom: 40px;
    line-height: 1.7;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(247, 147, 30, 0.05));
    border-left: 4px solid #ff6b35;
    border-radius: 0 8px 8px 0;
}

.blog-article h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0a0a23;
    margin: 45px 0 25px 0;
    line-height: 1.3;
    position: relative;
    padding-bottom: 15px;
}

.blog-article h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.blog-article p {
    font-size: 18px;
    margin-bottom: 28px;
    color: #444444;
    line-height: 1.7;
    font-weight: 400;
}

.blog-highlight {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(247, 147, 30, 0.05));
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-left: 5px solid #ff6b35;
    border-radius: 12px;
    padding: 28px 32px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.08);
}

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

.blog-highlight:hover::before {
    left: 100%;
}

.blog-highlight p {
    margin: 0;
    font-weight: 600;
    color: #333333;
    font-size: 16px;
    font-style: italic;
}

.blog-list {
    padding-left: 0;
    list-style: none;
    margin: 30px 0;
}

.blog-list li {
    position: relative;
    padding: 12px 0 12px 35px;
    margin-bottom: 12px;
    color: #444444;
    font-size: 17px;
    line-height: 1.6;
}

.blog-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    color: #27ae60;
    font-weight: bold;
    font-size: 18px;
    background: rgba(39, 174, 96, 0.1);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.blog-cta {
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a3a 100%);
    color: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    margin: 50px 0 40px 0;
    position: relative;
    overflow: hidden;
}

.blog-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.blog-cta h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.blog-cta p {
    font-size: 16px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.blog-cta .cta-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.blog-cta .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.blog-navigation {
    background: #f8f9fa;
    padding: 60px 0;
    border-top: 1px solid #e9ecef;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.back-to-blog:hover {
    color: #f7931e;
    transform: translateX(-3px);
}

.related-articles h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0a0a23;
    margin-bottom: 30px;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.related-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.related-card:hover {
    border-color: #ff6b35;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.related-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0a0a23;
    margin-bottom: 12px;
    line-height: 1.4;
}

.related-card p {
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive Styles for Blog */
@media (max-width: 768px) {
    .blog-hero {
        height: 50vh;
        min-height: 400px;
    }

    .blog-title {
        font-size: 32px;
    }

    .blog-content {
        padding: 60px 0;
    }

    .blog-article {
        padding: 0 15px;
    }

    .blog-article h2 {
        font-size: 26px;
        margin: 35px 0 20px 0;
    }

    .blog-article p, .blog-intro {
        font-size: 16px;
    }

    .blog-highlight {
        padding: 20px;
        margin: 30px 0;
    }

    .blog-cta {
        padding: 30px 20px;
        margin: 40px 0 30px 0;
    }

    .blog-cta h3 {
        font-size: 24px;
    }

    .related-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Service card interactions with keyboard support */
document.addEventListener('DOMContentLoaded', function() {
    const serviceCards = document.querySelectorAll('.service-card');

    serviceCards.forEach(card => {
        // Make cards focusable
        card.setAttribute('tabindex', '0');
        card.setAttribute('role', 'button');

        // Add keyboard support
        card.addEventListener('keydown', function(e) {
            if (e.key === 'Enter' || e.key === ' ') {
                e.preventDefault();
                this.click();
            }
        });

        // Add aria labels for screen readers
        const serviceName = card.querySelector('h3').textContent;
        card.setAttribute('aria-label', `Learn more about ${serviceName}`);
    });
});

@media (max-width: 1024px) {
    .security-intro-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .security-intro-text {
        padding-right: 0;
        max-width: 800px;
        margin: 0 auto;
    }

    .security-highlights {
        max-width: 600px;
        margin: 40px auto 0;
    }
}

@media (max-width: 768px) {
    .security-intro-section {
        padding: 80px 0;
    }

    .security-intro-content {
        gap: 50px;    }

    .security-intro-text h2 {
        font-size: clamp(2rem, 6vw, 2.8rem);
        margin-bottom: 25px;
    }

    .security-intro-text h2::after {
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
    }

    .security-intro-text p {
        font-size: 17px;
        margin-bottom: 20px;
    }

    .security-intro-text p:first-of-type {
        font-size: 18px;
    }

    .security-visual {
        height: 300px;
    }

    .security-shield-container {
        width: 260px;
        height: 260px;
    }

    .shield-core {
        width: 70px;
        height: 70px;
    }

    .shield-core svg {
        width: 35px;
        height: 35px;
    }

    .security-highlights {
        gap: 15px;
        margin-top: 35px;
    }

    .highlight-item {
        padding: 18px 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .highlight-item:hover {
        transform: translateY(-3px);
    }

    .highlight-icon {
        font-size: 22px;
        padding: 10px;
    }

    .highlight-item span {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .security-intro-section {
        padding: 60px 0;
    }

    .security-intro-content {
        gap:40px;
    }

    .security-visual {
        height: 240px;
    }

    .security-shield-container {
        width: 200px;
        height: 200px;
    }

    .shield-core {
        width: 60px;
        height: 60px;
    }

    .shield-core svg {
        width: 30px;
        height: 30px;
    }

    .highlight-item {
        padding: 16px 18px;
    }
}

/* Vendor Sections Styling */
.security-vendor-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.security-vendor-section:nth-child(odd) {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

/* Check Point Section Styling */
.checkpoint-section {
    background: linear-gradient(135deg, #faf5f5 0%, #f5eeee 50%, #fbf8f8 100%);
    border-left: 6px solid #d63031;
    position: relative;
}

.checkpoint-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top left, rgba(214, 48, 49, 0.08) 0%, rgba(229, 62, 62, 0.02) 70%, transparent 100%);
    pointer-events: none;
}

.checkpoint-section .vendor-title {
    color: #c53030;
    position: relative;
}

.checkpoint-section .vendor-title::after {
    background: linear-gradient(135deg, #e53e3e, #c53030);
}

.checkpoint-section .vendor-description {
    color: #744210;
}

.checkpoint-section .solution-card {
    border: 2px solid rgba(214, 48, 49, 0.2);
    background: linear-gradient(135deg, rgba(214, 48, 49, 0.06), #ffffff);
    position: relative;
    box-shadow: 0 2px 8px rgba(214, 48, 49, 0.08);
}

.checkpoint-section .solution-card::before {
    background: linear-gradient(90deg, transparent, rgba(214, 48, 49, 0.08), transparent);
}

.checkpoint-section .solution-card:hover {
    border-color: #d63031;
    box-shadow: 0 15px 40px rgba(214, 48, 49, 0.22);
    background: linear-gradient(135deg, rgba(214, 48, 49, 0.08), #ffffff);
}

.checkpoint-section .solution-icon {
    background: linear-gradient(135deg, rgba(229, 62, 62, 0.1), rgba(197, 48, 48, 0.06));
    color: #c53030;
}

.checkpoint-section .solution-card:hover .solution-icon {
    background: linear-gradient(135deg, #e53e3e, #c53030);
    color: white;
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.35);
}

.checkpoint-section .solution-card.solution-highlight {
    border-color: #e53e3e;
    background: linear-gradient(135deg, rgba(229, 62, 62, 0.06), #ffffff);
    box-shadow: 0 8px 30px rgba(229, 62, 62, 0.12);
}

/* Cisco Section Styling */
.cisco-section {
    background: linear-gradient(135deg, #f8fcff 0%, #ffffff 50%, #f0faff 100%);
    border-left: 6px solid #00bceb;
    position: relative;
}

.cisco-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at bottom right, rgba(0, 188, 235, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.cisco-section .vendor-title {
    color: #0078d4;
    position: relative;
}

.cisco-section .vendor-title::after {
    background: linear-gradient(135deg, #00bceb, #0078d4);
}

.cisco-section .vendor-description {
    color: #2c5aa0;
}

.cisco-section .solution-card {
    border: 2px solid rgba(0, 188, 235, 0.12);
    background: linear-gradient(135deg, rgba(0, 188, 235, 0.02), #ffffff);
    position: relative;
}

.cisco-section .solution-card::before {
    background: linear-gradient(90deg, transparent, rgba(0, 188, 235, 0.06), transparent);
}

.cisco-section .solution-card:hover {
    border-color: #00bceb;
    box-shadow: 0 15px 40px rgba(0, 188, 235, 0.18);
    background: linear-gradient(135deg, rgba(0, 188, 235, 0.04), #ffffff);
}

.cisco-section .solution-icon {
    background: linear-gradient(135deg, rgba(0, 188, 235, 0.08), rgba(0, 120, 212, 0.05));
    color: #0078d4;
}

.cisco-section .solution-card:hover .solution-icon {
    background: linear-gradient(135deg, #00bceb, #0078d4);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 188, 235, 0.35);
}

.cisco-section .solution-card.solution-highlight {
    border-color: #00bceb;
    background: linear-gradient(135deg, rgba(0, 188, 235, 0.05), #ffffff);
    box-shadow: 0 8px 30px rgba(0, 188, 235, 0.12);
}

.vendor-header {
    text-align: center;
    margin-bottom: 60px;
}

.vendor-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    color: #0a0a23;
    margin-bottom: 20px;
    position: relative;
}

.vendor-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.vendor-description {
    font-size: 18px;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.vendor-solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.solution-card {
    background: white;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.solution-card:hover {
    transform: translateY(-8px);
    border-color: #ff6b35;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
}

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

.solution-card.solution-highlight {
    border-color: #ff6b35;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03), white);
}

.solution-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.solution-card:hover .solution-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.solution-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0a0a23;
    margin-bottom: 15px;
    line-height: 1.3;
}

.solution-card p {
    color: #666666;
    font-size: 16px;
    line-height: 1.6;
}

/* Different Approach Section */
.different-approach-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a3a 100%);
    color: white;
}

.different-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.different-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.different-item:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

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

.different-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.different-item:hover .different-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.different-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.different-item p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.6;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .security-vendor-section {
        padding: 60px 0;
    }

    .vendor-solutions-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .solution-card {
        padding: 25px 20px;
    }

    .different-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .different-item {
        padding: 25px 20px;
    }
}

/* Security Services Grid - Three Column Layout */
.security-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.security-services-grid .service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.security-services-grid .service-card:hover {
    transform: translateY(-8px);
    border: 2px solid rgba(255, 107, 53, 0.8);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 107, 53, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.security-services-grid .service-card .service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #ff6b35;
    transition: all 0.3s ease;
}

.security-services-grid .service-card:hover .service-icon {
    color: #f7931e;
    transform: scale(1.1);
}

.security-services-grid .service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    line-height: 1.3;
}

.security-services-grid .service-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.6;
    flex-grow: 1;
}

/* Responsive Design for Security Services */
@media (max-width: 1024px) {
    .security-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .security-services-grid .service-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .security-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .security-services-grid .service-card:nth-child(3) {
        grid-column: auto;
        max-width: none;
    }

    .security-services-grid .service-card {
        min-height: 240px;
        padding: 25px 20px;
    }
}

/* Benefits Grid for Why Choose sections */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border: 2px solid rgba(255, 107, 53, 0.8);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 107, 53, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.benefit-check {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.benefit-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
    line-height: 1.3;
}

.benefit-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-card {
        padding: 25px 20px;
    }
}

/* Blog Article Styles */
.blog-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: -70px;
    padding-top: 70px;
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a3a 100%) !important;
}

.blog-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.blog-hero-background svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.animated-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(255, 107, 53, 0.15) 0%, 
        rgba(247, 147, 30, 0.12) 25%, 
        rgba(52, 152, 219, 0.08) 50%, 
        rgba(155, 89, 182, 0.1) 75%, 
        rgba(255, 107, 53, 0.15) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 50%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.particle-1 {
    width: 8px;
    height: 8px;
    top: 20%;
    left: 10%;
    animation: float1 20s ease-in-out infinite;
}

.particle-2 {
    width: 6px;
    height: 6px;
    top: 60%;
    left: 80%;
    animation: float2 25s ease-in-out infinite;
}

.particle-3 {
    width: 10px;
    height: 10px;
    top: 80%;
    left: 20%;
    animation: float3 18s ease-in-out infinite;
}

.particle-4 {
    width: 4px;
    height: 4px;
    top: 30%;
    left: 70%;
    animation: float4 22s ease-in-out infinite;
}

.particle-5 {
    width: 7px;
    height: 7px;
    top: 70%;
    left: 60%;
    animation: float5 16s ease-in-out infinite;
}

.particle-6 {
    width: 5px;
    height: 5px;
    top: 40%;
    left: 30%;
    animation: float6 24s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.3; }
    25% { transform: translateY(-30px) translateX(20px) scale(1.2); opacity: 0.6; }
    50% { transform: translateY(-60px) translateX(-10px) scale(0.8); opacity: 0.4; }
    75% { transform: translateY(-20px) translateX(30px) scale(1.1); opacity: 0.7; }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.4; }
    33% { transform: translateY(40px) translateX(-25px) scale(1.3); opacity: 0.2; }
    66% { transform: translateY(-25px) translateX(15px) scale(0.9); opacity: 0.5; }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.3; }
    50% { transform: translateY(-40px) translateX(-20px) scale(1.4); opacity: 0.6; }
}

@keyframes float4 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.5; }
    20% { transform: translateY(-15px) translateX(25px) scale(1.1); opacity: 0.3; }
    40% { transform: translateY(30px) translateX(-15px) scale(0.8); opacity: 0.7; }
    60% { transform: translateY(-25px) translateX(10px) scale(1.2); opacity: 0.4; }
    80% { transform: translateY(15px) translateX(-20px) scale(0.9); opacity: 0.6; }
}

@keyframes float5 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.4; }
    25% { transform: translateY(20px) translateX(-30px) scale(1.3); opacity: 0.2; }
    75% { transform: translateY(-35px) translateX(20px) scale(0.7); opacity: 0.6; }
}

@keyframes float6 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.3; }
    40% { transform: translateY(-50px) translateX(35px) scale(1.5); opacity: 0.5; }
    80% { transform: translateY(25px) translateX(-25px) scale(0.8); opacity: 0.4; }
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-categories {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.blog-categories .category {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5), 0 2px 4px rgba(0, 0, 0, 0.3);
}

.blog-date {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin: 0;
}

.blog-content {
    background: #ffffff;
    color: #333333;
    padding: 80px 0;
    position: relative;
}

.blog-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    line-height: 1.8;
}

.blog-intro {
    font-size: 20px;
    font-weight: 500;
    color: #444444;
    margin-bottom: 40px;
    line-height: 1.7;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(247, 147, 30, 0.05));
    border-left: 4px solid #ff6b35;
    border-radius: 0 8px 8px 0;
}

.blog-article h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0a0a23;
    margin: 45px 0 25px 0;
    line-height: 1.3;
    position: relative;
    padding-bottom: 15px;
}

.blog-article h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.blog-article p {
    font-size: 18px;
    margin-bottom: 28px;
    color: #444444;
    line-height: 1.7;
    font-weight: 400;
}

.blog-highlight {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(247, 147, 30, 0.05));
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-left: 5px solid #ff6b35;
    border-radius: 12px;
    padding: 28px 32px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.08);
}

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

.blog-highlight:hover::before {
    left: 100%;
}

.blog-highlight p {
    margin: 0;
    font-weight: 600;
    color: #333333;
    font-size: 16px;
    font-style: italic;
}

.blog-list {
    padding-left: 0;
    list-style: none;
    margin: 30px 0;
}

.blog-list li {
    position: relative;
    padding: 12px 0 12px 35px;
    margin-bottom: 12px;
    color: #444444;
    font-size: 17px;
    line-height: 1.6;
}

.blog-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    color: #27ae60;
    font-weight: bold;
    font-size: 18px;
    background: rgba(39, 174, 96, 0.1);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.blog-cta {
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a3a 100%);
    color: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    margin: 50px 0 40px 0;
    position: relative;
    overflow: hidden;
}

.blog-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.blog-cta h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.blog-cta p {
    font-size: 16px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.blog-cta .cta-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.blog-cta .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.blog-navigation {
    background: #f8f9fa;
    padding: 60px 0;
    border-top: 1px solid #e9ecef;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.back-to-blog:hover {
    color: #f7931e;
    transform: translateX(-3px);
}

.related-articles h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0a0a23;
    margin-bottom: 30px;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.related-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.related-card:hover {
    border-color: #ff6b35;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.related-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0a0a23;
    margin-bottom: 12px;
    line-height: 1.4;
}

.related-card p {
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive Styles for Blog */
@media (max-width: 768px) {
    .blog-hero {
        height: 50vh;
        min-height: 400px;
    }

    .blog-title {
        font-size: 32px;
    }

    .blog-content {
        padding: 60px 0;
    }

    .blog-article {
        padding: 0 15px;
    }

    .blog-article h2 {
        font-size: 26px;
        margin: 35px 0 20px 0;
    }

    .blog-article p, .blog-intro {
        font-size: 16px;
    }

    .blog-highlight {
        padding: 20px;
        margin: 30px 0;
    }

    .blog-cta {
        padding: 30px 20px;
        margin: 40px 0 30px 0;
    }

    .blog-cta h3 {
        font-size: 24px;
    }

    .related-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Service card interactions with keyboard support */
document.addEventListener('DOMContentLoaded', function() {
    const serviceCards = document.querySelectorAll('.service-card');

    serviceCards.forEach(card => {
        // Make cards focusable
        card.setAttribute('tabindex', '0');
        card.setAttribute('role', 'button');

        // Add keyboard support
        card.addEventListener('keydown', function(e) {
            if (e.key === 'Enter' || e.key === ' ') {
                e.preventDefault();
                this.click();
            }
        });

        // Add aria labels for screen readers
        const serviceName = card.querySelector('h3').textContent;
        card.setAttribute('aria-label', `Learn more about ${serviceName}`);
    });
});

@media (max-width: 1024px) {
    .security-intro-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .security-intro-text {
        padding-right: 0;
        max-width: 800px;
        margin: 0 auto;
    }

    .security-highlights {
        max-width: 600px;
        margin: 40px auto 0;
    }
}

@media (max-width: 768px) {
    .security-intro-section {
        padding: 80px 0;
    }

    .security-intro-content {
        gap: 50px;    }

    .security-intro-text h2 {
        font-size: clamp(2rem, 6vw, 2.8rem);
        margin-bottom: 25px;
    }

    .security-intro-text h2::after {
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
    }

    .security-intro-text p {
        font-size: 17px;
        margin-bottom: 20px;
    }

    .security-intro-text p:first-of-type {
        font-size: 18px;
    }

    .security-visual {
        height: 300px;
    }

    .security-shield-container {
        width: 260px;
        height: 260px;
    }

    .shield-core {
        width: 70px;
        height: 70px;
    }

    .shield-core svg {
        width: 35px;
        height: 35px;
    }

    .security-highlights {
        gap: 15px;
        margin-top: 35px;
    }

    .highlight-item {
        padding: 18px 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .highlight-item:hover {
        transform: translateY(-3px);
    }

    .highlight-icon {
        font-size: 22px;
        padding: 10px;
    }

    .highlight-item span {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .security-intro-section {
        padding: 60px 0;
    }

    .security-intro-content {
        gap:40px;
    }

    .security-visual {
        height: 240px;
    }

    .security-shield-container {
        width: 200px;
        height: 200px;
    }

    .shield-core {
        width: 60px;
        height: 60px;
    }

    .shield-core svg {
        width: 30px;
        height: 30px;
    }

    .highlight-item {
        padding: 16px 18px;
    }
}

/* Vendor Sections Styling */
.security-vendor-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.security-vendor-section:nth-child(odd) {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

/* Check Point Section Styling */
.checkpoint-section {
    background: linear-gradient(135deg, #faf5f5 0%, #f5eeee 50%, #fbf8f8 100%);
    border-left: 6px solid #d63031;
    position: relative;
}

.checkpoint-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top left, rgba(214, 48, 49, 0.08) 0%, rgba(229, 62, 62, 0.02) 70%, transparent 100%);
    pointer-events: none;
}

.checkpoint-section .vendor-title {
    color: #c53030;
    position: relative;
}

.checkpoint-section .vendor-title::after {
    background: linear-gradient(135deg, #e53e3e, #c53030);
}

.checkpoint-section .vendor-description {
    color: #744210;
}

.checkpoint-section .solution-card {
    border: 2px solid rgba(214, 48, 49, 0.2);
    background: linear-gradient(135deg, rgba(214, 48, 49, 0.06), #ffffff);
    position: relative;
    box-shadow: 0 2px 8px rgba(214, 48, 49, 0.08);
}

.checkpoint-section .solution-card::before {
    background: linear-gradient(90deg, transparent, rgba(214, 48, 49, 0.08), transparent);
}

.checkpoint-section .solution-card:hover {
    border-color: #d63031;
    box-shadow: 0 15px 40px rgba(214, 48, 49, 0.22);
    background: linear-gradient(135deg, rgba(214, 48, 49, 0.08), #ffffff);
}

.checkpoint-section .solution-icon {
    background: linear-gradient(135deg, rgba(229, 62, 62, 0.1), rgba(197, 48, 48, 0.06));
    color: #c53030;
}

.checkpoint-section .solution-card:hover .solution-icon {
    background: linear-gradient(135deg, #e53e3e, #c53030);
    color: white;
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.35);
}

.checkpoint-section .solution-card.solution-highlight {
    border-color: #e53e3e;
    background: linear-gradient(135deg, rgba(229, 62, 62, 0.06), #ffffff);
    box-shadow: 0 8px 30px rgba(229, 62, 62, 0.12);
}

/* Cisco Section Styling */
.cisco-section {
    background: linear-gradient(135deg, #f8fcff 0%, #ffffff 50%, #f0faff 100%);
    border-left: 6px solid #00bceb;
    position: relative;
}

.cisco-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at bottom right, rgba(0, 188, 235, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.cisco-section .vendor-title {
    color: #0078d4;
    position: relative;
}

.cisco-section .vendor-title::after {
    background: linear-gradient(135deg, #00bceb, #0078d4);
}

.cisco-section .vendor-description {
    color: #2c5aa0;
}

.cisco-section .solution-card {
    border: 2px solid rgba(0, 188, 235, 0.12);
    background: linear-gradient(135deg, rgba(0, 188, 235, 0.02), #ffffff);
    position: relative;
}

.cisco-section .solution-card::before {
    background: linear-gradient(90deg, transparent, rgba(0, 188, 235, 0.06), transparent);
}

.cisco-section .solution-card:hover {
    border-color: #00bceb;
    box-shadow: 0 15px 40px rgba(0, 188, 235, 0.18);
    background: linear-gradient(135deg, rgba(0, 188, 235, 0.04), #ffffff);
}

.cisco-section .solution-icon {
    background: linear-gradient(135deg, rgba(0, 188, 235, 0.08), rgba(0, 120, 212, 0.05));
    color: #0078d4;
}

.cisco-section .solution-card:hover .solution-icon {
    background: linear-gradient(135deg, #00bceb, #0078d4);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 188, 235, 0.35);
}

.cisco-section .solution-card.solution-highlight {
    border-color: #00bceb;
    background: linear-gradient(135deg, rgba(0, 188, 235, 0.05), #ffffff);
    box-shadow: 0 8px 30px rgba(0, 188, 235, 0.12);
}

.vendor-header {
    text-align: center;
    margin-bottom: 60px;
}

.vendor-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700;
    color: #0a0a23;
    margin-bottom: 20px;
    position: relative;
}

.vendor-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.vendor-description {
    font-size: 18px;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.vendor-solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.solution-card {
    background: white;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.solution-card:hover {
    transform: translateY(-8px);
    border-color: #ff6b35;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
}

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

.solution-card.solution-highlight {
    border-color: #ff6b35;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.03), white);
}

.solution-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.solution-card:hover .solution-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.solution-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0a0a23;
    margin-bottom: 15px;
    line-height: 1.3;
}

.solution-card p {
    color: #666666;
    font-size: 16px;
    line-height: 1.6;
}

/* Different Approach Section */
.different-approach-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a3a 100%);
    color: white;
}

.different-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.different-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.different-item:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

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

.different-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.different-item:hover .different-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.different-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.different-item p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.6;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .security-vendor-section {
        padding: 60px 0;
    }

    .vendor-solutions-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .solution-card {
        padding: 25px 20px;
    }

    .different-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .different-item {
        padding: 25px 20px;
    }
}

/* Security Services Grid - Three Column Layout */
.security-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.security-services-grid .service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.security-services-grid .service-card:hover {
    transform: translateY(-8px);
    border: 2px solid rgba(255, 107, 53, 0.8);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 107, 53, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.security-services-grid .service-card .service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #ff6b35;
    transition: all 0.3s ease;
}

.security-services-grid .service-card:hover .service-icon {
    color: #f7931e;
    transform: scale(1.1);
}

.security-services-grid .service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    line-height: 1.3;
}

.security-services-grid .service-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.6;
    flex-grow: 1;
}

/* Responsive Design for Security Services */
@media (max-width: 1024px) {
    .security-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .security-services-grid .service-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .security-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .security-services-grid .service-card:nth-child(3) {
        grid-column: auto;
        max-width: none;
    }

    .security-services-grid .service-card {
        min-height: 240px;
        padding: 25px 20px;
    }
}

/* Benefits Grid for Why Choose sections */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border: 2px solid rgba(255, 107, 53, 0.8);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 107, 53, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.benefit-check {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.benefit-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
    line-height: 1.3;
}

.benefit-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-card {
        padding: 25px 20px;
    }
}

/* Blog Article Styles */
.blog-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: -70px;
    padding-top: 70px;
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a3a 100%) !important;
}

.blog-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.blog-hero-background svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.animated-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(255, 107, 53, 0.15) 0%, 
        rgba(247, 147, 30, 0.12) 25%, 
        rgba(52, 152, 219, 0.08) 50%, 
        rgba(155, 89, 182, 0.1) 75%, 
        rgba(255, 107, 53, 0.15) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 50%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.particle-1 {
    width: 8px;
    height: 8px;
    top: 20%;
    left: 10%;
    animation: float1 20s ease-in-out infinite;
}

.particle-2 {
    width: 6px;
    height: 6px;
    top: 60%;
    left: 80%;
    animation: float2 25s ease-in-out infinite;
}

.particle-3 {
    width: 10px;
    height: 10px;
    top: 80%;
    left: 20%;
    animation: float3 18s ease-in-out infinite;
}

.particle-4 {
    width: 4px;
    height: 4px;
    top: 30%;
    left: 70%;
    animation: float4 22s ease-in-out infinite;
}

.particle-5 {
    width: 7px;
    height: 7px;
    top: 70%;
    left: 60%;
    animation: float5 16s ease-in-out infinite;
}

.particle-6 {
    width: 5px;
    height: 5px;
    top: 40%;
    left: 30%;
    animation: float6 24s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.3; }
    25% { transform: translateY(-30px) translateX(20px) scale(1.2); opacity: 0.6; }
    50% { transform: translateY(-60px) translateX(-10px) scale(0.8); opacity: 0.4; }
    75% { transform: translateY(-20px) translateX(30px) scale(1.1); opacity: 0.7; }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.4; }
    33% { transform: translateY(40px) translateX(-25px) scale(1.3); opacity: 0.2; }
    66% { transform: translateY(-25px) translateX(15px) scale(0.9); opacity: 0.5; }
}

@keyframes float3 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.3; }
    50% { transform: translateY(-40px) translateX(-20px) scale(1.4); opacity: 0.6; }
}

@keyframes float4 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.5; }
    20% { transform: translateY(-15px) translateX(25px) scale(1.1); opacity: 0.3; }
    40% { transform: translateY(30px) translateX(-15px) scale(0.8); opacity: 0.7; }
    60% { transform: translateY(-25px) translateX(10px) scale(1.2); opacity: 0.4; }
    80% { transform: translateY(15px) translateX(-20px) scale(0.9); opacity: 0.6; }
}

@keyframes float5 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.4; }
    25% { transform: translateY(20px) translateX(-30px) scale(1.3); opacity: 0.2; }
    75% { transform: translateY(-35px) translateX(20px) scale(0.7); opacity: 0.6; }
}

@keyframes float6 {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 0.3; }
    40% { transform: translateY(-50px) translateX(35px) scale(1.5); opacity: 0.5; }
    80% { transform: translateY(25px) translateX(-25px) scale(0.8); opacity: 0.4; }
}

.blog-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-categories {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.blog-categories .category {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5), 0 2px 4px rgba(0, 0, 0, 0.3);
}

.blog-date {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin: 0;
}

.blog-content {
    background: #ffffff;
    color: #333333;
    padding: 80px 0;
    position: relative;
}

.blog-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    line-height: 1.8;
}

.blog-intro {
    font-size: 20px;
    font-weight: 500;
    color: #444444;
    margin-bottom: 40px;
    line-height: 1.7;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(247, 147, 30, 0.05));
    border-left: 4px solid #ff6b35;
    border-radius: 0 8px 8px 0;
}

.blog-article h2 {
    font-size: 28px;
    font-weight: 700;
    color: #0a0a23;
    margin: 45px 0 25px 0;
    line-height: 1.3;
    position: relative;
    padding-bottom: 15px;
}

.blog-article h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

.blog-article p {
    font-size: 18px;
    margin-bottom: 28px;
    color: #444444;
    line-height: 1.7;
    font-weight: 400;
}

.blog-highlight {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08), rgba(247, 147, 30, 0.05));
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-left: 5px solid #ff6b35;
    border-radius: 12px;
    padding: 28px 32px;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.08);
}

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

.blog-highlight:hover::before {
    left: 100%;
}

.blog-highlight p {
    margin: 0;
    font-weight: 600;
    color: #333333;
    font-size: 16px;
    font-style: italic;
}

.blog-list {
    padding-left: 0;
    list-style: none;
    margin: 30px 0;
}

.blog-list li {
    position: relative;
    padding: 12px 0 12px 35px;
    margin-bottom: 12px;
    color: #444444;
    font-size: 17px;
    line-height: 1.6;
}

.blog-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    color: #27ae60;
    font-weight: bold;
    font-size: 18px;
    background: rgba(39, 174, 96, 0.1);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.blog-cta {
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a3a 100%);
    color: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    margin: 50px 0 40px 0;
    position: relative;
    overflow: hidden;
}

.blog-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.blog-cta h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.blog-cta p {
    font-size: 16px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

.blog-cta .cta-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.blog-cta .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.blog-navigation {
    background: #f8f9fa;
    padding: 60px 0;
    border-top: 1px solid #e9ecef;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.back-to-blog:hover {
    color: #f7931e;
    transform: translateX(-3px);
}

.related-articles h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0a0a23;
    margin-bottom: 30px;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.related-card {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.related-card:hover {
    border-color: #ff6b35;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.related-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0a0a23;
    margin-bottom: 12px;
    line-height: 1.4;
}

.related-card p {
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive Styles for Blog */
@media (max-width: 768px) {
    .blog-hero {
        height: 50vh;
        min-height: 400px;
    }

    .blog-title {
        font-size: 32px;
    }

    .blog-content {
        padding: 60px 0;
    }

    .blog-article {
        padding: 0 15px;
    }

    .blog-article h2 {
        font-size: 26px;
        margin: 35px 0 20px 0;
    }

    .blog-article p, .blog-intro {
        font-size: 16px;
    }

    .blog-highlight {
        padding: 20px;
        margin: 30px 0;
    }

    .blog-cta {
        padding: 30px 20px;
        margin: 40px 0 30px 0;
    }

    .blog-cta h3 {
        font-size: 24px;
    }

    .related-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Service card interactions with keyboard support */
document.addEventListener('DOMContentLoaded', function() {
    const serviceCards = document.querySelectorAll('.service-card');

    serviceCards.forEach(card => {
        // Make cards focusable
        card.setAttribute('tabindex', '0');
        card.setAttribute('role', 'button');

        // Add keyboard support
        card.addEventListener('keydown', function(e) {
            if (e.key === 'Enter' || e.key === ' ') {
                e.preventDefault();
                this.click();
            }
        });

        // Add aria labels for screen readers
        const serviceName = card.querySelector('h3').textContent;
        card.setAttribute('aria-label', `Learn more about ${serviceName}`);
    });
});