* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    box-shadow: none !important;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary: #ff512f;
    --secondary: #dd2476;
    --accent: #fcb045;
    --dark: #2c2c2c;
    --light: #fff8f0;
    --text: #1e1e1e;
    --message: rgb(0, 166, 255);
    --sidebar-width: 280px;
    --header-height: 90px;
}

body {
color: var(--text);
line-height: 1.6;
overflow-x: hidden;
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 18px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 15px var(--primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--primary);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.message{
    color: var(--message);
}
.section {
    padding: 80px 0px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* common */
.d-none {
    display: none;
}

/* Floating Action Buttons */
.fab {
    position: fixed;
    right: 20px;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 24px rgba(13, 110, 253, 0.35);
    cursor: pointer;
    transition: transform .2s ease, opacity .2s ease, box-shadow .2s ease;
    z-index: 1100;
}
.fab svg { fill: currentColor; }
.fab:hover { transform: translateY(-2px); box-shadow: 0 10px 28px var(--primary); }

/* Positions */
.fab-top { bottom: 20px; }
.fab-chat { bottom: 76px; } /* stacked above back-to-top */

/* Hidden state */
.fab.hidden { opacity: 0; pointer-events: none; transform: translateY(8px); }


/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .fab, .chat-widget { transition: none; }
}

/* Header Styles */
header.main-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10000;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    height: var(--header-height);
    display: flex;
    border-bottom: 2px solid var(--primary);
    align-items: center;
}

header.no-bg {
    background: transparent;
    box-shadow: none;
    border-bottom: none;
}

header.header-bg {
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    z-index: 1001;
}

.logo span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    list-style: none;
    transition: right 0.3s ease-in-out;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

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

.nav-buttons .btn {
    margin-left: 15px;
    padding: 10px 20px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.menu-toggle svg {
    width: 30px;
    height: 30px;
    stroke: var(--primary);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.menu-toggle .hidden {
    opacity: 0;
    pointer-events: none;
    position: absolute;
}

/* Mobile Menu Styles */
@media (max-width: 968px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .nav-buttons {
        display: none;
        position: fixed;
        bottom: 30px;
        left: 0;
        right: 0;
        justify-content: center;
        z-index: 1001;
    }
    
    .nav-buttons.mobile-visible {
        display: flex;
    }
    
    .nav-buttons .btn {
        margin: 0 10px;
    }
    
    /* Animation for menu toggle */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 8px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -8px);
    }
}

@media (max-width: 968px) {
    .nav-buttons.mobile-visible {
        display: flex;
        justify-content: flex-end;
    }
}
@media (max-width: 764px) {
    .nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
}

@media (max-width: 576px) {
    .nav-links {
        width: 80%;
    }
    .nav-links {
        display: inline;
    }

    .nav-buttons.mobile-visible {
        justify-content: flex-end;
    }
    .nav-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-buttons .btn {
        margin: 5px 0;
        width: 200px;
        text-align: center;
    }
    
    .logo {
        font-size: 1.5rem;
    }
}

/* Hero Section */
.hero {
padding: 150px 0 100px;
background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(247,249,252,1) 100%);
}

.hero-content {
display: flex;
align-items: center;
justify-content: space-between;
}

.hero-text {
flex: 1;
padding-right: 30px;
}

.hero-text h1 {
font-size: 3.2rem;
line-height: 1.2;
color: var(--dark);
margin-bottom: 20px;
}

.hero-text p {
font-size: 1.2rem;
color: #666;
margin-bottom: 30px;
}

.hero-buttons {
display: flex;
gap: 15px;
}

.hero-image {
flex: 1;
text-align: center;
}

.hero-image img {
max-width: 100%;
border-radius: 10px;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}


/* Features Section */
.features {
background: var(--light) !important;
}

.features-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}

.feature-card {
background: white;
border-radius: 10px;
padding: 30px;
text-align: center;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
transition: transform 0.3s ease;
}

.feature-card:hover {
transform: translateY(-10px);
}

.feature-icon {
width: 70px;
height: 70px;
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px;
font-size: 1.8rem;
}

.feature-card h3 {
font-size: 1.4rem;
margin-bottom: 15px;
color: var(--dark);
}

/* Templates Section */
.templates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
    gap: 25px;
    padding: 20px;
}

/* Template Card */
.template-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.template-card:hover {
    transform: scale(1.03);
}

/* Image Container */
.image-container {
    width: 100%; /* Full width of card */
    height: 400px; /* Adjusted for better proportion */
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid #eee;
}

/* Scrolling Image */
.scrolling-image {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 8s linear; /* Smooth scroll */
    will-change: transform;
}

