/* ===== BASE STYLES ===== */
:root {
    --primary: #0066FF;
    --primary-dark: #0052CC;
    --secondary: #00D4AA;
    --dark: #0A192F;
    --light: #F8FAFC;
    --gray: #64748B;
    --gradient: linear-gradient(135deg, #0066FF 0%, #00D4AA 100%);
    --gradient-reverse: linear-gradient(135deg, #00D4AA 0%, #0066FF 100%);
    --shadow: 0 20px 40px rgba(0, 102, 255, 0.1);
    --shadow-dark: 0 20px 40px rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0A192F;
    color: #E2E8F0;
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
    position: relative;
}

h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 4rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 3rem;
    color: white;
}

h3 {
    font-size: 1.8rem;
    color: white;
}

p {
    font-size: 1.1rem;
    color: #94A3B8;
    margin-bottom: 1.5rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

/* ===== HEADER STYLES ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.4s ease;
    background-color: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

header.scrolled {
    padding: 10px 0;
    background-color: rgba(10, 25, 47, 0.98);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.logo-img {
    height: 85px;
    width: auto;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    white-space: nowrap;
}

.logo-text span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.desktop-nav ul li a {
    color: #94A3B8;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s;
    position: relative;
    padding: 5px 0;
    white-space: nowrap;
}

.desktop-nav ul li a:hover {
    color: white;
}

.desktop-nav ul li a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s;
}

.desktop-nav ul li a:hover:after {
    width: 100%;
}

.cta-button {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
    white-space: nowrap;
    flex-shrink: 0;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 102, 255, 0.3);
}

/* Mobile Navigation Toggle */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    z-index: 1001;
    flex-shrink: 0;
}

.mobile-menu-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Mobile Navigation Menu */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(10, 25, 47, 0.98);
    backdrop-filter: blur(15px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 80px 20px 40px;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav ul {
    list-style: none;
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.mobile-nav ul li {
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s, transform 0.4s;
}

.mobile-nav.active ul li {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation for mobile menu items */
.mobile-nav.active ul li:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.active ul li:nth-child(2) { transition-delay: 0.2s; }
.mobile-nav.active ul li:nth-child(3) { transition-delay: 0.3s; }
.mobile-nav.active ul li:nth-child(4) { transition-delay: 0.4s; }
.mobile-nav.active ul li:nth-child(5) { transition-delay: 0.5s; }
.mobile-nav.active ul li:nth-child(6) { transition-delay: 0.6s; }

.mobile-nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    display: block;
    padding: 12px 20px;
    border-radius: 10px;
    transition: all 0.3s;
    background-color: rgba(255, 255, 255, 0.05);
}

.mobile-nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #00D4AA;
    transform: translateX(10px);
}

.mobile-nav .cta-button {
    margin-top: 30px;
    font-size: 1.2rem;
    padding: 16px 40px;
    width: 100%;
    max-width: 300px;
}

.mobile-nav-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.mobile-nav-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* ===== HERO SECTION ===== */
#hero {
    padding-top: 150px;
    padding-bottom: 120px;
    overflow: hidden;
    background: linear-gradient(rgba(10, 25, 47, 0.9), rgba(10, 25, 47, 0.7)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #00D4AA;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.2rem;
    max-width: 700px;
    margin-bottom: 2.5rem;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 3rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-visual {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
}

.floating-element {
    position: absolute;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 170, 0.2);
}

.floating-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    right: 10%;
    animation: float 8s ease-in-out infinite;
}

.floating-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 20%;
    animation: float 10s ease-in-out infinite reverse;
}

.floating-3 {
    width: 100px;
    height: 100px;
    top: 40%;
    right: 5%;
    animation: float 12s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* ===== PROBLEM SECTION ===== */
#problem {
    background-color: rgba(15, 23, 42, 0.7);
}

.problem-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.problem-text {
    flex: 1;
}

.problem-visual {
    flex: 1;
    position: relative;
}

.problem-visual img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.problem-card {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 15px;
    padding: 25px;
    border-left: 4px solid var(--primary);
    transition: transform 0.3s, background 0.3s;
}

.problem-card:hover {
    transform: translateY(-10px);
    background: rgba(30, 41, 59, 0.8);
}

.problem-card h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.problem-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ===== SOLUTION SECTION ===== */
#solution {
    background-color: rgba(10, 25, 47, 0.9);
}

