:root {
    --primary-dark: #333;
    --primary-light: #f8f9fa;
    --accent-blue: #007bff;
    --accent-green: #8BC34A;
    --accent-orange: #FF5722;
    --accent-yellow: #FFC107;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    color: var(--primary-dark);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header styles */
header {
    padding: 20px 0;
    background-color: white;
   
    position: sticky;
    top: 0;
    z-index: 100;
}

/* General Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 62px;
    width: 160px;
}

/* Desktop Navigation */
.nav-links ul {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 15px;
}

.nav-links a:hover {
    color: var(--accent-blue);
}

/* Dropdown */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 180px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 1;
    border-radius: 4px;
    padding: 8px 0;
    top: 30px;
    left: -10px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: var(--primary-dark);
    padding: 10px 16px;
    text-decoration: none;
    display: block;
    font-weight: normal;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

/* Language Selector */
.language-selector {
    display: flex;
    align-items: center;
}

.language-selector button {
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 10px;
    font-weight: 500;
    color: var(--primary-dark);
    transition: color 0.3s;
}

.language-selector button:hover {
    color: var(--accent-blue);
}

.language-selector button.active {
    color: var(--accent-blue);
    text-decoration: underline;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-menu-btn span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--primary-dark);
    transition: all 0.3s;
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;  /* Ensure it starts at the very top */
    right: -300px; /* Hidden initially */
    width: 250px;
    height: 100vh; /* Full height */
    background: white;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    padding: 20px;
    transition: right 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    z-index: 1000; /* Higher than the navbar */
}


.mobile-sidebar.active {
    right: 0;
}

.mobile-sidebar nav ul {
    list-style: none;
    padding: 0;
}

.mobile-sidebar nav ul li {
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.mobile-sidebar a {
    text-decoration: none;
    color: var(--primary-dark);
    font-size: 18px;
}

/* Close Button */
.close-btn {
    background: none;
    border: none;
    font-size: 28px;
    color: var(--primary-dark);
    cursor: pointer;
    align-self: flex-end;
}

/* Mobile Dropdown */
.mobile-dropdown {
    display: none;
    list-style: none;
    padding-left: 20px;
}

.mobile-dropdown li {
    padding: 5px 0;
}

.mobile-dropdown a {
    font-size: 16px;
}

/* Show Sidebar on Mobile */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
    }
}


/* Image Container */
.image-container {
    text-align: center;
    margin: 0; 
    margin-top: 8%; /* Margin for larger screens */
}

/* Image Styles */
.home-image {
    width: 290px;       /* Keep the desired width */
    max-width: 800px;  /* Set a maximum width */
    height: auto;      /* Maintain aspect ratio */
}

/* Mobile Styles */
@media (max-width: 768px) { /* For devices with max-width of 768px */
    .image-container {
        margin-top: 5%; /* Adjust top margin for mobile */
    }

    .home-image {
        width: 230px;    /* Make the image full width on mobile */
        max-width: none; /* Remove max-width to allow full width */
    }
}
@media (max-width: 412px) { /* For devices with max-width of 768px */
    .image-container {
        margin-top: 6%; /* Adjust top margin for mobile */
    }

    .home-image {
        width: 250px;    /* Make the image full width on mobile */
        max-width: none; /* Remove max-width to allow full width */
    }
}

/* Hero section */
.hero {
    padding: 0;  /* Remove padding to eliminate space */
    text-align: center;
    margin-bottom: 11%;
}

/* Hero content styles remain unchanged */
.hero h1 {
    font-size: 48px;
    margin-bottom: 20px; /* Keep this for spacing between title and text */
    color: var(--primary-dark);
    font-weight: 700;
}

.hero p {
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.7;
}


.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
    font-size: 15px;
    justify-content: center;
}

.btn-primary {
    background-color: var(--accent-blue);
    color: white;
}

.btn-primary:hover {
    background-color: #0069d9;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: white;
    color: var(--primary-dark);
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
}

.btn-secondary:hover {
    background-color: #f1f1f1;
    transform: translateY(-2px);
}

.play-icon {
    margin-right: 8px;
    font-size: 12px;
}

/* Full-width banner styles */
.full-width-banner {
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
    position: relative;
}

.banner-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Optional - if you want to set a specific height */
@media (min-width: 768px) {
    .banner-image {
        max-height: 300px; /* Adjust this value as needed */
    }
}

@media (max-width: 767px) {
    .banner-image {
        max-height: 200px; /* Smaller height on mobile */
    }
}



/* Enhanced Illustration Strip Section */
.illustration-strip {
    padding: 80px 0;
    height: 100px;
    width: 100%;
    background-color: white;
    overflow: hidden;
    position: relative;
   
}

.illustration-container {
    display: flex;
    align-items: center;
    height: 100%;
    width: max-content;
    padding: 0 40px;
    animation: scrollHorizontal 30s linear infinite;
}