/* Scroll on hover */
.image-container:hover .scrolling-image {
    transform: translateY(calc(-100% + 400px)); /* Matches container height */
}

/* Template Content */
.template-content {
    padding: 15px;
}

.template-content a {
    color: var(--primary);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
    font-weight: 500;
}

.template-content a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

.template-content a:hover {
    color: var(--secondary);
}

.template-content a:hover::after {
    width: 100%;
}

/* Testimonials Section */
.testimonials {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
}

.testimonials .section-title h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #fff;
}

.testimonials .section-title p {
    color: rgba(255, 255, 255, 0.8);
}

/* Slider Container */
.hero-slider {
    position: relative;
    max-width: 1000px;
    margin: 40px auto;
    overflow: hidden;
}

/* Slider Container */
.testimonial-slider {
    overflow-x: hidden !important;
    scroll-behavior: smooth;
}

/* Slider Track */
.slider-track {
    display: flex;
    gap: 20px;
    animation: scrollSlider 30s linear infinite;
    width: max-content; /* ensures track doesn't collapse */
}

@keyframes scrollSlider {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); 
    }
}

/* Testimonial Card */
.testimonial-card {
    width: 250px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Testimonial Text */
.testimonial-text {
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Author Section */
.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: #fff;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Slider Controls */
.slider-controls {
    text-align: center;
    margin-top: 50px;
}

.slider-controls button {
    background: #fff;
    border: none;
    color: var(--primary);
    font-size: 2rem;
    margin: 0 10px;
    cursor: pointer;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: background 0.3s;
}

.slider-controls button:hover {
    background: var(--primary);
    color: #fff;
}

/* Slider Track */
.slider-track {
    display: flex;
    gap: 20px;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
}

.slider-track::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

/* Pricing Section */
.pricing-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
}

.pricing-card {
background: white;
border-radius: 10px;
padding: 40px 30px;
text-align: center;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
border: 1px solid #eee;
transition: transform 0.3s ease;
}

.pricing-card.featured {
transform: scale(1.05);
border: 2px solid var(--primary);
position: relative;
}

.pricing-card.featured::before {
content: "Most Popular";
position: absolute;
top: -12px;
left: 50%;
transform: translateX(-50%);
background: var(--primary);
color: white;
padding: 5px 15px;
border-radius: 20px;
font-size: 0.8rem;
font-weight: 600;
}

.pricing-card h3 {
font-size: 1.5rem;
margin-bottom: 15px;
color: var(--dark);
}

.price {
font-size: 2.5rem;
font-weight: 700;
color: var(--primary);
margin-bottom: 20px;
}

.price span {
font-size: 1rem;
color: #666;
}

.pricing-features {
list-style: none;
margin: 20px 0;
text-align: left;
}

.pricing-features li {
margin-bottom: 10px;
display: flex;
align-items: center;
}

.pricing-features li i {
color: var(--primary);
margin-right: 10px;
}

/* CTA Section */
.cta {
background: linear-gradient(135deg, var(--primary), var(--secondary));
color: white;
text-align: center;
padding: 80px 0;
}

.cta h2 {
font-size: 2.5rem;
margin-bottom: 20px;
}

.cta p {
max-width: 700px;
margin: 0 auto 30px;
font-size: 1.1rem;
opacity: 0.9;
}

.cta .btn {
background: white;
color: var(--primary);
font-weight: 600;
padding: 12px 35px;
}

.cta .btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

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

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

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

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

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

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

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

.social-links a:hover {
    background: var(--primary); 
}

.copyright {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid,
    .templates-grid,
    .pricing-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .nav-links {
        display: block !important;
    }

    .features-grid,
    .templates-grid,
    .pricing-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .nav-buttons {
        display: none;
    }
}
     
/* About Us Section */
    .about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 50px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}
        

/* Contact Section */
.contact-container {
    display: flex;
    gap: 50px;
    margin: 50px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-detail {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
}

.contact-text h4 {
    margin-bottom: 5px;
    color: var(--dark);
}

.contact-form {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.faq-item {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Map Section */
.map-container {
    height: 400px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.2rem;
}

/* 404 Content */
.error-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}

.error-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.error-graphic {
    margin-bottom: 40px;
    position: relative;
}

.error-number {
    font-size: 12rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    position: relative;
    display: inline-block;
}

.error-number::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 107, 247, 0.1), rgba(84, 51, 255, 0.1));
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.error-icon {
    position: absolute;
    font-size: 4rem;
    color: var(--accent);
    animation: float 3s ease-in-out infinite;
}

.error-icon:nth-child(1) {
    top: 30px;
    right: 80px;
    animation-delay: 0s;
}

.error-icon:nth-child(2) {
    bottom: 40px;
    left: 90px;
    animation-delay: 0.5s;
}

