/* Main Styles for Jellybean Cyber */

/* CSS Reset & Base Styles */
:root {
    --primary-color: #0066FF;
    --dark-color: #111111;
    --light-color: #FFFFFF;
    --grey-color: #F2F2F2;
    --dark-grey: #333333;
    --medium-grey: #666666;
    --light-grey: #EEEEEE;
    --text-color: #333333;
    --header-height: 80px;
    --transition-speed: 0.3s;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed) ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-color);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--dark-color);
    border: 2px solid var(--dark-color);
}

.btn-secondary:hover {
    background-color: var(--dark-color);
    color: var(--light-color);
}

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--light-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all var(--transition-speed) ease;
}

.header.scrolled {
    background-color: var(--dark-color);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

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

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-color);
    transition: color var(--transition-speed) ease;
}

.scrolled .logo-text {
    color: var(--light-color);
}

.logo-text .highlight {
    color: var(--primary-color);
}

/* Logo Image Styling */
.logo-image {
    max-height: 50px; /* Adjust height as needed */
    width: auto; /* Maintain aspect ratio */
    display: block;
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list a {
    position: relative;
    font-weight: 500;
    color: var(--dark-color);
    transition: color var(--transition-speed) ease;
}

.scrolled .nav-list a {
    color: var(--light-color);
}

.nav-list a:hover {
    color: var(--primary-color);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed) ease;
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background-color: var(--dark-color);
    transition: all var(--transition-speed) ease;
}

.scrolled .mobile-menu-btn span {
    background-color: var(--light-color);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--dark-color);
    z-index: 999;
    padding: 100px 30px 30px;
    transition: right var(--transition-speed) ease;
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-link {
    display: block;
    font-size: 20px;
    font-weight: 500;
    color: var(--light-color);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-speed) ease;
}

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

/* Hero Section */
.hero-section {
    padding: 160px 0 100px;
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

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

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--dark-color);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: var(--dark-grey);
}

.hero-cta {
    display: flex;
    gap: 16px;
}

.hero-image {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 40%;
    z-index: 2;
}

/* Cybersecurity Graphic */
.cybersecurity-graphic {
    position: relative;
    width: 260px;   /* Increased to allow particles around */
    height: 260px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.security-padlock-svg {
    width: 200px;
    height: 200px;
    z-index: 2;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Particles around the icon */
.data-particles {
    position: absolute;
    top: 0; left: 0; width: 260px; height: 260px;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: #2196f3;
    opacity: 0.18;
    animation: float-particle 3.5s infinite alternate;
}

/* Place particles OUTSIDE the icon area */
.p1 { width: 28px; height: 28px; left: 0px; top: 20px; animation-delay: 0s;}
.p2 { width: 20px; height: 20px; left: 210px; top: 40px; animation-delay: 0.7s;}
.p3 { width: 18px; height: 18px; left: 40px; top: 210px; animation-delay: 1.2s;}
.p4 { width: 24px; height: 24px; left: 190px; top: 210px; animation-delay: 1.7s;}
.p5 { width: 16px; height: 16px; left: 230px; top: 130px; animation-delay: 2.2s;}
.p6 { width: 20px; height: 20px; left: 10px; top: 170px; animation-delay: 2.7s;}

/* Enhanced movement: more Y and some X */
@keyframes float-particle {
    0%   { transform: translate(0, 0);}
    30%  { transform: translate(10px, -20px);}
    60%  { transform: translate(-10px, -38px);}
    100% { transform: translate(0, -48px);}
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background-color: var(--light-grey);
}

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

.section-header h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--dark-color);
}

.section-header p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    color: var(--medium-grey);
}

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

.feature-card {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform var(--transition-speed) ease;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 102, 255, 0.1);
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--primary-color);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--medium-grey);
}

/* Solutions Section */
.solutions-section {
    padding: 100px 0;
    background-color: var(--light-color);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.solution-card {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    border: 1px solid var(--light-grey);
    transition: all var(--transition-speed) ease;
}

.solution-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.solution-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 102, 255, 0.1);
}

.solution-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--primary-color);
}

.solution-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.solution-card p {
    color: var(--medium-grey);
    margin-bottom: 20px;
}

