/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
    background: #f9f9f9;
}

/* Header styles */
header {
    background: linear-gradient(135deg, #0a2463, #1e50a2);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 600;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
    position: relative;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #6db3f2;
}

.login-btn {
    background: #ff6b35;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

.login-btn:hover {
    background: #e55a2b;
    color: white;
}

/* Dropdown Menu */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 200px;
    z-index: 100;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    color: #333;
    padding: 10px 15px;
    display: block;
    border-bottom: 1px solid #f1f1f1;
}

.dropdown-menu a:hover {
    background: #f1f7ff;
    color: #0a2463;
}

.nav-item:hover .dropdown-menu {
    display: block;
}

/* Mobile Menu Toggle Button - Enhanced */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1002;
    width: 50px;
    height: 50px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle:active {
    background: rgba(255, 255, 255, 0.2);
}

/* Page header */
.page-header {
    background: linear-gradient(rgba(10, 36, 99, 0.9), rgba(10, 36, 99, 0.9)), url('images/aboutus.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.page-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    list-style: none;
}

.breadcrumbs li {
    margin: 0 0.5rem;
}

.breadcrumbs a {
    color: #ccc;
    text-decoration: none;
}

.breadcrumbs li:last-child {
    color: #ff6b35;
}

.lead {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 1rem auto 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    margin-top: 2rem;
}

/* Hero section */
.hero {
    background: linear-gradient(rgba(10, 36, 99, 0.8), rgba(10, 36, 99, 0.9)), url('images/home_banner.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* Button styles */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    margin: 0 0.5rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    background: #ff6b35;
    color: white;
}

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

/* Section styles */
.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h3 {
    font-size: 2.2rem;
    color: #0a2463;
    margin-bottom: 1rem;
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Features section */
.features {
    padding: 5rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Advanced Capabilities - Force Horizontal Layout */
#key-features .features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Ensure capability cards fit in horizontal layout */
#key-features .capability-card {
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

#key-features .capability-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

#key-features .capability-card p {
    font-size: 0.9rem;
    flex-grow: 1;
}

#key-features .capability-example {
    margin-top: auto;
    font-size: 0.85rem;
}

/* Responsive for Advanced Capabilities */
@media screen and (max-width: 1400px) {
    #key-features .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 1000px) {
    #key-features .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 600px) {
    #key-features .features-grid {
        grid-template-columns: 1fr;
    }
}

/* NEW: Bridging features grid - 2x2 layout */
.bridging-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* NEW: Implementation process grid - 4 cards horizontal */
.implementation-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Team section specific grid layout */
.team-section .features-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Ensure team cards fit properly in 4-column layout */
.team-section .team-card {
    min-width: 0;
    width: 100%;
}

.feature-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: #1e50a2;
    margin-bottom: 1.5rem;
    text-align: center;
}

.feature-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #0a2463;
}

/* Products section */
.products {
    padding: 5rem 0;
    background: #f1f7ff;
}

.products-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.product {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.product-img {
    height: 250px;
    overflow: hidden;
}

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

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

.product-content {
    padding: 2rem;
}

.product-content h4 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #0a2463;
}

.product-content p {
    margin-bottom: 1.5rem;
}

/* Sample Output Card Styles */
.sample-output-card,
.executive-summary-card {
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 4px solid #0a2463;
}

.sample-output-card h4,
.executive-summary-card h4 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: #0a2463;
    text-align: center;
    border-bottom: 2px solid #f1f7ff;
    padding-bottom: 1rem;
}

/* Output Item Styling */
.output-item,
.summary-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    padding: 0.8rem;
    background: #f8fafc;
    border-radius: 6px;
    border-left: 3px solid #0a2463;
}

.output-icon,
.summary-icon {
    font-size: 1.3rem;
    margin-right: 1rem;
    min-width: 30px;
    flex-shrink: 0;
}

.output-details {
    flex: 1;
}

.output-label,
.summary-label {
    font-weight: 600;
    color: #374151;
    margin-right: 0.5rem;
    display: inline-block;
    min-width: 80px;
}

.output-value,
.summary-value {
    color: #059669;
    font-weight: 500;
}

/* File List Styling */
.file-list {
    margin-top: 0.5rem;
}