.error-icon:nth-child(3) {
    bottom: 60px;
    right: 100px;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.error-text h2 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.error-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.error-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

/* Registration Content */
.registration-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}

.registration-container {
    display: flex;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.registration-graphic {
    flex: 1;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 40px;
    display: flex-end;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.graphic-content {
    position: relative;
    z-index: 2;
}

.registration-graphic h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.registration-graphic p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.feature-list {
    list-style: none;
    margin-top: 30px;
}

.feature-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.feature-list i {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.graphic-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
}

.registration-form {
    flex: 1;
    padding: 40px;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.form-header p {
    color: #666;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: #eee;
}

.divider-text {
    padding: 0 15px;
    color: #777;
    font-size: 0.9rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}
.form-group .error {
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 107, 247, 0.1);
}

.input-with-icon {
    position: relative;
}

.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
    cursor: pointer;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.form-check-input {
    margin-right: 10px;
    margin-top: 5px;
}

.form-check-label {
    font-size: 0.9rem;
    color: #666;
}

.form-check-label a {
    color: var(--primary);
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

.password-strength {
    margin-top: 5px;
    height: 5px;
    background: #eee;
    border-radius: 5px;
    overflow: hidden;
}

.strength-meter {
    height: 100%;
    width: 0;
    transition: width 0.3s, background 0.3s;
}

.password-feedback {
    font-size: 0.8rem;
    margin-top: 5px;
    color: #777;
}

.form-footer {
    text-align: center;
    margin-top: 30px;
}

.form-footer p {
    color: #666;
    font-size: 0.9rem;
}

.form-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.form-footer a:hover {
    text-decoration: underline;
}

.button-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.notification {
    padding: 10px;
}
@media (max-width: 576px) {
    .button-group {
        flex-direction: column;
    }

    .button-group .btn {
        width: 100%;
    }
}


/* Responsive Design */
@media (max-width: 1024px) {
    .registration-container {
        flex-direction: column;
        max-width: 600px;
    }
    
    .registration-graphic {
        padding: 30px;
    }

}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-links {
        display: none;
    }
    
    .registration-content {
        padding: 100px 0 60px;
    }
}

@media (max-width: 576px) {
    .registration-graphic {
        display: none;
    }
    
    .registration-form {
        padding: 30px 20px;
    }
    
    .form-header h2 {
        font-size: 1.8rem;
    }
    
    .nav-buttons {
        display: none;
    }
}

/* Demo Video Section */
.demo-video {
    background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(247,249,252,1) 100%);
    position: relative;
    overflow: hidden;
    padding: 50px 20px; /* Add padding for spacing */
}

.demo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

.video-card {
    width: 100%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    position: relative;
}

/* Use aspect ratio to fix height */
.video-container {
    width: 100%;
    height: 400px;
    position: relative;
    background: #000;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s;
}

.video-thumbnail.hidden {
    opacity: 0;
}

.video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: none;
}

