/* Reset */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: white
}


/* Header */

.header {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    /* push items to edges */
    align-items: center;
    padding: 0 2rem;
    /* padding from sides */
    max-width: 1200px;
    /* optional max width */
    margin: 0 auto;
    /* center container on large screens */
}


/* Logo */

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 40px;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: #090dd8;
}


/* Ensure logo sticks left */

.logo {
    flex-shrink: 0;
}


/* Ensure nav sticks right */

.nav-links {
    flex-shrink: 0;
}


/* Navigation */

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #007BFF;
}

.nav-links li .btn {
    padding: 8px 18px;
    background-color: #007BFF;
    color: #fff;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.nav-links li .btn:hover {
    background-color: #0056b3;
}


/* Hamburger Menu */

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 3px;
}


/* Mobile Responsive */

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 65%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        gap: 40px;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    .nav-links.active {
        right: 0;
    }
    .hamburger {
        display: flex;
    }
}


/* Hero Section */

.hero {
    margin-top: 1px;
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* Trusted Line at top */

.trusted {
    font-size: 0.85rem;
    font-weight: 500;
    color: #0033ff;
    text-align: center;
    margin-bottom: 0.5rem;
}


/* Hero content wrapper */

.hero-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    gap: 2rem;
    flex-direction: row;
}


/* Left text content */

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #222;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.hero-text span {
    color: #007BFF;
    font-weight: 700;
}

.features {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.features li {
    background: #f0f0f0;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}


/* Buttons */

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary {
    padding: 0.8rem 2rem;
    background: #254be2;
    color: #fff;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
}

.btn-secondary {
    padding: 0.8rem 2rem;
    background: #fff;
    color: #007BFF;
    border: 2px solid #007BFF;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
}


/* Right image */

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    animation: float 3s ease-in-out infinite;
}


/* Floating animation */

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}


/* Fade-in animations */

.fade-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: fadeInLeft 1s forwards;
}

