:root {
    --primary-color: #000000;
    --secondary-color: #ffffff;
    --accent-color: #1a1f36;
    --text-color: #000000;
    --bg-color: #ffffff;
    --border-color: rgba(0, 0, 0, 0.1);
}

.dark-mode {
    --primary-color: #ffffff;
    --secondary-color: #333333;
    --accent-color: #1c1c1c;
    --text-color: #ffffff;
    --bg-color: #212121;
    --border-color: rgba(255, 255, 255, 0.072);
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    transition: background-color 0.3s ease;
}

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

/* Navigation */
nav {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    width: 100%;
    background-color: var(--bg-color);
    z-index: 1000;
    top: 0;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 1;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
}

.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-color);
    font-size: 20px;
    padding: 8px;
}

/* Hero Section */
.full-height {
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero {
    position: relative;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--text-color);
    opacity: 0.8;
}

/* Vector Placeholders */
.vector-placeholder {
    background: none;
    border-radius: 20px;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-color);
    opacity: 1;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 0 10px;
    position: relative;
}

.btn::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 22px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.btn.primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
}

.btn.primary:hover::after {
    border-color: var(--primary-color);
}

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

.btn.secondary:hover::after {
    border-color: var(--text-color);
}

/* Sections */
.section {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
}

.section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 36px;
}

/* Features Grid */
.features-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    padding-left: 20px;
    border-left: 2px solid var(--border-color);
    transition: border-color 0.3s ease;
}

.feature-item:hover {
    border-left-color: var(--primary-color);
}

.feature-item .title-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.feature-item i {
    font-size: 24px;
    color: var(--text-color);
}

.feature-item h3 {
    font-size: 24px;
    margin: 0;
}

.feature-item p {
    opacity: 0.8;
    line-height: 1.6;
    margin-left: 36px; /* icon width + gap */
}

@media (max-width: 768px) {
    .feature-item {
        padding-left: 15px;
    }
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.product-card {
    text-align: center;
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
}

.product-card h3 {
    margin: 20px 0;
}

.product-card .vector-img {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    transition: box-shadow 0.3s ease;
}

.product-card:hover .vector-img {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

/* Dark mode adjustments */
.dark-mode .product-card .vector-img {
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.03);
}

.dark-mode .product-card:hover .vector-img {
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.05);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

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

.service i {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--text-color);
}

/* Founder Section */
.founder-info {
    max-width: 1000px;
    margin: 0 auto;
}

.founder-content {
    text-align: left;
}

.founder-title {
    font-size: 18px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.founder-links {
    margin-top: 30px;
}

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

.faq-item {
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: 20px;
}

.faq-item h3 {
    margin-bottom: 15px;
}

/* Contact Section */
.contact-grid {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-info p {
    margin: 20px 0;
}

.contact-info i {
    margin-right: 10px;
}

/* Footer */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 18px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-color);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.copyright {
    margin-top: 20px;  /* Add space above copyright */
    text-align: center;
    width: 100%;
}
.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    color: var(--text-color);
    font-size: 20px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .split-layout {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .nav-links {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-image {
        display: none;
    }
}

@media (max-width: 480px) {
    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .btn {
        display: block;
        margin: 10px auto;
        max-width: 200px;
    }
}
.company-description p {
    margin-bottom: 10px; /* Space below paragraphs */
}

.social-links {
    margin-bottom: 10px; /* Space below social links */
}
.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 30px;
    transition: filter 0.3s ease;
}

.nav-right {
    display: flex;
    align-items: center;
}
.dark-mode .logo-img {
    filter: invert(1);
}
.company-description {
    width: 50%;
}
.herolight-img{
    height: 460px;
}

/* Add these styles */
.hero-img, .vector-img {
    width: 100%;
    height: 80%;
    object-fit: cover;
    display: none;
}

/* Show regular images that don't have dark/light variants */
.vector-img:not(.light-img):not(.dark-img) {
    display: block;
}

.light-mode .light-img {
    display: block;
}

.light-mode .dark-img {
    display: none;
}

.dark-mode .light-img {
    display: none;
}

.dark-mode .dark-img {
    display: block;
}

/* Update vector placeholder for founder section */
.founder-info .vector-placeholder {
    aspect-ratio: auto;
    height: auto;
    background: none;
}

.founder-info .vector-img {
    width: auto;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

.vector-img {
    opacity: 1;
}

/* Products Grid */
.products-grid .product-card img.vector-img {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    transition: box-shadow 0.3s ease;
}

.products-grid .product-card:hover img.vector-img {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

/* Dark mode adjustments */
.dark-mode .products-grid .product-card img.vector-img {
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.03);
}

.dark-mode .products-grid .product-card:hover img.vector-img {
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.05);
}

/* Plugin specific styles */
.plugins-container {
    max-width: 1200px;
    margin: 0 auto;
}

.plugin-item {
    margin-bottom: 2rem;
}

.plugin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: #1371B4;
    color: white;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.download-btn:hover {
    background-color: #0d5c9e;
}

.video-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: #f0f0f0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.video-btn:hover {
    background-color: #e0e0e0;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    z-index: 1000;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
    margin: 5% auto;
    padding: 20px;
    background: white;
    border-radius: 8px;
}

.close-btn {
    position: absolute;
    right: 10px;
    top: 5px;
    font-size: 24px;
    cursor: pointer;
}

#videoContainer {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

#videoContainer iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}