.video-player.active {
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.play-button:hover {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button i {
    color: var(--primary);
    font-size: 2rem;
    margin-left: 5px;
}

.video-controls {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
}

.video-info h3 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.video-info p {
    color: #666;
    font-size: 0.9rem;
}

.video-actions {
    display: flex;
    gap: 15px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--light);
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    color: var(--dark);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.action-btn:hover {
    background: #e8eef9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2rem;
    }
    
    .video-container {
        height: 250px;
    }
    
    .video-actions {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button i {
        font-size: 1.5rem;
    }
    
    .action-btn {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
}

.faq-section {
    padding: 140px 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    padding: 0px;
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 20px 20px;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}
 /* FAQ Section */


 /* Documentation Page */

 .main-container {
    padding-top: 100px 0;
     display: flex;
     flex: 1;
     max-width: 1400px;
     margin: 0 auto;
     width: 100%;
     gap: 35px;
 }
 
 /* Sidebar Navigation */
 .sidebar {
     width: var(--sidebar-width);
     background: white;
     padding: 0px 0;
     height: calc(100vh - var(--header-height));
     position: sticky;
     top: var(--header-height);
     overflow-y: auto;
     box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05);
     transition: transform 0.3s ease;
 }
 
 .sidebar-search {
     padding: 0 20px 20px;
     border-bottom: 1px solid #eee;
     margin-bottom: 20px;
 }
 
 .search-input {
     width: 100%;
     padding: 12px 15px;
     border: 1px solid #ddd;
     border-radius: 8px;
     font-size: 0.9rem;
 }
 
 .sidebar-menu {
     list-style: none;
 }
 
 .menu-category {
     padding: 15px 20px;
     font-weight: 600;
     color: var(--dark);
     display: flex;
     align-items: center;
     gap: 10px;
 }
 
 .menu-category i {
     color: var(--primary);
 }
 
 .menu-items {
     list-style: none;
     margin-bottom: 10px;
 }
 
 .menu-item {
     padding: 12px 20px 12px 50px;
     display: block;
     color: #666;
     text-decoration: none;
     transition: all 0.3s;
     border-left: 3px solid transparent;
 }
 
 .menu-item:hover, .menu-item.active {
     color: var(--primary);
     background: rgba(0, 107, 247, 0.05);
     border-left-color: var(--primary);
 }
 
 /* Documentation Content */
 .docs-content {
     flex: 1;
     padding-top: 100px;
     max-width: calc(100% - var(--sidebar-width));
 }
 
 .docs-section {
     margin-bottom: 60px;
     scroll-margin-top: 100px;
 }
 
 .docs-header {
     margin-bottom: 30px;
 }
 
 .docs-title {
     font-size: 2.2rem;
     color: var(--dark);
     margin-bottom: 15px;
 }
 
 .docs-description {
     color: #666;
     font-size: 1.1rem;
     max-width: 800px;
 }
 
 .article {
     background: white;
     border-radius: 10px;
     padding: 30px;
     margin-bottom: 30px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
 }
 
 .article h2 {
     font-size: 1.6rem;
     color: var(--dark);
     margin-bottom: 20px;
     padding-bottom: 10px;
     border-bottom: 2px solid #f0f0f0;
 }
 
 .article h3 {
     font-size: 1.3rem;
     color: var(--dark);
     margin: 25px 0 15px;
 }
 
 .article p {
     margin-bottom: 15px;
     color: #555;
 }
 
 .article ul, .article ol {
     margin-bottom: 20px;
     padding-left: 20px;
 }
 
 .article li {
     margin-bottom: 8px;
     color: #555;
 }
 
 .code-block {
     background: #f8f9fa;
     border-radius: 8px;
     padding: 15px;
     margin: 20px 0;
     font-family: 'Courier New', monospace;
     overflow-x: auto;
 }
 
 .info-box {
     background: #e8f4ff;
     border-left: 4px solid var(--primary);
     padding: 15px 20px;
     margin: 20px 0;
     border-radius: 4px;
 }
 
 .step-cards {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 20px;
     margin: 25px 0;
 }
 
 .step-card {
     background: white;
     border-radius: 10px;
     padding: 20px;
     box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
     text-align: center;
 }
 
 .step-number {
     width: 40px;
     height: 40px;
     background: var(--primary);
     color: white;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 15px;
     font-weight: 600;
 }
 
 .step-card h4 {
     margin-bottom: 10px;
     color: var(--dark);
 }
 
 /* Breadcrumbs */
 .breadcrumbs {
     display: flex;
     align-items: center;
     gap: 10px;
     margin-bottom: 30px;
     color: #666;
     font-size: 0.9rem;
 }
 
 .breadcrumbs a {
     color: var(--primary);
     text-decoration: none;
 }
 
 .breadcrumbs span {
     color: #999;
 }
 
 /* Feedback Section */
 .feedback-section {
     padding: 20px 0;
     border-top: 1px solid #eee;
     margin-top: 40px;
     display: flex;
     gap: 15px;
 }
 
 .feedback-btn {
     display: flex;
     align-items: center;
     gap: 8px;
     padding: 8px 15px;
     background: #f5f5f5;
     border: none;
     border-radius: 20px;
     cursor: pointer;
     transition: all 0.3s;
 }
 
 .feedback-btn:hover {
     background: #e8e8e8;
 }

 /* Responsive Design */
 @media (max-width: 1024px) {
     .sidebar {
         transform: translateX(-100%);
         position: fixed;
         z-index: 999;
         height: 100vh;
         top: var(--header-height);
     }
     
     .sidebar.active {
         transform: translateX(0);
     }
     
     .docs-content {
         max-width: 100%;
         padding: 30px 20px;
     }
     
     .menu-toggle {
         display: block;
         background: none;
         border: none;
         font-size: 1.5rem;
         cursor: pointer;
         color: var(--dark);
     }
     
     .footer-grid {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (min-width: 1024px) {
     .menu-toggle {
        display: none !important;
     }
 }
 
 @media (max-width: 768px) {
     .header-actions {
         display: none;
     }
 
     .step-cards {
         grid-template-columns: 1fr;
     }
     
     .docs-title {
         font-size: 1.8rem;
     }
 }
 
 @media (max-width: 576px) {
     .footer-grid {
         grid-template-columns: 1fr;
     }
     
     .docs-content {
         padding: 20px 15px;
     }
     
     .article {
         padding: 20px;
     }
 }