.fade-right {
    opacity: 0;
    transform: translateX(50px);
    animation: fadeInRight 1s forwards;
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* Responsive - Mobile */

@media (max-width: 768px) {
    .hero {
        background-color: #fff;
    }
    .hero-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .hero-text h1 {
        font-size: 2rem;
    }
    .hero-text p {
        font-size: 1rem;
    }
    .features {
        flex-direction: column;
        gap: 0.8rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
    /* Reduce button size on mobile */
    .btn-primary,
    .btn-secondary {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    .hero-image {
        margin-top: 1.5rem;
        max-width: 80%;
        width: 80%;
    }
    .trusted {
        font-size: 0.75rem;
        margin-bottom: 0.8rem;
    }
    .stat-box h3 {
        font-size: 1rem;
    }
}

.stats {
    margin-top: 30px;
    display: flex;
    gap: 40px;
}

.stat-box h3 {
    font-size: 1.2rem;
    font-weight: 700;
}

.stat-box p {
    font-size: 0.75rem;
    color: #666;
    margin-top: -6px;
}

.features {
    padding: 80px 8%;
    background: #f9fafb;
}

.features-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.features-header h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.features-header p {
    font-size: 2rem;
    font-weight: 600;
    color: #444;
}

.features-header span {
    color: #666;
    font-size: 1rem;
    display: block;
    margin-top: 10px;
}


/* Features Grid */

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


/* Feature Card */

.feature-card {
    padding: 25px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #4f46e5;
}

.feature-card p {
    color: #555;
    line-height: 1.5;
}


/* RESPONSIVE */

@media (max-width: 1000px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}


/* Testimonials Section */

.testimonials {
    padding: 80px 8px;
    background: #ffffff;
}

.testimonials-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.testimonials-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.testimonials-header p {
    font-size: 1.2rem;
    font-weight: 600;
    color: #444;
}

.testimonials-header span {
    color: #666;
    font-size: 1rem;
    display: block;
    margin-top: 10px;
}

.test {
    color: #0033ff;
    font-size: 1.5rem;
}


/* Testimonials Grid */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


/* Testimonial Card */

.testimonial-card {
    background: #fafafa;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}


/* Quote */

.testimonial-card .quote {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 20px;
}


/* User Info */

.user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-initial {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #4f46e5;
    color: #fff;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.user-info h4 {
    margin: 0;
    font-size: 1.1rem;
}

.user-info span {
    font-size: 0.9rem;
    color: #666;
}


/* RESPONSIVE */

@media (max-width: 1000px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}


/* Templates Section */

.templates {
    padding: 80px 8%;
    background: #fafafa;
}

.templates-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.templates-header h2 {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.templates-header h3 {
    color: #555;
    font-size: 1.8rem;
}


/* Grid */

.templates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


/* Template Card */

.template-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.template-card img {
    width: 100%;
    display: block;
    transition: 0.3s ease;
}


/* Hover Overlay */

.template-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s ease;
}

.template-card:hover img {
    transform: scale(1.06);
}

.template-card:hover .template-overlay {
    opacity: 1;
}


/* Preview Button */

.preview-btn {
    padding: 12px 25px;
    background: #ffffff;
    color: #4f46e5;
    border: none;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
}

.preview-btn:hover {
    background: #4f46e5;
    color: #fff;
}


/* Responsive */

@media (max-width: 1000px) {
    .templates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .templates-grid {
        grid-template-columns: 1fr;
    }
}


.pre-footer-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.pre-footer-cta .cta-btn {
    padding: 05px 18px;
    font-size: 3rem;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
}

.pre-footer-cta .cta-btn.primary {
    background: #fff;
    color: #1a73e8;
  
}

.pre-footer-cta .cta-btn.primary:hover {
    background: #e0e0e0;
}

.pre-footer-cta .cta-btn.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.pre-footer-cta .cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}


/* Responsive */

@media (max-width: 650px) {
    .pre-footer-cta h2 {
        font-size: 1.8rem;
    }
    .pre-footer-cta p {
        font-size: 1rem;
    }
    .pre-footer-cta .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
}


/* --- Footer --- */

.site-footer {
    background: #ffffff;
    color: #0725be;
    font-family: 'Inter', sans-serif;
    padding: 60px 20px 30px;
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.footer-brand {
    flex: 1 1 250px;
}

.footer-brand img.footer-logo {
    height: 50px;
    display: block;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 0.95rem;
    color: #000000;
    line-height: 1.6;
}


/* Footer Links */

.footer-links {
    flex: 3 1 700px;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.footer-column h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #0620b8;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #000000;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #4f46e5;
}


/* Footer Bottom */

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #000000;
}


/* Responsive */

@media (max-width: 1024px) {
    .footer-top {
        flex-direction: column;
        gap: 30px;
    }
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    .footer-brand {
        text-align: center;
    }
    .footer-brand img.footer-logo {
        margin: 0 auto 15px;
    }
}


/* Full-page Preloader */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    /* blue background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}


/* Logo Animation */

.preloader-logo {
    width: 80px;
    /* adjust size */
    animation: spin 2s linear infinite;
}


/* Spin Animation */

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

html {
    scroll-behavior: smooth;
}

.auth-section {
    padding: 80px 20px;
    text-align: center;
    background: #f5f7fb;
}

.auth-container {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 50px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.auth-container h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #1a202c;
}

.auth-container p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
}

.auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.google-btn img {
    width: 20px;
    height: 20px;
}

.google-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

#get-started-btn {
    background: #ffffff;
    color: rgb(0, 0, 0);
}

/* cta */
.cta-section{text-align:center;padding-bottom:80px}

/* style.css */
/* style.css */
:root{
  --bg:#f6fbff;
  --card:#ffffff;
  --muted:#6b7280;
  --accent1:#0ea5e9;
  --accent2:#0369a1;
  --accent-grad:linear-gradient(90deg,var(--accent1),var(--accent2));
  --success:#16a34a;
  --danger:#ef4444;
  --shadow:rgba(2,6,23,0.08);
  --max-width:1100px;
  font-family:Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}