.learn-more {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

.arrow {
    margin-left: 8px;
    transition: transform var(--transition-speed) ease;
}

.learn-more:hover .arrow {
    transform: translateX(5px);
}

/* Approach Section */
.approach-section {
    padding: 100px 0;
    background-color: var(--grey-color);
}

.approach-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.approach-text > p {
    margin-bottom: 40px;
    color: var(--medium-grey);
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.approach-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.step-content p {
    color: var(--medium-grey);
}

.approach-image {
    flex: 1;
    position: relative;
}

/* Security Diagram */
.security-diagram {
    position: relative;
    width: 100%;
    height: 400px;
}

.diagram-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background-color: var(--dark-color);
    border-radius: 50%;
    z-index: 4;
}

.diagram-layer {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    animation: pulse 3s infinite;
}

.layer1 {
    width: 150px;
    height: 150px;
    transform: translate(-50%, -50%);
    animation-delay: 0s;
    z-index: 3;
}

.layer2 {
    width: 250px;
    height: 250px;
    transform: translate(-50%, -50%);
    animation-delay: 1s;
    z-index: 2;
}

.layer3 {
    width: 350px;
    height: 350px;
    transform: translate(-50%, -50%);
    animation-delay: 2s;
    z-index: 1;
}

/* About Section */
.about-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.about-text {
    flex: 1;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.about-image img {
    max-width: 100%;
    border-radius: 8px;
}

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

.clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.client-logo {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: var(--light-grey);
    border-radius: var(--border-radius);
}

.placeholder-logo {
    font-weight: 700;
    color: var(--medium-grey);
    font-size: 18px;
    text-align: center;
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-content {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 60px;
    color: rgba(0, 102, 255, 0.1);
    font-family: Georgia, serif;
}

.testimonial-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--dark-grey);
}

.testimonial-author {
    margin-top: 20px;
}

.author-name {
    font-weight: 700;
    margin-bottom: 5px;
}

.author-title {
    color: var(--medium-grey);
    font-size: 14px;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.testimonial-arrow {
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-grey);
    border-radius: 50%;
    transition: all var(--transition-speed) ease;
}

.testimonial-arrow:hover {
    background-color: var(--primary-color);
}

.testimonial-arrow svg {
    width: 24px;
    height: 24px;
    fill: var(--dark-grey);
    transition: fill var(--transition-speed) ease;
}

.testimonial-arrow:hover svg {
    fill: var(--light-color);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
    margin: 0 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--light-grey);
    cursor: pointer;
    transition: background-color var(--transition-speed) ease;
}

.dot.active {
    background-color: var(--primary-color);
}

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

.testimonial-card {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 10px;
}

.testimonial-author {
    font-size: 14px;
    font-weight: bold;
    color: #555;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--grey-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.contact-form-container {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

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

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

.form-group.full-width {
    grid-column: 1 / -1;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

input, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--light-grey);
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
    transition: border-color var(--transition-speed) ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.info-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(0, 102, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-color);
}

.info-text a {
    color: var(--primary-color);
}

.emergency-support {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.emergency-support h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--light-color);
}

.emergency-support p {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.emergency-phone {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo .logo-text {
    color: var(--light-color);
    margin-bottom: 20px;
    display: inline-block;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--transition-speed) ease;
}

.social-icon:hover {
    background-color: var(--primary-color);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--light-color);
}

.footer-links h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--light-color);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-speed) ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-newsletter h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--light-color);
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--light-color);
}

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

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

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

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    transition: color var(--transition-speed) ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* Orbit Section */
.orbit-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0 40px 0;
}
.orbit-graphic {
    position: relative;
    width: 340px;
    height: 340px;
    margin: 0 auto;
}
.orbit-center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 50%;
    width: 120px; height: 120px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 24px rgba(0,0,0,0.08);
    z-index: 2;
}
.orbit-logo {
    text-align: center;
    font-weight: 700;
    color: #2b2e4a;
    font-size: 1.1rem;
    line-height: 1.2;
}
.orbit-ring {
    position: absolute;
    top: 50%; left: 50%;
    width: 260px; height: 260px;
    margin-left: -130px; margin-top: -130px;
    border: 2px dashed #b2b7c2;
    border-radius: 50%;
    z-index: 1;
    animation: orbit-rotate 12s linear infinite;
}
@keyframes orbit-rotate {
    100% { transform: rotate(360deg);}
}
.orbit-item {
    position: absolute;
    width: 90px; height: 90px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    text-align: center;
    font-size: 0.95rem;
    padding: 10px 5px;
}
.orbit-item img {
    width: 32px; height: 32px; margin-bottom: 6px;
}
.orbit-item span {
    font-size: 0.85rem;
    color: #2b2e4a;
    font-weight: 500;
}
.oi1 { top: 0; left: 50%; transform: translate(-50%, -50%);}
.oi2 { top: 50%; left: 100%; transform: translate(-50%, -50%);}
.oi3 { top: 100%; left: 50%; transform: translate(-50%, -50%);}
.oi4 { top: 50%; left: 0%; transform: translate(-50%, -50%);}