.solution-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.solution-tagline {
    font-size: 1.5rem;
    color: #00D4AA;
    font-weight: 600;
    margin-bottom: 20px;
}

.pathologies-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.pathology-card {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 15px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.pathology-card:hover {
    transform: translateY(-10px);
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(0, 102, 255, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.pathology-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: var(--primary);
}

.pathology-name {
    font-weight: 700;
    color: white;
    font-size: 1rem;
}
/* ===== PATHOLOGY VIEWER ===== */
.pathology-viewer-container {
    margin-bottom: 40px;
    background: rgba(30, 41, 59, 0.3);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(0, 102, 255, 0.2);
}

.image-viewer {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.image-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(10, 25, 47, 0.8);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#pathology-image {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 8px;
    display: block;
    transition: opacity 0.5s ease;
}

.image-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 25, 47, 0.85);
    padding: 20px;
    color: white;
    border-top: 2px solid var(--primary);
}

#image-title {
    color: #00D4AA;
    font-size: 1.8rem;
    margin-bottom: 5px;
}

#image-desc {
    font-size: 1rem;
    opacity: 0.9;
}

.viewer-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.control-btn {
    background: rgba(0, 102, 255, 0.2);
    color: white;
    border: 1px solid rgba(0, 102, 255, 0.5);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.control-btn:hover {
    background: rgba(0, 102, 255, 0.4);
    transform: translateY(-2px);
}

.control-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Active pathology card */
.pathology-card.active {
    background: rgba(0, 102, 255, 0.2);
    border-color: rgba(0, 102, 255, 0.8);
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .pathologies-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .pathologies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .image-container {
        min-height: 250px;
    }
    
    #image-title {
        font-size: 1.5rem;
    }
    
    .viewer-controls {
        flex-direction: column;
        align-items: center;
    }
    
    .control-btn {
        width: 200px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .pathologies-grid {
        grid-template-columns: 1fr;
    }
    
    .pathology-viewer-container {
        padding: 15px;
    }
    
    .image-info {
        padding: 15px;
    }
    
    #image-title {
        font-size: 1.3rem;
    }
}
/* ===== NEXTGEN ENGINE SECTION ===== */
#nextgen-engine {
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.9) 0%, rgba(15, 30, 60, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

#nextgen-engine:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 212, 170, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.engine-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.engine-tagline {
    font-size: 1.5rem;
    color: #00D4AA;
    font-weight: 600;
    margin-bottom: 10px;
}

.engine-title {
    font-size: 3.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.engine-subtitle {
    font-size: 1.3rem;
    color: #94A3B8;
    max-width: 800px;
    margin: 0 auto;
}

.engine-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.engine-feature {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(0, 102, 255, 0.2);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.engine-feature:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
}

.engine-feature:hover {
    transform: translateY(-15px);
    border-color: rgba(0, 102, 255, 0.5);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.feature-icon-container {
    width: 100px;
    height: 100px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
}

.feature-icon-container:after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 30px;
    border: 2px solid rgba(0, 102, 255, 0.2);
    animation: pulse 2s infinite;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
}

.feature-title {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 15px;
}

.engine-visual {
    background: rgba(20, 35, 65, 0.7);
    border-radius: 25px;
    padding: 50px;
    border: 1px solid rgba(0, 102, 255, 0.3);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.engine-visual:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 102, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(0, 212, 170, 0.05) 0%, transparent 50%);
}

.visual-title {
    text-align: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 30px;
}

.data-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.data-node {
    width: 120px;
    height: 120px;
    background: var(--gradient);
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: .7rem;
    box-shadow: 0 15px 30px rgba(0, 102, 255, 0.3);
    position: relative;
    animation: pulse-node 4s infinite;
}

.data-node:nth-child(2) {
    animation-delay: 0.5s;
}

.data-node:nth-child(3) {
    animation-delay: 1s;
}

.data-node i {
    font-size: 2rem;
    margin-bottom: 10px;
}

@keyframes pulse-node {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.connection-line {
    flex-grow: 1;
    height: 4px;
    background: rgba(0, 102, 255, 0.3);
    position: relative;
    min-width: 50px;
}

.connection-line:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    animation: flow 3s infinite linear;
}