.illustration-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 30px;
    transition: all 0.3s;
}

.illustration-item.graphic {
    margin: 0 20px;
}

.illustration-item.graphic svg {
    width: 48px;
    height: 48px;
}

.illustration-item.icon {
    opacity: 0.85;
}

.illustration-item.icon:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.illustration-item.icon svg {
    width: 28px;
    height: 28px;
    margin-bottom: 8px;
}

.illustration-item span {
    font-size: 12px;
    font-weight: 500;
    color: var(--primary-dark);
    white-space: nowrap;
}

@keyframes scrollHorizontal {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% + 40px));
    }
}

/* Mobile responsiveness for enhanced illustration strip */
@media (max-width: 768px) {
    .illustration-item.graphic svg {
        width: 36px;
        height: 36px;
    }
    
    .illustration-item.icon svg {
        width: 22px;
        height: 22px;
        margin-bottom: 4px;
    }
    
    .illustration-item span {
        font-size: 10px;
    }

    .illustration-item.graphic {
        margin: 0 15px;
    }

    .illustration-item.icon {
        margin: 0 20px;
    }
}

@media (max-width: 480px) {
    .illustration-item.graphic svg {
        width: 30px;
        height: 30px;
    }
    
    .illustration-item.icon svg {
        width: 20px;
        height: 20px;
    }
    
    .illustration-item span {
        font-size: 9px;
    }
}


/* another one  */
/* React UI Component Styles */
.react-ui-component {
    padding: 40px 20px;
}

.react-ui-component .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    gap: 60px;
    margin: 0 auto;
}

.react-ui-component .left-section {
    position: relative;
    width: 380px;
    height: 380px;
}

.react-ui-component .circle {
    position: absolute;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
}

.react-ui-component .circle-1 {
    width: 360px;
    height: 360px;
    top: 10px;
    left: 10px;
}

.react-ui-component .circle-2 {
    width: 280px;
    height: 280px;
    top: 50px;
    left: 50px;
}

.react-ui-component .circle-3 {
    width: 200px;
    height: 200px;
    top: 90px;
    left: 90px;
}

.react-ui-component .circle-center {
    width: 80px;
    height: 80px;
    top: 150px;
    left: 150px;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.react-ui-component .react-logo {
    width: 60px;
    height: 60px;
}

.react-ui-component .toggle-dot {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #2ecc71;
    top: 45px;
    left: 205px;
    border: 3px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.react-ui-component .plus-dot {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #f39c12;
    top: 215px;
    left: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    font-size: 20px;
}

.react-ui-component .check-dot {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    background-color: #e74c3c;
    bottom: 35px;
    left: 85px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 18px;
    transform: rotate(-10deg);
}

.react-ui-component .sign-up-button {
    position: absolute;
    background-color: #2196f3;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    bottom: 80px;
    left: 240px;
}

.react-ui-component .right-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.react-ui-component .title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
}

.react-ui-component .title span {
    color: #00bcd4;
}

.react-ui-component .features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.react-ui-component .feature {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.react-ui-component .feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.react-ui-component .feature-title {
    font-weight: bold;
    font-size: 16px;
}

.react-ui-component .feature-description {
    color: #666;
    font-size: 14px;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .react-ui-component .container {
        flex-direction: column;
        gap: 40px;
    }
    
    .react-ui-component .features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .react-ui-component .left-section {
        width: 300px;
        height: 300px;
        transform: scale(0.8);
    }
    
    .react-ui-component .features {
        grid-template-columns: 1fr;
    }
}





/* Features section */
.features {
    padding: 80px 0;
    background-color: white;
}

.features-header {
    text-align: left;
    margin-bottom: 60px;
}

.badge {
    display: inline-block;
    background-color: #333;
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.features-header h2 {
    padding: 10px 0;
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--primary-dark);
}

.features-header p {
    
    font-size: 18px;
    color: #555;
    max-width: 600px;
    
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden; /* Ensure contents fit within the icon container */
}

.feature-image {
    width: 30px; /* Adjust as needed */
    height: 30px; /* Adjust as needed */
    object-fit: contain; /* Maintain aspect ratio */
}

.feature-icon svg {
    width: 30px;
    height: 30px;
}

.feature-icon.yellow {
    background-color: #FFF3DC;
}

.feature-icon.orange {
    background-color: #FFEDE5;
}

.feature-icon.green {
    background-color: #E3F9E5;
}

.feature-icon.blue {
    background-color: #E0F2FF;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-card p {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.see-how {
    color: var(--accent-blue);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    transition: color 0.3s;
}

.see-how:hover {
    color: #0056b3;
}

/* Additional responsive styles for feature section */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .features-header h2 {
        font-size: 28px;
    }
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    color: white;
    padding: 60px 0 30px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    font-weight: 600;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background-color: var(--accent-blue);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #bbb;
    font-size: 14px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 220px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}