/* Global Styles */
:root {
    --primary: #326bb2;
    --primary-dark: #0066cc;
    --secondary: #8338ec;
    --accent: #ff006e;
    --light: #f8f9fa;
    --dark: #212529;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --success: #28a745;
    --bg-secondary: #f0f2f5;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: #fff;
}

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

a {
    text-decoration: none;
    color: var(--primary);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    margin-bottom: 15px;
    font-weight: 600;
}

p {
    margin-bottom: 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    font-size: 36px;
    color: var(--dark);
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin: 20px auto;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: -30px auto 50px;
    color: var(--gray);
    font-size: 18px;
}

.cta-button {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.cta-button:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Header & Navigation */
header {
    /* position: fixed; */
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background-color: rgb(22 23 28);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links li a {
    font-weight: 500;
    color: var(--light);
}

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

.nav-links li a.cta-button {
    color: white;
}

/* Language Switcher */
.language-switcher {
    font-weight: 500;
    margin-left: 20px;
    color: var(--gray);
}

.language-switcher a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.language-switcher a:hover {
    color: var(--primary);
}

.language-switcher .active {
    color: var(--primary);
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    padding: 50px 0 100px;
    /* background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://source.unsplash.com/random/1920x1080/?technology') no-repeat center center; */
    background-color:#000;
    background-size: cover;
    color: white;
    text-align: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(22 23 28);
    z-index: 1;
    /* margin-top:50px; */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

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

.hero-content h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 30px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
}

/* Product Section */
.product-section {
    background-color: var(--light);
}

.product-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.product-image {
    flex: 1;
    min-width: 300px;
}

.product-placeholder {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.4) 100%);
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px dashed var(--primary);
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    position: relative;
    overflow: hidden;
}

.product-placeholder:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(58, 134, 255, 0.1) 0%, rgba(131, 56, 236, 0.1) 100%);
    z-index: -1;
}

.product-placeholder p {
    margin-top: 20px;
    font-weight: 500;
    font-size: 18px;
}

.product-description {
    flex: 1;
    min-width: 300px;
}

.feature-list {
    margin: 30px 0;
}

.feature-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.feature-list li:before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Benefits Section */
.benefits-section {
    background-color: white;
}

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

.benefit-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--light-gray);
}

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

.benefit-card i {
    color: var(--primary);
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

/* Journey Section */
.journey-section {
    background-color: var(--light);
}

.journey-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.journey-timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 35px;
    height: 100%;
    width: 4px;
    background: var(--primary);
}

.timeline-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    z-index: 2;
    flex-shrink: 0;
}

.timeline-content {
    margin-left: 30px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex-grow: 1;
}

.timeline-content h3 {
    color: var(--primary);
    font-size: 22px;
    margin-bottom: 15px;
}

/* Approach Section */
.approach-section {
    background-color: white;
}

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

.approach-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
}

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

.approach-card i {
    color: var(--secondary);
    margin-bottom: 20px;
}

.approach-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

/* Use Cases Section */
.use-cases-section {
    background-color: var(--light);
}

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

.use-case-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

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

.use-case-card i {
    color: var(--accent);
    margin-bottom: 20px;
}

.use-case-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

/* Contact Section */
.contact-section {
    background-color: white;
}

.cta-text {
    text-align: center;
    font-size: 20px;
    margin-bottom: 50px;
    color: var(--gray);
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background: var(--light);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    margin-bottom: 30px;
    font-size: 24px;
    color: var(--primary);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--dark);
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
}

.submit-button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background: var(--primary-dark);
}

.contact-info {
    flex: 1;
    min-width: 300px;
    padding: 20px 0;
}

.contact-info h3 {
    margin-bottom: 20px;
    font-size: 24px;
    color: var(--primary);
}

.contact-info ul {
    margin-bottom: 40px;
}

.contact-info ul li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.contact-info ul li:before {
    content: '✓';
    color: var(--success);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.contact-details p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-details i {
    color: var(--primary);
    margin-right: 15px;
    font-size: 20px;
}

/* Closing Section */
.closing-section {
    background-color: var(--light);
    text-align: center;
}

.closing-content {
    max-width: 800px;
    margin: 0 auto;
}

.newsletter {
    margin-top: 50px;
}

.newsletter h3 {
    margin-bottom: 20px;
    color: var(--primary);
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 12px 15px;
    border: 1px solid var(--dark);
    border-radius: 5px 0 0 5px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

.newsletter-form button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0 25px;
    border-radius: 0 5px 5px 0;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 45px;
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

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

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-logo h3 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.footer-logo p {
    color: var(--light-gray);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: white;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--light-gray);
}

.footer-column ul li a:hover {
    color: white;
}

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

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

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

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

.footer-bottom p {
    margin-bottom: 10px;
    color: var(--light-gray);
}

.footer-legal a {
    color: var(--light-gray);
    margin-left: 10px;
}

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

/* Responsive Design */
@media screen and (max-width: 992px) {
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content h2 {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    .nav-links {
        display: none; /* In a real implementation, add a mobile navigation menu */
    }
    
    .hero-section {
        padding: 150px 0 80px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content h2 {
        font-size: 20px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .timeline-number {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    .journey-timeline:before {
        left: 30px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: 5px;
        margin-bottom: 10px;
    }
    
    .newsletter-form button {
        border-radius: 5px;
        padding: 12px 25px;
    }
}

@media screen and (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .journey-timeline:before {
        left: 25px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        margin-top: 10px;
    }
}


/* ---------------------------------- */


/* Scrollbar Styles */
::-webkit-scrollbar {
    background: rgb(22 23 28);
    width: 12px;
}

::-webkit-scrollbar-track {
  background: rgb(22 23 28);
  border-radius: 8px;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 8px;
  border: 3px solid var(--bg-secondary);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

/* Hide scrollbar for Chrome/Safari/Opera on hover only */
.scrollbar-hover::-webkit-scrollbar {
  display: none;
}

.scrollbar-hover:hover::-webkit-scrollbar {
  display: block;
}