.file-item {
    background: #e0f2fe;
    padding: 0.5rem 0.8rem;
    border-radius: 4px;
    margin-bottom: 0.4rem;
    border-left: 2px solid #0284c7;
}

.file-name {
    font-family: monospace;
    font-weight: 600;
    color: #0c4a6e;
    display: block;
    margin-bottom: 0.2rem;
}

.file-metrics {
    font-size: 0.85rem;
    color: #64748b;
}

/* Badge Styles */
.score-badge {
    background: #3b82f6;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
}

.risk-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    color: white;
}

.risk-badge.medium {
    background: #f59e0b;
}

.risk-badge.high {
    background: #ef4444;
}

.risk-badge.low {
    background: #10b981;
}

.agreement-score {
    background: #10b981;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 50%;
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 45px;
    text-align: center;
    display: inline-block;
}

/* Summary Row for Side-by-Side Items */
.summary-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.summary-row .summary-item {
    flex: 1;
    margin-bottom: 0;
}

/* Recommendation Section */
.recommendation-section {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 2px solid #f1f7ff;
}

.recommendation-text {
    background: #fef2f2;
    color: #dc2626;
    padding: 0.8rem;
    border-radius: 6px;
    border-left: 3px solid #ef4444;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* NEW: Success Story Section Styles - Removed image layout */
.success-story-content {
    max-width: 900px;
    margin: 0 auto;
}

.success-story-text {
    width: 100%;
}

.company-info {
    margin-bottom: 20px;
    padding: 10px 0;
    border-bottom: 2px solid #f1f7ff;
}

.company-type {
    color: #666;
    font-style: italic;
    font-size: 1.1rem;
}

.challenge-section,
.solution-section,
.results-section {
    margin-bottom: 25px;
}

.challenge-section p,
.solution-section p {
    background: #f8fafc;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid #0a2463;
}

.results-section ul {
    background: #f0f9ff;
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid #10b981;
    margin-top: 10px;
}

.results-section li {
    margin-bottom: 8px;
    color: #059669;
    font-weight: 500;
}
/* CTA section */
.cta {
    background: linear-gradient(135deg, #0a2463, #1e50a2);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.cta h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.cta p {
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background: #0a2463;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-about h4 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.footer-about p {
    margin-bottom: 1.5rem;
    color: #ccc;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: white;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #ff6b35;
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    margin-top: 3rem;
    color: #ccc;
    font-size: 0.9rem;
}

/* Additional styles for inner pages */
.bg-light-blue {
    background-color: #f1f7ff;
}

.feature-box {
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    height: 100%;
    border-left: 4px solid #0a2463;
    background: white;
    margin-bottom: 20px;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.team-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    background: white;
    margin-bottom: 20px;
}

.team-card:hover {
    transform: translateY(-10px);
}

.contact-info-box {
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    background-color: white;
    height: 100%;
    transition: transform 0.3s ease;
    text-align: center;
    margin-bottom: 20px;
}

.contact-info-box:hover {
    transform: translateY(-10px);
}

.contact-form {
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    background-color: white;
    margin-bottom: 20px;
}

/* About section styles */
.about-section {
    padding: 5rem 0;
    background-color: #f1f7ff;
}

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

.about-text h3 {
    color: #0a2463;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1rem;
}

.about-img {
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    box-sizing: border-box;
}

/* Certifications section */
.certifications {
    padding: 5rem 0;
    background-color: #f1f7ff;
}

.certificates {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.certificate {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.certificate:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.certificate img {
    height: 120px;
    width: auto;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.certificate:hover img {
    transform: scale(1.05);
}

.certificate h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #0a2463;
}

/* Mission & Vision Section */
.mission-vision {
    padding: 5rem 0;
    background-color: #f0f7ff;
}

.mission-vision-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.mission, .vision {
    flex: 1;
    min-width: 300px;
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission:hover, .vision:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.mission h4, .vision h4 {
    color: #0a2463;
    font-size: 1.6rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.mission .icon, .vision .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ff6b35;
    color: white;
    margin-right: 15px;
    font-size: 1.2rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.mission:hover .icon, .vision:hover .icon {
    transform: scale(1.1);
    background-color: #e55a2b;
}

/* Timeline/Journey Section */
.milestones {
    padding: 5rem 0;
    background-color: #fff;
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 4px;
    background: #0a2463;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
}

.milestone {
    position: relative;
    margin-bottom: 4rem;
    width: 50%;
}

.milestone-left {
    left: 0;
    padding-right: 40px;
}

.milestone-right {
    left: 50%;
    padding-left: 40px;
}

.milestone-content {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.milestone-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.milestone-content::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #ff6b35;
    top: 20px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.milestone-content:hover::after {
    transform: scale(1.2);
    background-color: #e55a2b;
}

.milestone-left .milestone-content::after {
    right: -12.5px;
}

.milestone-right .milestone-content::after {
    left: -12.5px;
}

.milestone-year {
    display: inline-block;
    padding: 6px 15px;
    background: #ff6b35;
    color: white;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.milestone-content:hover .milestone-year {
    background-color: #e55a2b;
    transform: scale(1.05);
}

.milestone-content h4 {
    color: #0a2463;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

/* Values Section */
.values {
    padding: 5rem 0;
    background-color: #f0f7ff;
}

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

.value-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #ff6b3515;
    color: #ff6b35;
    font-size: 1.8rem;
    margin-bottom: 20px;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
    background-color: #ff6b3525;
}

.value-card h4 {
    color: #0a2463;
    font-size: 1.4rem;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.value-card:hover h4 {
    color: #1e50a2;
}

/* New deployment process row styling - continuation */
.deployment-process-row {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 20px;
    padding: 15px 0;
    margin-bottom: 30px;
    justify-content: center;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.deployment-process-row::-webkit-scrollbar {
    height: 6px;
}

.deployment-process-row::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.deployment-process-row::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.deployment-process-row::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}

/* Deployment card styling */
.deployment-card {
    flex: 0 0 auto;
    width: 220px;
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.deployment-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.deployment-card .feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ff6b35;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    text-align: center;
}

.deployment-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #0a2463;
}

.deployment-card p {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Tab styling */
.tab-navigation {
    display: inline-flex;
    background: #f1f7ff;
    border-radius: 8px;
    overflow: hidden;
}

.tab-link {
    padding: 12px 25px;
    text-decoration: none;
    color: #0a2463;
    font-weight: 600;
    transition: background 0.3s, box-shadow 0.3s;
}

.tab-link.active {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.tab-link:hover:not(.active) {
    background: rgba(255, 255, 255, 0.5);
}

/* Tab content */
.tab-content {
    display: block;
}

.tab-content:not(:first-child) {
    display: none;
}

/* CYBERSEC AI specific styles */
/* Code Display Style */
.code-display {
    background: #1e2433;
    border-radius: 8px;
    padding: 15px;
    font-family: 'Courier New', monospace;
    color: #f1f1f1;
    margin-bottom: 30px;
    overflow-x: auto;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #ff6b35;
}

/* Feature Item Styles for CYBERSEC AI page */
.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.feature-item .feature-icon {
    font-size: 1.5em;
    margin-right: 15px;
    min-width: 40px;
    flex-shrink: 0;
    margin-bottom: 0;
}

.feature-item p {
    margin: 0;
    line-height: 1.6;
}

/* Developer Features Layout */
.developer-features {
    max-width: 100%;
    margin: 0 auto;
}

.features-section {
    margin-bottom: 40px;
}

.features-section h3 {
    color: #0a2463;
    margin-bottom: 20px;
    font-size: 1.5em;
}

/* Summary Box Styles */
.summary-box {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    border-left: 4px solid #0a2463;
    transition: transform 0.3s, box-shadow 0.3s;
}

.summary-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.summary-box h4 {
    color: #0a2463;
    margin-bottom: 15px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
}

.summary-box h4 .icon {
    margin-right: 10px;
    color: #ff6b35;
}

/* AI Agents Card Styles */
.ai-agent-card {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.ai-agent-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.ai-agent-icon {
    width: 60px;
    height: 60px;
    background: #0a2463;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: white;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.ai-agent-info h4 {
    color: #0a2463;
    margin-bottom: 5px;
}

.ai-agent-info p {
    font-size: 0.9rem;
    color: #666;
}

/* Metrics Display */
.metrics-display {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.metric-card {
    flex: 1;
    min-width: 180px;
    background: white;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0a2463;
    margin: 10px 0;
}

.metric-label {
    color: #666;
    font-size: 0.9rem;
}

/* Security Status Indicators */
.security-status {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.status-high {
    background: #ffebee;
    color: #d32f2f;
}

.status-medium {
    background: #fff8e1;
    color: #ff8f00;
}

.status-low {
    background: #e8f5e9;
    color: #388e3c;
}

/* ========================================
   CUSTOM LLM WAF PAGE STYLES
   ======================================== */

/* Theater Defense Grid */
.theater-defense-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.defense-layer {
    background: white;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.defense-layer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: all 0.3s ease;
}

.layer-1::before {
    background: linear-gradient(90deg, #e74c3c, #c0392b);
}

.layer-2::before {
    background: linear-gradient(90deg, #3498db, #2980b9);
}

.layer-3::before {
    background: linear-gradient(90deg, #2ecc71, #27ae60);
}

.defense-layer:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.layer-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.layer-1 .layer-icon {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.layer-2 .layer-icon {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.layer-3 .layer-icon {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.layer-number {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    background: #0a2463;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
    color: white;
    border: 3px solid white;
}

.defense-layer h4 {
    color: #0a2463;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.defense-layer p {
    color: #666;
    font-weight: 600;
    margin-bottom: 1rem;
}

.defense-layer ul {
    list-style: none;
    padding: 0;
}

.defense-layer li {
    padding: 0.5rem 0;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.defense-layer li:last-child {
    border-bottom: none;
}

/* Architecture Flow */
.architecture-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.flow-step {
    background: white;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    min-width: 150px;
}

.flow-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.flow-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.8rem;
    color: white;
    background: linear-gradient(135deg, #0a2463, #1e50a2);
}

.flow-icon.cloudflare {
    background: linear-gradient(135deg, #f38020, #e6720e);
}

.flow-icon.nginx {
    background: linear-gradient(135deg, #009639, #007a2f);
}

.flow-icon.app {
    background: linear-gradient(135deg, #8e44ad, #7d3c98);
}

.flow-arrow {
    font-size: 2rem;
    color: #0a2463;
    font-weight: bold;
    margin: 0 1rem;
}

.flow-step h4 {
    color: #0a2463;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.flow-step p {
    color: #666;
    font-size: 0.9rem;
}

/* Session Intelligence Process */
.session-intelligence-process {
    margin-top: 4rem;
    background: white;
    border-radius: 12px;
    padding: 3rem 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.session-intelligence-process h4 {
    text-align: center;
    color: #0a2463;
    margin-bottom: 2rem;
    font-size: 1.6rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.process-step {
    text-align: center;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.step-1 {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.step-2 {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.step-3 {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.step-4 {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.process-step h5 {
    color: #0a2463;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.process-step p {
    color: #666;
    font-size: 0.9rem;
}

/* Capability Cards */
.capability-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.capability-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.capability-card.geographic {
    border-left-color: #e74c3c;
}

.capability-card.behavioral {
    border-left-color: #3498db;
}

.capability-card.zero-day {
    border-left-color: #2ecc71;
}

.capability-card.rate-limiting {
    border-left-color: #f39c12;
}

.capability-card.session-hijacking {
    border-left-color: #9b59b6;
}

.capability-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
}

.capability-icon.geographic {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.capability-icon.behavioral {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.capability-icon.zero-day {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.capability-icon.rate-limiting {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.capability-icon.session-hijacking {
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
}

.capability-card h4 {
    color: #0a2463;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.capability-example {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    border-left: 3px solid #0a2463;
    font-size: 0.9rem;
}

.capability-example strong {
    color: #0a2463;
}

/* Attack Scenarios */
.attack-scenarios {
    display: grid;
    gap: 2rem;
}

.scenario-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.scenario-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.scenario-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.scenario-header .scenario-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    background: linear-gradient(135deg, #0a2463, #1e50a2);
}

.scenario-header h4 {
    flex: 1;
    margin-left: 1rem;
    color: #0a2463;
    font-size: 1.4rem;
}

.detection-badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.badge {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    min-width: 150px;
}

.traditional-miss {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

.our-catch {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.scenario-details ul {
    list-style: none;
    padding: 0;
}

.scenario-details li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.scenario-details li:last-child {
    border-bottom: none;
}

/* Performance Metrics */
.performance-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.metric-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    background: linear-gradient(135deg, #0a2463, #1e50a2);
}

.performance-features .feature-row {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
}

.performance-features .feature-item {
    text-align: center;
    flex: 1;
}

.performance-features .feature-item i {
    font-size: 2.5rem;
    color: #0a2463;
    margin-bottom: 1rem;
}

.performance-features .feature-item h5 {
    color: #0a2463;
    margin-bottom: 0.5rem;
}
/* Enterprise Benefits */
.enterprise-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-category {
    background: white;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.benefit-category:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.category-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.2rem;
    color: white;
}

.benefit-category.security .category-icon {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.benefit-category.operational .category-icon {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.benefit-category.compliance .category-icon {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.benefit-category h4 {
    text-align: center;
    color: #0a2463;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.benefit-category ul {
    list-style: none;
    padding: 0;
}

.benefit-category li {
    padding: 0.7rem 0;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.5rem;
}

.benefit-category li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
}

.benefit-category li:last-child {
    border-bottom: none;
}

/* Pilot Phases */
.pilot-phases {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3rem 0;
    gap: 2rem;
}

.phase-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    flex: 1;
    max-width: 400px;
}

.phase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.phase-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.phase-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.phase-1 .phase-icon {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.phase-2 .phase-icon {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.phase-header h4 {
    flex: 1;
    margin-left: 1rem;
    color: #0a2463;
}

.phase-duration {
    background: #0a2463;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.phase-content p {
    font-weight: 600;
    color: #0a2463;
    margin-bottom: 1rem;
}

.phase-content ul {
    list-style: none;
    padding: 0;
}

.phase-content li {
    padding: 0.5rem 0;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.5rem;
}

.phase-content li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #0a2463;
    font-weight: bold;
}

.phase-content li:last-child {
    border-bottom: none;
}

.phase-arrow {
    font-size: 2.5rem;
    color: #0a2463;
    font-weight: bold;
}

/* Success Metrics */
.success-metrics {
    background: white;
    border-radius: 12px;
    padding: 3rem 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-top: 3rem;
}

.success-metrics h4 {
    text-align: center;
    color: #0a2463;
    margin-bottom: 2rem;
    font-size: 1.6rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.success-metric {
    text-align: center;
}

.success-metric i {
    font-size: 2.5rem;
    color: #0a2463;
    margin-bottom: 1rem;
}

.success-metric h5 {
    color: #0a2463;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.success-metric p {
    color: #666;
    font-size: 0.9rem;
}

/* Competitive Table */
.competitive-table {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    overflow-x: auto;
}

.competitive-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.competitive-table th,
.competitive-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #e1e1e1;
}

.competitive-table th {
    background: #f8f9fa;
    color: #0a2463;
    font-weight: 600;
    border-bottom: 2px solid #0a2463;
}

.competitive-table th:last-child {
    background: #0a2463;
    color: white;
}

.competitive-table .success {
    color: #2ecc71;
    font-size: 1.2rem;
}

.competitive-table .failure {
    color: #e74c3c;
    font-size: 1.2rem;
}

.competitive-table .limited {
    background: #fff3cd;
    color: #856404;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* CTA Enhancements */
.cta-buttons {
    margin-bottom: 2rem;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 500;
}

.cta-feature i {
    font-size: 1.2rem;
    color: #ff6b35;
}

/* ========================================
   MOBILE RESPONSIVE STYLES
   ======================================== */

/* Tablet Responsive (1200px and below) */
@media screen and (max-width: 1200px) {
    /* Enterprise Benefits */
.enterprise-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-category {
    background: white;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.benefit-category:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.category-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.2rem;
    color: white;
}

.benefit-category.security .category-icon {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.benefit-category.operational .category-icon {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.benefit-category.compliance .category-icon {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.benefit-category h4 {
    text-align: center;
    color: #0a2463;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.benefit-category ul {
    list-style: none;
    padding: 0;
}

.benefit-category li {
    padding: 0.7rem 0;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.5rem;
}

.benefit-category li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: bold;
}

.benefit-category li:last-child {
    border-bottom: none;
}

/* Pilot Phases */
.pilot-phases {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 3rem 0;
    gap: 2rem;
}

.phase-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    flex: 1;
    max-width: 400px;
}

.phase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.phase-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.phase-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
}

.phase-1 .phase-icon {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.phase-2 .phase-icon {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.phase-header h4 {
    flex: 1;
    margin-left: 1rem;
    color: #0a2463;
}

.phase-duration {
    background: #0a2463;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.phase-content p {
    font-weight: 600;
    color: #0a2463;
    margin-bottom: 1rem;
}

.phase-content ul {
    list-style: none;
    padding: 0;
}

.phase-content li {
    padding: 0.5rem 0;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.5rem;
}

.phase-content li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #0a2463;
    font-weight: bold;
}

.phase-content li:last-child {
    border-bottom: none;
}

.phase-arrow {
    font-size: 2.5rem;
    color: #0a2463;
    font-weight: bold;
}

/* Success Metrics */
.success-metrics {
    background: white;
    border-radius: 12px;
    padding: 3rem 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-top: 3rem;
}

.success-metrics h4 {
    text-align: center;
    color: #0a2463;
    margin-bottom: 2rem;
    font-size: 1.6rem;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.success-metric {
    text-align: center;
}

.success-metric i {
    font-size: 2.5rem;
    color: #0a2463;
    margin-bottom: 1rem;
}

.success-metric h5 {
    color: #0a2463;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.success-metric p {
    color: #666;
    font-size: 0.9rem;
}

/* Competitive Table */
.competitive-table {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    overflow-x: auto;
}

.competitive-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.competitive-table th,
.competitive-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #e1e1e1;
}

.competitive-table th {
    background: #f8f9fa;
    color: #0a2463;
    font-weight: 600;
    border-bottom: 2px solid #0a2463;
}

.competitive-table th:last-child {
    background: #0a2463;
    color: white;
}

.competitive-table .success {
    color: #2ecc71;
    font-size: 1.2rem;
}

.competitive-table .failure {
    color: #e74c3c;
    font-size: 1.2rem;
}

.competitive-table .limited {
    background: #fff3cd;
    color: #856404;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* CTA Enhancements */
.cta-buttons {
    margin-bottom: 2rem;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 500;
}

.cta-feature i {
    font-size: 1.2rem;
    color: #ff6b35;
}

/* ========================================
   MOBILE RESPONSIVE STYLES
   ======================================== */

/* Tablet Responsive (1200px and below) */
@media screen and (max-width: 1200px) {
    /* Team section responsive */
    .team-section .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Bridging features - 2 columns on tablet */
    .bridging-features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    /* Implementation process - 2 columns on tablet */
    .implementation-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Custom LLM WAF Responsive */
    .theater-defense-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .performance-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .enterprise-benefits {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}



/* Small Mobile Screens (576px and below) */
@media screen and (max-width: 576px) {
    .navbar {
        padding: 0.8rem 0;
    }
    
    .mobile-menu-toggle {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.6rem !important;
        right: 0 !important;
    }
    
    .nav-links li {
        margin: 0.6rem 0;
        width: 95%;
    }
    
    .dropdown-menu a {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
    
    .nav-item > a {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .deployment-card {
        width: 200px;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .section-title h3 {
        font-size: 1.8rem;
    }
    
    .page-header h2 {
        font-size: 1.8rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    /* CYBERSEC AI Small Screen Adjustments */
    .metric-value {
        font-size: 2rem;
    }
    
    .summary-box {
        padding: 20px;
    }
    
    .deployment-card {
        width: 180px;
        padding: 1.5rem;
    }
    
    .feature-item .feature-icon {
        font-size: 1.3em;
    }
    
    .feature-item {
        padding: 12px;
    }

    .sample-output-card h4,
    .executive-summary-card h4 {
        font-size: 1.4rem;
    }
    
    .output-label,
    .summary-label {
        font-size: 0.9rem;
    }
    
    .recommendation-text {
        font-size: 0.85rem;
    }
    
    .score-badge,
    .risk-badge,
    .agreement-score {
        font-size: 0.8rem;
        padding: 0.25rem 0.6rem;
    }
    
    /* Custom LLM WAF Small Screen */
    .theater-defense-grid {
        gap: 1rem;
    }
    
    .defense-layer {
        padding: 2rem 1.5rem;
    }
    
    .layer-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .competitive-table {
        padding: 1rem;
    }
    
    .competitive-table th,
    .competitive-table td {
        padding: 0.5rem;
        font-size: 0.85rem;
    }
    
    .detection-badges {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .badge {
        min-width: auto;
        font-size: 0.8rem;
    }
    
    .phase-card {
        padding: 2rem 1.5rem;
    }
    
    .success-metrics {
        padding: 2rem 1.5rem;
    }
    
    .capability-card {
        padding: 1.5rem;
    }
    
    .capability-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .flow-step {
        padding: 1.5rem 1rem;
        min-width: 120px;
    }
    
    .flow-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* Extra Small Mobile (480px and below) */
@media screen and (max-width: 480px) {
    .container {
        width: 95%;
        padding: 0 10px;
    }
    
    .page-header {
        padding: 3rem 0;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
        margin: 0.25rem;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .section-title h3 {
        font-size: 1.6rem;
    }
    
    .cta h3 {
        font-size: 1.8rem;
    }
    
    .feature-card {
        padding: 1.25rem;
    }
    
    .capability-card {
        padding: 1.25rem;
    }
    
    .phase-card {
        padding: 1.5rem 1.25rem;
    }
    
    .defense-layer {
        padding: 1.5rem 1.25rem;
    }
    
    .flow-step {
        padding: 1.25rem 0.75rem;
        min-width: 100px;
    }
    
    .competitive-table {
        padding: 0.75rem;
        font-size: 0.8rem;
    }
    
    .competitive-table th,
    .competitive-table td {
        padding: 0.4rem;
        font-size: 0.8rem;
    }
}



/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .feature-card:hover,
    .capability-card:hover,
    .defense-layer:hover,
    .phase-card:hover,
    .scenario-card:hover {
        transform: none;
    }
    
    .nav-item > a {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .btn {
        min-height: 44px;
        padding: 0.8rem 2rem;
    }
}
}
/* ========================================
   ADD THIS ENTIRE SECTION TO YOUR CSS FILE
   INSERT IT RIGHT AFTER LINE 1580 (after the "@media screen and (max-width: 1200px)" section)
   ======================================== */

/* Mobile Responsive (768px and below) - COMPLETE SECTION */
@media screen and (max-width: 768px) {
    .navbar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 0;
        position: relative;
        min-height: 70px;
    }
    
    /* Team section responsive */
    .team-section .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-section .team-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* Bridging features - single column on mobile */
    .bridging-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Implementation process - single column on mobile */
    .implementation-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* FIX FOR LAYERS DIAGRAM OVERFLOW - THIS IS THE KEY PART */
    .hero-cube-container {
        flex-direction: column;
        gap: 2rem;
    }

    .layers-grid {
        width: 180px;  /* Reduced from your current size */
        height: 180px; /* Reduced from your current size */
        gap: 6px;
        margin: 0 auto; /* Center the grid */
    }

    .grid-layer {
        padding: 0.5rem;
    }

    .hero-visual {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        perspective: 1000px;
        overflow: hidden; /* Prevent overflow */
        width: 100%;
    }
    
    /* Force hamburger menu to show on mobile */
    .mobile-menu-toggle {
        display: block !important;
        position: absolute !important;
        right: 0 !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 1002 !important;
        background: rgba(255, 107, 53, 0.9) !important;
        border-radius: 6px !important;
        width: 45px !important;
        height: 45px !important;
        font-size: 1.8rem !important;
        color: white !important;
        border: 2px solid rgba(255, 255, 255, 0.3) !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        margin-top: 1rem;
        flex-direction: column;
        width: 100%;
        align-items: center;
        display: none;
        background: rgba(10, 36, 99, 0.98);
        border-radius: 8px;
        padding: 1.5rem 0;
        box-shadow: 0 5px 25px rgba(0,0,0,0.3);
        z-index: 1001;
        backdrop-filter: blur(10px);
    }
    
    .nav-links.nav-open {
        display: flex !important;
        animation: slideDown 0.4s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-links li {
        margin: 0.8rem 0;
        width: 90%;
        text-align: center;
        position: relative;
    }
    
    /* Mobile Dropdown Menu Fixes */
    .dropdown-menu {
        position: static !important;
        display: none;
        box-shadow: none;
        width: 100%;
        background: rgba(255, 255, 255, 0.98) !important;
        border-radius: 6px;
        margin-top: 15px;
        backdrop-filter: blur(10px);
        border: 2px solid rgba(10, 36, 99, 0.1);
        overflow: hidden;
    }
    
    .dropdown-menu.mobile-show {
        display: block !important;
        animation: fadeInScale 0.3s ease;
    }
    
    @keyframes fadeInScale {
        from {
            opacity: 0;
            transform: scale(0.95);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }
    
    .dropdown-menu li {
        margin: 0;
        width: 100%;
    }
    
    .dropdown-menu a {
        color: #0a2463 !important;
        border-bottom: 1px solid rgba(10, 36, 99, 0.1);
        padding: 15px 20px;
        font-weight: 600;
        display: block;
        text-align: center;
        transition: all 0.3s ease;
        font-size: 1rem;
    }
    
    .dropdown-menu a:hover {
        background: #f1f7ff !important;
        color: #0a2463 !important;
        transform: scale(1.02);
    }
    
    .dropdown-menu a:last-child {
        border-bottom: none;
    }
    
    /* Make Products link more clickable on mobile */
    .nav-item > a {
        padding: 15px 25px;
        display: block;
        border-radius: 6px;
        transition: all 0.3s;
        font-size: 1.1rem;
        background: rgba(255, 255, 255, 0.1);
        margin-bottom: 5px;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .nav-item > a:hover {
        background: rgba(255, 255, 255, 0.2) !important;
        transform: scale(1.02);
    }
    
    /* Remove hover effect on mobile, use click instead */
    .nav-item:hover .dropdown-menu {
        display: none;
    }
    
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .page-header h2 {
        font-size: 2.2rem;
    }
    
    .products-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Timeline responsive adjustments */
    .timeline::before {
        left: 30px;
    }
    
    .milestone {
        width: 100%;
        left: 0;
    }
    
    .milestone-left, .milestone-right {
        padding-left: 70px;
        padding-right: 0;
    }
    
    .milestone-left .milestone-content::after,
    .milestone-right .milestone-content::after {
        left: -12.5px;
    }
    
    /* Additional responsive fixes for inner pages */
    .about-content, 
    .mission-vision-grid,
    .contact-info,
    .values-grid {
        grid-template-columns: 1fr !important;
    }
    
    .workflow-content {
        width: 100% !important;
        margin-left: 0 !important;
    }
    
    .workflow-icon {
        display: none;
    }
    
    .workflow-line {
        display: none;
    }

    .tab-navigation {
        flex-direction: column;
        width: 80%;
        margin: 0 auto;
    }

    .tab-link {
        text-align: center;
        padding: 10px;
        border-bottom: 1px solid #e1e8f0;
    }

    .tab-link:last-child {
        border-bottom: none;
    }
    
    /* CYBERSEC AI Mobile Responsive */
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-item .feature-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .features-section h3 {
        font-size: 1.3em;
    }
    
    .metrics-display {
        flex-direction: column;
    }
    
    .ai-agent-card {
        flex-direction: column;
        text-align: center;
    }
    
    .ai-agent-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .code-display {
        font-size: 0.8rem;
        padding: 10px;
    }

    /* Sample Output Card Mobile Responsive */
    .sample-output-card,
    .executive-summary-card {
        padding: 1.5rem;
    }
    
    .summary-row {
        flex-direction: column;
        gap: 0;
    }
    
    .summary-row .summary-item {
        margin-bottom: 1.2rem;
    }
    
    .output-item,
    .summary-item {
        flex-direction: column;
        text-align: center;
    }
    
    .output-icon,
    .summary-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
        font-size: 1.5rem;
    }
    
    .output-label,
    .summary-label {
        display: block;
        margin-bottom: 0.3rem;
        min-width: auto;
    }
    
    .file-item {
        text-align: left;
    }
    
    .deployment-process-row {
        justify-content: flex-start;
        padding-bottom: 20px;
    }
    
    /* Custom LLM WAF Mobile Styles */
    .architecture-flow {
        flex-direction: column;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    
    .performance-metrics {
        grid-template-columns: 1fr;
    }
    
    .performance-features .feature-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .pilot-phases {
        flex-direction: column;
    }
    
    .phase-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .scenario-header {
        flex-direction: column;
        text-align: center;
    }
    
    .scenario-header h4 {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .detection-badges {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
}