/* About Orbit Graphic */
.orbit-graphic-static {
    position: relative;
    width: 320px;
    height: 320px;
    margin: 0 auto;
}
.orbit-center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 50%;
    width: 110px; height: 110px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 24px rgba(0,0,0,0.08);
    z-index: 2;
}
.orbit-logo {
    text-align: center;
    font-weight: 700;
    color: #2b2e4a;
    font-size: 1.1rem;
    line-height: 1.2;
}
.orbit-ring-static {
    position: absolute;
    top: 50%; left: 50%;
    width: 220px; height: 220px;
    margin-left: -110px; margin-top: -110px;
    border: 2px dashed #b2b7c2;
    border-radius: 50%;
    z-index: 1;
}
.orbit-item-static {
    position: absolute;
    width: 90px; height: 90px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    text-align: center;
    font-size: 0.95rem;
    padding: 10px 5px;
    transition: box-shadow 0.2s;
}
.orbit-item-static img {
    width: 32px; height: 32px; margin-bottom: 6px;
    filter: drop-shadow(0 0 2px #007bff44);
}
.orbit-item-static span {
    font-size: 0.85rem;
    color: #2b2e4a;
    font-weight: 500;
}
/* Place items around the ring */
.oi1 { top: 0; left: 50%; transform: translate(-50%, -50%);}
.oi2 { top: 50%; left: 100%; transform: translate(-50%, -50%);}
.oi3 { top: 100%; left: 50%; transform: translate(-50%, -50%);}
.oi4 { top: 50%; left: 0%; transform: translate(-50%, -50%);}

/* Particles */
.orbit-particles {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
}
.orbit-particle {
    position: absolute;
    background: #007bff;
    border-radius: 50%;
    opacity: 0.18;
    animation: orbit-particle-float 4s infinite alternate;
}
.op1 { width: 18px; height: 18px; top: 18%; left: 22%; animation-delay: 0s;}
.op2 { width: 10px; height: 10px; top: 70%; left: 80%; animation-delay: 1s;}
.op3 { width: 14px; height: 14px; top: 80%; left: 30%; animation-delay: 2s;}
.op4 { width: 8px; height: 8px; top: 40%; left: 85%; animation-delay: 0.5s;}
@keyframes orbit-particle-float {
    0% { transform: translateY(0);}
    100% { transform: translateY(-18px);}
}

/* Keyframes */
@keyframes particleMove {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(20px, 20px);
    }
    50% {
        transform: translate(0, 40px);
    }
    75% {
        transform: translate(-20px, 20px);
    }
    100% {
        transform: translate(0, 0);
    }
}

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

/* Solution Popup Styles */
.solution-popup {
    display: none;
    position: fixed;
    z-index: 3000; /* Increased to ensure it's above all content */
    left: 0; top: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.45);
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-sizing: border-box;
}
.solution-popup.active {
    display: flex;
}
.popup-content {
    background: #fff;
    border-radius: 12px;
    max-width: 95vw;
    width: 400px;
    padding: 32px 20px 20px 20px;
    position: relative;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    text-align: left;
    z-index: 3100;
    animation: popup-fade-in 0.2s;
}
@keyframes popup-fade-in {
    from { opacity: 0; transform: scale(0.96);}
    to   { opacity: 1; transform: scale(1);}
}
.close-popup {
    position: absolute;
    top: 12px; right: 16px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #333;
    cursor: pointer;
    line-height: 1;
    z-index: 3200;
}
@media (max-width: 600px) {
    .popup-content {
        width: 100vw;
        max-width: 100vw;
        min-height: 180px;
        padding: 24px 8px 16px 8px;
    }
    .close-popup {
        top: 8px; right: 10px;
        font-size: 1.7rem;
    }
}

/* Learn More Button Style */
.learn-more {
    display: inline-block;
    margin-top: 16px;
    padding: 10px 22px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 24px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}
.learn-more:hover,
.learn-more:focus {
    background: #0052cc;
    color: #fff;
    outline: none;
}
.arrow {
    margin-left: 6px;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    body {
        padding-top: var(--header-height);
    }
    .about-content {
        flex-direction: column;
        gap: 32px;
        align-items: flex-start;
    }
    .about-text {
        font-size: 16px;
        text-align: left;
    }
    .about-image,
    .about-orbit-graphic {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    .hero-section {
        padding: 120px 0 60px;
    }
    .hero-content h1 {
        font-size: 32px;
    }
    .hero-content p {
        font-size: 16px;
    }
    .hero-image {
        position: static;
        transform: none;
        width: 100%;
        margin: 32px 0 0 0;
        display: flex;
        justify-content: center;
    }
    .cybersecurity-graphic {
        margin: 0 auto;
    }
}
@media (max-width: 600px) {
    .container {
        padding: 0 8px;
    }
    .section-header h2 {
        font-size: 26px;
    }
    .features-grid,
    .solutions-grid,
    .clients-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Fade In Animation */
.fade-in {
    opacity: 1 !important;
    transition: none !important;
}