/* ===== Home Page Styles ===== */

/* Hero Section */
/* Sidebar Brand / Logo */
.brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.sidebar-logo {
    max-width: 140px;   /* Adjust width as needed */
    height: auto;
    display: block;
    border-radius: 8px; /* optional rounded corners */
}

.xmark {
    font-size: 1.2rem;
    cursor: pointer;
    color: #333;
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('images/digital.jpg') no-repeat center center/cover;
    color: linen;
    text-align: center;
    padding: 100px 20px;
}


.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn-primary {
    background-color: #1e91ef;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-primary:hover {
    background-color: #0f75d3;
}

/* About Snapshot */



/* How It Works Section */
.how-it-works {
    padding: 70px 20px;
    text-align: center;
}

.how-it-works h2 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.step {
    background: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    width: 250px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Services Section */
.services {
    background-color: #f0f8ff;
    text-align: center;
    padding: 70px 20px;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.service {
    background: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    width: 220px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.service i {
    font-size: 2.5rem;
    color: #1e90ff;
    margin-bottom: 15px;
}

.service h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Testimonials */
.testimonials {
    padding: 70px 20px;
    text-align: center;
}

.testimonial-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.testimonial {
    background: #fff;
    padding: 25px 20px;
    border-radius: 10px;
    width: 280px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    font-style: italic;
}

.testimonial span {
    display: block;
    margin-top: 15px;
    font-weight: 600;
    color: #333;
}

/* Final CTA */
.final-cta {
    background-color: #1e90ff;
    color: #fff;
    text-align: center;
    padding: 70px 20px;
}

.final-cta h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}
/* ===== Responsive Styles ===== */
@media (max-width: 1024px) {
    .hero h1 { font-size: 3rem; }
    .hero p { font-size: 1.3rem; }
    .step, .service, .testimonial { width: 45%; }
}

@media (max-width: 768px) {
    .hero { padding: 120px 20px; }
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1.2rem; }
    .step, .service, .testimonial { width: 80%; }
}

@media (max-width: 480px) {
    .hero { padding: 100px 15px; }
    .hero h1 { font-size: 2rem; }
    .hero p { font-size: 1rem; }
    .btn-primary { padding: 12px 25px; font-size: 1rem; }
    .step, .service, .testimonial { width: 100%; }
}
