        
        *{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            line-height: 1.6;
            transition: all 0.3s ease;
        }
        
        /* Light Theme (Default) */
        body {
            background: linear-gradient(135deg, #ffffff 0%, #f5f5dc 100%);
            color: #333;
        }
        
        /* Dark Theme */
        body.dark-theme {
            background: linear-gradient(135deg, #0f0a1a 0%, #1a1320 100%);
            color: #e0e0e0;
        }
        
        /* Header Styles */
        header {
            background: linear-gradient(135deg, #ffffff 0%, #fafae6 100%);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(245, 245, 220, 0.3);
            position: sticky;
            top: 0;
            z-index: 100;
            transition: all 0.3s ease;
        }
        
        body.dark-theme header {
            background: rgba(15, 10, 26, 0.9);
            border-bottom: 1px solid rgba(88, 68, 120, 0.3);
        }
        
        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }
        
        #logo-img {
            cursor: pointer;
            height: 128px;
            width: 192px;
            background: none;
            border: none;
            vertical-align: middle;
            object-fit: cover;
            transition: transform 0.2s;
        }
        
        #logo-img:hover {
            transform: scale(1.08);
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(45deg, #8b4513, #daa520);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            font-weight: bold;
        }
        
        body.dark-theme .logo-icon {
            background: linear-gradient(45deg, #3d2a5c, #5a4278);
        }
        
        .logo-text {
            font-size: 1.5rem;
            font-weight: bold;
            color: #8b4513;
        }
        
        body.dark-theme .logo-text {
            color: #c5b8d9;
        }
        
        /* Theme Toggle Button */
        .theme-toggle {
            background: none;
            border: 2px solid #8b4513;
            border-radius: 50px;
            padding: 0.5rem 1rem;
            cursor: pointer;
            font-family: "Poppins", sans-serif;
            transition: all 0.3s ease;
            color: #8b4513;
        }
        
        .theme-toggle:hover {
            background: #8b4513;
            color: white;
            transform: scale(1.05);
        }
        
        body.dark-theme .theme-toggle {
            border-color: #7c6ba0;
            color: #c5b8d9;
        }
        
        body.dark-theme .theme-toggle:hover {
            background: #7c6ba0;
            color: #0f0a1a;
        }
        
        /* Main Content */
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
            text-align: center;
        }
        
        .welcome-section {
            margin-bottom: 4rem;
        }
        
        .welcome-section h1 {
            font-size: 3.5rem;
            font-family: "Quicksand", sans-serif;
            /* margin-bottom: 1rem; */
            background: linear-gradient(45deg, #8b4513, #daa520);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        body.dark-theme .welcome-section h1 {
            background: linear-gradient(45deg, #c5b8d9, #9b88c2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;

        }
        
        .welcome-section h2 {
            font-size: 1.7rem;
            font-family: "Poppins", sans-serif;
            font-weight: 400;
            margin-bottom: 5rem;
            color: #7a5c2e;
            letter-spacing: 0.02em;
            background: #daa520;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 8px rgba(218, 165, 32, 0.08);
        }
        
        body.dark-theme .welcome-section h2 {
            background: linear-gradient(45deg, #c5b8d9 40%, #9b88c2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: #b3a5c7;
            text-shadow: 0 2px 8px rgba(155, 136, 194, 0.08);
        }
        
        .get-started-btn {
            background: linear-gradient(45deg, #8b4513, #daa520);
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            font-family: poppins, sans-serif;
            font-size: 1.2rem;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
        }
        
        body.dark-theme .get-started-btn {
            background: linear-gradient(45deg, #3d2a5c, #5a4278);
            box-shadow: 0 4px 15px rgba(61, 42, 92, 0.3);
        }
        
        .get-started-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
        }
        
        body.dark-theme .get-started-btn:hover {
            box-shadow: 0 6px 20px rgba(61, 42, 92, 0.4);
        }
        
        /* Use Cases Section */
        .usecase-section {
            background: rgba(255, 255, 255, 0.5);
            border-radius: 20px;
            padding: 3rem 2rem;
            margin-top: 4rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(245, 245, 220, 0.3);
        }
        
        body.dark-theme .usecase-section {
            background: rgba(26, 19, 32, 0.8);
            border: 1px solid rgba(88, 68, 120, 0.3);
        }
        
        .usecase-section h3 {
            font-size: 2rem;
            font-family: Quicksand, sans-serif;
            margin-bottom: 2rem;
            color: #8b4513;
        }
        
        body.dark-theme .usecase-section h3 {
            color: #c5b8d9;
        }
        
        .usecase-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .usecase-card {
            background: rgba(255, 255, 255, 0.7);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(245, 245, 220, 0.5);
            transition: all 0.3s ease;
        }
        
        body.dark-theme .usecase-card {
            background: rgba(42, 32, 50, 0.8);
            border: 1px solid rgba(88, 68, 120, 0.4);
        }
        
        .usecase-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(139, 69, 19, 0.2);
        }
        
        body.dark-theme .usecase-card:hover {
            box-shadow: 0 10px 25px rgba(88, 68, 120, 0.3);
        }
        
        .usecase-card h4 {
            font-family: poppins, sans-serif;
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #8b4513;
        }
        
        body.dark-theme .usecase-card h4 {
            color: #c5b8d9;
        }
        
        .usecase-card p {
            color: #6d4c1b;
            font-family: poppins, sans-serif;
            line-height: 1.2rem;
            font-size: 1.05rem;
            margin-top: 0.5rem;
        }
        
        body.dark-theme .usecase-card p {
            color: #b3a5c7;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(245, 245, 220, 0.3);
            padding: 1.5rem 0;
        }
        
        body.dark-theme .footer-bottom {
            border-top: 1px solid rgba(88, 68, 120, 0.2);
        }
        
        .footer-bottom-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .footer-bottom-content p {
            color: #666;
            font-size: 0.9rem;
        }
        
        body.dark-theme .footer-bottom-content p {
            color: #b3a5c7;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
        }
        
        .social-links a {
            color: #666;
            transition: all 0.3s ease;
            padding: 0.5rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .social-links a:hover {
            color: #8b4513;
            background: rgba(139, 69, 19, 0.1);
            transform: translateY(-2px);
        }
        
        body.dark-theme .social-links a {
            color: #b3a5c7;
        }
        
        body.dark-theme .social-links a:hover {
            color: #c5b8d9;
            background: rgba(197, 184, 217, 0.1);
        }
        
        /* Footer Responsive Design */
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 2rem 1rem;
                text-align: center;
            }
        
            .footer-bottom-content {
                flex-direction: column;
                gap: 1rem;
                padding: 0 1rem;
                text-align: center;
            }
        
            .footer-logo {
                justify-content: center;
            }
        
            .footer-description {
                max-width: none;
            }
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .header-content {
                padding: 0 1rem;
            }
        
            .welcome-section h1 {
                font-size: 2.5rem;
            }
        
            .welcome-section h2 {
                font-size: 1.2rem;
            }
        
            main {
                padding: 2rem 1rem;
            }
        
            .usecase-section {
                padding: 2rem 1rem;
            }
        }
.quicksand-1 {
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: semi-bold;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}