@keyframes flow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ===== COMPETITIVE EDGE SECTION ===== */
#competitive {
    background-color: rgba(15, 23, 42, 0.7);
}

.edge-tagline {
    text-align: center;
    font-size: 1.8rem;
    color: #00D4AA;
    margin-bottom: 30px;
    font-weight: 600;
}

.edge-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.edge-visual {
    flex: 1;
    position: relative;
    height: 400px;
}

.edge-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.edge-text {
    flex: 1;
}

.edge-list {
    list-style: none;
}

.edge-list li {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
}

.edge-list li:last-child {
    border-bottom: none;
}

.edge-list li i {
    color: #00D4AA;
    font-size: 1.2rem;
}

/* ===== CONTACT SECTION ===== */
#contact {
    background: linear-gradient(rgba(10, 25, 47, 0.9), rgba(10, 25, 47, 0.7)), url('../images/contact-bg.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.contact-container {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form {
    background: rgba(30, 41, 59, 0.5);
    border-radius: 20px;
    padding: 50px;
    margin-top: 50px;
    border: 1px solid rgba(0, 102, 255, 0.2);
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: white;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    transition: border 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}

/* ===== FOOTER ===== */
footer {
    background-color: #0A192F;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
}

.footer-logo span {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-mission {
    max-width: 400px;
    color: #94A3B8;
    font-size: 0.95rem;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #64748B;
    font-size: 0.9rem;
}
/*lightbox*/
/* ===== IMAGE ZOOM & LIGHTBOX STYLES ===== */
.image-zoom-container {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 15px;
    cursor: zoom-in;
    transition: all 0.3s ease;
}

.image-zoom-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.zoom-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-zoom-container:hover .zoom-image {
    transform: scale(1.05);
}

.zoom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 25, 47, 0.2), rgba(10, 25, 47, 0.7));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
}

.image-zoom-container:hover .zoom-overlay {
    opacity: 1;
}

.zoom-overlay i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #00D4AA;
}

.zoom-text {
    font-size: 1rem;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 15px;
    border-radius: 20px;
}

/* GLightbox Custom Styles */
.gslide-image img {
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.glightbox-clean .gclose, 
.glightbox-clean .gnext, 
.glightbox-clean .gprev {
    background-color: rgba(0, 102, 255, 0.8);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glightbox-clean .gclose:hover, 
.glightbox-clean .gnext:hover, 
.glightbox-clean .gprev:hover {
    background-color: #0066FF;
}

.gdesc-inner {
    background: rgba(10, 25, 47, 0.9);
    padding: 20px;
    border-radius: 0 0 10px 10px;
}

.gdesc-inner h4 {
    color: white;
    margin-bottom: 5px;
}

.gdesc-inner p {
    color: #94A3B8;
    margin-bottom: 0;
}

/* For problem and competitive sections specifically */
.problem-visual .image-zoom-container,
.edge-visual .image-zoom-container {
    height: 400px;
    border: 2px solid rgba(0, 102, 255, 0.2);
}

.problem-visual .zoom-image,
.edge-visual .zoom-image {
    height: 100%;
    object-fit: contain;
}
/*coompetative*/
/* ===== COMPETITIVE EDGE LIST STYLES ===== */
.edge-list {
    list-style: none;
    margin-top: 30px;
}

.edge-list li {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: flex-start; /* Changed from center to flex-start */
    gap: 18px; /* Increased gap */
    text-align: left; /* Ensures text alignment */
}

.edge-list li:last-child {
    border-bottom: none;
}

.edge-list-icon {
    color: #00D4AA;
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 3px; /* Aligns icon with first line of text */
}

.edge-list-content {
    flex: 1;
    text-align: left; /* Ensures proper text alignment */
    line-height: 1.6;
}

.edge-list-content strong {
    color: white;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 4px;
}

.edge-list-content span {
    color: #94A3B8;
    display: block;
}

/* If you want bullet points with proper indentation */
.edge-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 24px;
    width: 8px;
    height: 8px;
    background: #00D4AA;
    border-radius: 50%;
}

/* Mobile responsiveness for edge list */
@media (max-width: 768px) {
    .edge-list li {
        padding: 15px 0;
        gap: 15px;
    }
    
    .edge-list-icon {
        font-size: 1.2rem;
    }
    
    .edge-list-content {
        font-size: 0.95rem;
    }
}