:root {
    --primary-color: #4f46e5;
    --secondary-color: #9333ea;
    --accent-color: #06b6d4;
    --background-light: #ffffff;
    --text-light: #1f2937;
    --text-secondary: #6b7280;
    --text-dark: #f3f4f6;
    --background-dark: #111827;
    --card-bg-light: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    --card-bg-dark: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #9333ea 50%, #db2777 100%);
    --gradient-secondary: linear-gradient(45deg, #93c5fd 0%, #67e8f9 50%, #86efac 100%);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* Dark mode */
[data-theme="dark"] {
    --background-light: #111827;
    --text-light: #f3f4f6;
    --text-secondary: #9ca3af;
    --card-bg-light: var(--card-bg-dark);
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    width: 100%;
    height: 6%;
    top: 0;
    background: transparent;
    backdrop-filter: blur(1000px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 3px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    background-color: #ffffff;
    
}

[data-theme="dark"] .navbar {
    background: rgba(17, 24, 39, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-brand {
    font-size: 1.75rem;
    font-weight: 600;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.025em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

.nav-menu a:hover {
    color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    display: block;
    position: relative;
    width: 1.0rem;
    height: 3px;
    background-color: var(--text-light);
    transition: all 0.3s ease;
    border-radius: 2px;
    
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: var(--text-light);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

    
      .containerr {
    background: rgba(255, 255, 255, 0.95);
    padding: 8px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    max-width: 80px;
    width: 40%;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

li {
    margin-bottom: 6px;
    margin-top: 6px;
}

.reg-containerr {
    display: flex;
    align-items: center;
    gap: 3px;
    background: linear-gradient(135deg, #a8e6cf 0%, #88d8c0 100%);
    padding: 3px 6px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.reg-containerr:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.reg-btn {
    flex: 1;
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 12px;
    padding: 3px 0;
    transition: color 0.3s ease;
}

.reg-btn:hover {
    color: #27ae60;
}

.copy-btn {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    padding: 4px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.05);
}

.copy-btn svg {
    width: 14px;
    height: 14px;
    color: #2c3e50;
}

.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #27ae60;
    color: white;
    padding: 8px 15px;
    border-radius: 6px;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 1000;
    font-weight: 600;
    font-size: 12px;
}

.toast.show {
    transform: translateX(0);
}

/* Button specific styles */
.download-service {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.download-apk {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.registration {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.copy-link {
    background: linear-gradient(135deg, #d299c2 0%, #fef9d7 100%);
}



/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(147, 51, 234, 0.05) 100%);
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: opacity 1s ease-in-out;
    display: inline-block;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Search Container */
.search-container {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
}

.search-container input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid transparent;
    border-radius: 1.5rem;
    background: var(--background-light);
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.search-container input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.2);
    transform: scale(1.02);
}

.search-btn {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s ease;
}

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

/* Container Styles */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    position: relative;
}

/* Services Section */
.services {
    min-height: 100vh;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(249, 250, 251, 0.95) 100%
    );
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(
        180deg,
        rgba(236, 72, 153, 0.03) 0%,
        transparent 100%
    );
    pointer-events: none;
}

/* Container Inner Spacing */
.services .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

   /* Add styles for categories and subcategories */
.category-tabs,
.subcategory-tabs {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    gap: 8px;
    padding: 8px 4px;
    margin: 0 -4px;
    scroll-snap-type: x mandatory;
}

.category-tabs::-webkit-scrollbar,
.subcategory-tabs::-webkit-scrollbar {
    display: none;
}

.category-tab,
.subcategory-tab {
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.category-tab {
    min-width: calc(25% - 8px);
    flex: 0 0 calc(25% - 8px);
    padding: 8px 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.category-icon,
.subcategory-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon {
    width: 24px;
    height: 24px;
}

.category-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.category-name {
    font-size: 0.85rem;
    margin-top: 4px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    padding: 0 4px;
}

.subcategory-tab {
    min-width: calc(33.33% - 8px);
    flex: 0 0 calc(33.33% - 8px);
    padding: 6px 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.subcategory-icon {
    width: 20px;
    height: 20px;
}

.subcategory-icon img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.subcategory-name {
    font-size: 0.8rem;
    margin-top: 3px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    padding: 0 4px;
}

/* Active states */
.category-tab.active,
.subcategory-tab.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

/* Hover effects */
.category-tab:hover,
.subcategory-tab:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.15);
}

/* Touch feedback */
.category-tab:active,
.subcategory-tab:active {
    transform: translateY(1px);
    box-shadow: 0 2px 6px rgba(99, 102, 241, 0.1);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding:  0.5rem;
}

/* Services Section */
.services {
    padding: 3rem 0;
    background: var(--background-light);
}

.services h1 {
    text-align: center;
    color: var(--text-light);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

/* About Section */
.about {
    padding: 6rem 2rem;
    background: var(--background-light);
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

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

.about-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-item p {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(147, 51, 234, 0.05) 100%);
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.contact-container {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid transparent;
    border-radius: 0.75rem;
    background: var(--background-light);
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.2);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.submit {
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
}

.info-item svg {
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--background-dark);
    color: var(--text-dark);
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--text-dark);
    transition: color 0.3s ease;
    padding: 0.5rem;
    border-radius: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    color: var(--primary-color);
    background: rgba(99, 102, 241, 0.2);
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

/* Floating Action Button */
.fab-container {
    position: fixed;
    bottom: 0.5rem;
    right: 1rem;
    z-index: 1000;
}

.fab-menu {
    position: absolute;
    bottom: 80px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.fab-menu.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.fab-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.fab-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 50%, #075E54 100%);
}

.whatsapp-btn img {
    width: 32px;
    height: 32px;
}

.theme-btn {
    background: var(--gradient-primary);
    color: white;
}

#languageSelect {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-lg);
    appearance: none;
    text-align: center;
}

.fab-toggle {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: var(--shadow-xl);
    transition: all 0.3s ease;
}

.fab-toggle:hover {
    transform: scale(1.05);
}

.fab-toggle svg {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.fab-menu.active + .fab-toggle svg {
    transform: rotate(45deg);
}

/* Theme toggle icons */
.sun-icon,
.moon-icon {
    display: none;
}

[data-theme="dark"] .sun-icon {
    display: block;
}

[data-theme="light"] .moon-icon
{
    display: block;
}

/* Responsive Design */
@media (max-width: 7680px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--background-light);
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
        box-shadow: var(--shadow-lg);
        border-radius: 0 0 1rem 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .navbar {
        padding: 1rem;
    }

    .hero {
        padding: 1rem;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .fab-container {
        bottom: 0.5rem;
        right: 0.5rem;
    }

    .services,
    .about,
    .contact {
        padding: 4rem 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background: rgba(99, 102, 241, 0.3);
    color: var(--text-light);
}

  .voice {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%; /* optional, if it's inside a block-level element */
}
 .voice-button {
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    vertical-align: middle;
}

.voice-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(238, 90, 36, 0.4);
}

.voice-button:active {
    transform: translateY(0px);
}

.voice-button.playing {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.voice-button svg {
    width: 20px;
    height: 20px;
    fill: white;
    transition: all 0.3s ease;
}

.voice-button.playing svg {
    animation: bounce 0.8s infinite alternate;
}

@keyframes bounce {
    0% { transform: scale(1); }
    100% { transform: scale(1.2); }
}

   
         .nav-dots {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 3;
        }

        .nav-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .nav-dot.active {
            background: white;
            transform: scale(1.5);
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            .hero-content p {
                font-size: 1.1rem;
            }
        }
        
 
  /* footer */
  
          .about-content {
            text-align: center;
        }

        .about-text p {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            color: #666;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .stat-item {
            text-align: center;
            padding: 2rem;
            background: #f8f9fa;
            border-radius: 10px;
        }

        .stat-item h3 {
            font-size: 2rem;
            color: #6366f1;
            margin-bottom: 0.5rem;
        }

          .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            background: #f8f9fa;
            border-radius: 8px;
        }

        .info-item svg {
            color: #6366f1;
        }

        /* Footer */
        .footer {
            background: #333;
            color: white;
            padding: 3rem 2rem 1rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .footer-section h3 {
            margin-bottom: 1rem;
            color: #6366f1;
        }

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

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-section ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

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

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: #6366f1;
            border-radius: 50%;
            transition: 0.3s ease;
        }

        .social-links a:hover {
            background: #5856eb;
        }

        .footer-bottom {
            text-align: center;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #555;
            color: #ccc;
        }
    
    /* dots */   
    
    .location-info {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 4px 0 8px 0;
  
  /* Rounded box styling */
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 6px 10px;
  width: fit-content;
  
    
  /* Hover effect (optional) */
  transition: all 0.2s ease;
}

.location-info:hover {
  background-color: #f1f3f4;
  border-color: #e8277cd5;
  box-shadow: 0 2px 6px rgba(232, 39, 124, 0.15);
}

.location-icon {
  fill: #e8277cd5;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

.location-text {
  font-size: 12px;
  color: #666;
  font-weight: 400;
  white-space: nowrap;
}

/* Alternative styling options */

/* Option 1: Colored background */
.location-info.colored {
  background-color: rgba(232, 39, 124, 0.1);
  border: 1px solid rgba(232, 39, 124, 0.2);
  color: #e8277cd5;
}

.location-info.colored .location-text {
  color: #e8277cd5;
}



/* Navigation Dots Container */
.nav-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
}

/* Individual Dot Styling */
.nav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
}

/* Hover Effects */
.nav-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
}

/* Active Dot State */
.nav-dot.active {
    width: 24px;
    height: 8px;
    border-radius: 12px;
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 
        0 2px 12px rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transform: scale(1);
}

/* Active Hover State */
.nav-dot.active:hover {
    background: linear-gradient(45deg, #ffffff, #ffffff);
    box-shadow: 
        0 4px 16px rgba(255, 255, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: scale(1.05);
}

/* Smooth Loading Animation */
.nav-dot::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: inherit;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-dot:hover::before {
    opacity: 1;
}

/* Accessibility Focus States */
.nav-dot:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

/* Alternative Modern Glass Effect */
.nav-dots.glass-effect .nav-dot {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-dots.glass-effect .nav-dot.active {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
}
      .partner-btn {
            display: inline-block;
            padding: 12px 24px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
            position: relative;
            overflow: hidden;
        }

        .partner-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
            background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
        }

        .partner-btn:active {
            transform: translateY(0);
            box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
        }

        .partner-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }

        .partner-btn:hover::before {
            left: 100%;
        }
