:root {
    --brand-primary: #0d6efd;
    --brand-secondary: #198754;
    --brand-light: #f8f9fa;
    --text-dark: #212529;
    --text-muted: #6c757d;
    --section-bg: #f8f9fa;
    --card-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.075);
    --card-shadow-hover: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

body {
    background-color: #fff;
    color: var(--text-dark);
    padding-top: 70px; /* Offset for fixed navbar */
}

.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.navbar-brand img {
    height: 35px;
}

.navbar-brand .logo-lg {
    display: inline-block;
    height: 35px;
}

.navbar-brand .logo-sm {
    display: none;
    height: 30px;
}

@media (max-width: 767.98px) {
    .navbar-brand .logo-lg {
        display: none;
    }

    .navbar-brand .logo-sm {
        display: inline-block;
    }
}

/* Slider Section */
#heroSlider .carousel-item {
    height: 85vh;
    min-height: 550px;
    background-size: cover;
    background-position: center;
    position: relative;
}

#heroSlider .carousel-caption {
    display: block;
    left: 50%;
    right: auto;
    bottom: 8%;
    transform: translateX(-50%);
    width: min(92%, 900px);
    background: rgba(10, 16, 28, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 1rem;
    backdrop-filter: blur(4px);
    padding: 1.25rem 1.5rem;
    text-align: center;
}

#heroSlider .carousel-caption p {
    margin-bottom: 0;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
}

.gradient-text {
    background: linear-gradient(90deg, #198754, #ffc107);
    -webkit-background-clip: text;
    color: transparent;
}

/* General Styles */
.section-pad {
    padding: 5rem 0;
}

.soft-bg {
    background-color: var(--section-bg);
}

.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
}

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--brand-primary);
    margin: 1rem auto;
    border-radius: 50px;
}

/* Features Section */
.features-grid .card {
    border: none;
    border-radius: 1rem;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.features-grid .card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--brand-primary);
    margin-bottom: 1rem;
}

/* Why Us Section */
.why-us-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}
.why-us-list .bi {
    color: var(--brand-secondary);
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

/* Pricing Section */
.pricing-card {
    border: 1px solid #dee2e6;
    border-radius: 1rem;
    transition: all 0.3s ease;
    background-color: #fff;
}

.pricing-card.popular {
    border-color: var(--brand-primary);
    transform: scale(1.05);
    box-shadow: var(--card-shadow-hover);
}

.pricing-card .card-header {
    background-color: transparent;
    border-bottom: 1px solid #dee2e6;
}

.pricing-card ul li {
    display: flex;
    align-items: center;
}
.pricing-card ul .bi {
    color: var(--brand-secondary);
    margin-right: 0.5rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(45deg, var(--brand-primary), var(--brand-secondary));
    color: #fff;
    border-radius: 1rem;
}
.cta-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.showcase-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-shadow-hover);
}

.showcase-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.showcase-card .content {
    padding: 1rem 1.1rem;
}

/* Footer */
.footer-mini {
    background: #212529;
    color: rgba(255, 255, 255, 0.7);
}
.footer-mini a {
    color: #fff;
    text-decoration: none;
}
.footer-mini a:hover {
    text-decoration: underline;
}

@media (max-width: 991.98px) {
    .section-pad {
        padding: 3.5rem 0;
    }

    #heroSlider .carousel-caption {
        bottom: 6%;
        padding: 1rem 1.1rem;
    }

    .pricing-card.popular {
        transform: none;
    }
}
