/* Base Styles */
:root {
    --primary-color: #6c5ce7;
    --primary-dark: #5649c0;
    --secondary-color: #a29bfe;
    --dark-color: #1a1a2e;
    --darker-color: #16213e;
    --darkest-color: #0f0f1a;
    --light-color: #f5f6fa;
    --light-gray: #e2e2e2;
    --gray-color: #4a4a68;
    --success-color: #00b894;
    --warning-color: #fdcb6e;
    --danger-color: #d63031;
    --space-blue: #0a1a2f;
    --star-color: rgba(255, 255, 255, 0.8);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--light-color);
    background-color: var(--dark-color);
    position: relative;
    overflow-x: hidden;
}

#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* behind everything */
  background-color: #0a192f;  /* or your dark background */
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-align: center;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108, 92, 231, 0.3);
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* Header Styles */
.header {
    background-color: rgba(22, 33, 62, 0.9);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-placeholder {
    width: 50px;
    height: 50px;
    background-image: url('logo.png');
    background-size: contain;     
    background-repeat: no-repeat;  
    background-position: center; 
    background-color: var(--gray-color);
    border-radius: 12px;
    flex-shrink: 0;
}

.company-name {
    font-size: 1.8rem;
    color: var(--light-color);
    line-height: 1;
}

.company-tagline {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 500;
    margin-top: 3px;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav a {
    color: var(--light-color);
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
}

.nav a:hover {
    color: var(--primary-color);
}

.nav a.active {
    color: var(--primary-color);
}

.nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: white;
}

/* Hero Section */
.hero {
    
    padding: 150px 0 120px;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero h2 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--secondary-color);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Apps Section */
.apps-section {
    padding: 100px 0;
}

.apps-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
    color: white;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.app-card {
    background: rgba(26, 26, 46, 0.7);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.app-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(108, 92, 231, 0.3);
}

.app-icon1 {
    width: 80px;
    height: 80px;
    background-image: url("apponelogo.png");
    background-size: contain;     
    background-repeat: no-repeat;  
    background-position: center; 
    background-color: var(--gray-color);
    border-radius: 20px;
    margin: 0 auto 20px;
}
.app-icon2 {
    width: 80px;
    height: 80px;
    background-image: url("mysmartnoteslogo.png");
    background-size: contain;     
    background-repeat: no-repeat;  
    background-position: center; 
    background-color: var(--gray-color);
    border-radius: 20px;
    margin: 0 auto 20px;
}
.app-icon3 {
    width: 80px;
    height: 80px;
    background-color: var(--gray-color);
    border-radius: 20px;
    margin: 0 auto 20px;
}
.app-icon4{
     width: 80px;
    height: 80px;
    background-image: url("/apps/images/IMG-20251002-WA0089.jpg");
    background-size: contain;     
    background-repeat: no-repeat;  
    background-position: center; 
    background-color: var(--gray-color);
    border-radius: 20px;
    margin: 0 auto 20px;
}

.app-card h3 {
    margin-bottom: 20px;
    color: white;
    font-size: 1.4rem;
}

/* App Detail Page */
.app-detail-section {
    padding: 80px 0;
}

.app-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.app-icon-large {
    width: 120px;
    height: 120px;
    background-image: url("apponelogo.png");
    background-size: contain;     
    background-repeat: no-repeat;  
    background-position: center; 
    background-color: var(--gray-color);
    border-radius: 25px;
    flex-shrink: 0;
}
.app-icon-large2 {
    width: 120px;
    height: 120px;
    background-image: url("mysmartnoteslogo.png");
    background-size: contain;     
    background-repeat: no-repeat;  
    background-position: center; 
    background-color: var(--gray-color);
    border-radius: 25px;
    flex-shrink: 0;
}
.app-icon-large3 {
    width: 120px;
    height: 120px;
    background-image: url("/apps/images/IMG-20251002-WA0089.jpg");
    background-size: contain;     
    background-repeat: no-repeat;  
    background-position: center; 
    background-color: var(--gray-color);
    border-radius: 25px;
    flex-shrink: 0;
}
.app-header h1 {
    font-size: 2.5rem;
    color: white;
}

.app-content {
    max-width: 800px;
    margin: 0 auto;
}

.app-section {
    margin-bottom: 40px;
}

.app-section h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.editable-content {
    background: rgba(26, 26, 46, 0.5);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.editable-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.editable-content h2, 
.editable-content h3 {
    color: var(--secondary-color);
    margin: 25px 0 15px;
}

.app-links {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.small-text {
    font-size: 0.9rem;
    color: var(--light-gray);
    margin-top: 10px;
}

/* About Section */
.about-section /* About Company Page Styles */
{
    padding: 80px 0;
}

.about-section h1 {
    text-align: center;
    margin-bottom: 10px;
    color: white;
}

.subtitle {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 40px;
    font-size: 1.2rem;
}

.about-content {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.about-image {
    flex: 1;
}

.company-image-placeholder {
    background-image: url('logo.png');
    background-size: contain;     
    background-repeat: no-repeat;  
    background-position: center;
    width: 70%;
    height: 395px;
    background-color: var(--gray-color);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    color: var(--primary-color);
    margin: 25px 0 15px;
    font-size: 1.5rem;
}

.mission-list {
    list-style-type: none;
    margin: 20px 0;
}

.mission-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 30px;
}

.mission-list li::before {
    content: "→";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.cta-box {
    background: rgba(108, 92, 231, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    padding: 25px;
    margin-top: 40px;
    text-align: center;
}

.cta-box p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Services Page Styles */
.services-section {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.service-card {
    background: rgba(26, 26, 46, 0.7);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(108, 92, 231, 0.3);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--light-gray);
    line-height: 1.7;
}

.services-note {
    background: rgba(214, 48, 49, 0.1);
    border: 1px solid var(--danger-color);
    border-radius: 10px;
    padding: 20px;
    margin: 40px 0;
}

.services-note h3 {
    color: var(--danger-color);
    margin-bottom: 10px;
}

.centered {
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .company-image-placeholder {
        height: 300px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .about-company-section,
    .services-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .subtitle {
        font-size: 1rem;
    }
    
    .about-text h2 {
        font-size: 1.3rem;
    }
    
    .mission-list li {
        padding-left: 25px;
    }
    
    .cta-box {
        padding: 20px;
    }
    
    .service-icon {
        font-size: 2rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
}

/* Contact Section */
/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
}

.contact-section h1 {
    text-align: center;
    margin-bottom: 10px;
    color: white;
}

.contact-section .subtitle {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 40px;
    font-size: 1.2rem;
}

.contact-options {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.contact-method {
    flex: 1;
    background: rgba(26, 26, 46, 0.7);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.method-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.method-header i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.method-header h2 {
    font-size: 1.4rem;
    color: white;
    margin: 0;
}

.contact-form-container {
    flex: 1.5;
}

.other-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.method-card {
    flex: 1;
    padding: 20px;
    border-radius: 8px;
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.method-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.method-card p {
    margin-bottom: 15px;
    color: var(--light-gray);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.whatsapp-btn {
    border-color: #25D366;
    color: #25D366;
}

.whatsapp-btn:hover {
    background: #25D366;
    color: white;
}

.linkedin-btn {
    border-color: #0077B5;
    color: #0077B5;
}

.linkedin-btn:hover {
    background: #0077B5;
    color: white;
}

.contact-info {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    flex: 1;
    background: rgba(26, 26, 46, 0.7);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.info-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-card h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.info-card p {
    color: var(--light-gray);
    margin-bottom: 5px;
}

/* Form Styles */
.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: white;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray-color);
    border-radius: 6px;
    background: rgba(10, 26, 47, 0.5);
    color: var(--light-color);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.2);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .contact-options {
        flex-direction: column;
    }
    
    .contact-method {
        width: 100%;
    }
    
    .other-methods {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .method-card {
        flex: 1 1 calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .method-card {
        flex: 1 1 100%;
    }
    
    .contact-info {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .contact-section .subtitle {
        font-size: 1rem;
    }
    
    .method-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .btn-outline {
        justify-content: center;
    }
    
    .contact-form {
        padding: 20px;
    }
}

.contact-section h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
    color: white;
}

.contact-section p {
    text-align: center;
    margin-bottom: 40px;
    color: var(--secondary-color);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(26, 26, 46, 0.5);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: white;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--gray-color);
    border-radius: 6px;
    background: rgba(10, 26, 47, 0.5);
    color: var(--light-color);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 180px;
}

/* Footer */
.footer {
    background-color: var(--darker-color);
    padding: 30px 0;
    text-align: center;
    
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background: var(--darker-color);
        flex-direction: column;
        padding: 30px;
        transition: left 0.3s ease;
        z-index: 99;
        backdrop-filter: blur(10px);
    }

    .nav.active {
        left: 0;
    }

    .nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .hero {
        padding: 120px 0 80px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .app-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .app-icon-large {
        width: 100px;
        height: 100px;
    }
     .app-icon-large2 {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h2 {
        font-size: 1.1rem;
    }
    
    .apps-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .app-links {
        flex-direction: column;
        gap: 15px;
    }
}
/* Typing Animation */
.typed-text {
  font-size: 1.5rem;
  color: #00e676;
  font-weight: bold;
}

.cursor {
  display: inline-block;
  background-color: #00e676;
  width: 2px;
  animation: blink 0.7s steps(2, start) infinite;
  margin-left: 2px;
  height: 1.2em;
  vertical-align: bottom;
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}

/* Add these new styles to your existing style.css */

/* App Detail Page Enhancements */
.app-version {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Screenshots Section */
.screenshots-container{
    
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--darker-color);
}

.screenshots-container::-webkit-scrollbar {
    height: 8px;
}

.screenshots-container::-webkit-scrollbar-track {
    background: var(--darker-color);
}

.screenshots-container::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 4px;
}

.screenshot {
    flex: 0 0 250px;
    text-align: center;
}

.screenshot-placeholder {
    
    width: 250px;
    height: 450px;
    background-color: var(--gray-color);
    border-radius: 10px;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.screenshot p {
    color: var(--light-gray);
    font-size: 0.9rem;
}

/* Features List */
.features-list {
    list-style-type: none;
}

.features-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.features-list li::before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

/* Privacy Policy Page */
.privacy-section {
    padding: 80px 0;
}

.privacy-content {
    background: rgba(26, 26, 46, 0.5);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 30px;
}

.privacy-content section {
    margin-bottom: 30px;
}

.privacy-content h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.privacy-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.privacy-content li {
    margin-bottom: 8px;
}

.last-updated {
    color: var(--secondary-color);
    font-style: italic;
    margin-bottom: 20px;
}

/* About App Page */
.about-app-section {
    padding: 80px 0;
}

.about-app-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.about-app-content section {
    margin-bottom: 30px;
}

.version-history {
    margin-top: 20px;
}

.version {
    background: rgba(26, 26, 46, 0.3);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.version h3 {
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.version .date {
    color: var(--light-gray);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.version ul {
    padding-left: 20px;
}

/* Breadcrumbs */
.breadcrumbs {
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--light-gray);
}

.breadcrumbs a {
    color: var(--secondary-color);
}

.breadcrumbs span {
    color: var(--primary-color);
}

/* Back Button */
.back-btn {
    margin-top: 40px;
    display: inline-block;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .screenshots-container {
        gap: 15px;
    }
    
    .screenshot {
        flex: 0 0 200px;
    }
    
    .screenshot-placeholder {
        width: 200px;
        height: 360px;
    }
    
    .about-app-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .screenshot {
        flex: 0 0 160px;
    }
    
    .screenshot-placeholder {
        width: 160px;
        height: 280px;
    }
    
    .privacy-content,
    .about-app-content {
        padding: 20px;
    }
}
.screenshot img,
.screenshot-img {
    width: 100%;
    max-width: 180px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.screenshot img:hover {
    transform: scale(1.03);
}

.screenshots-container {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--darker-color);
}

/* Make sure the images stack properly on very small screens */
@media (max-width: 500px) {
    .screenshots-container {
        gap: 12px;
    }

    .screenshot-img {
        max-width: 140px;
    }
}

