:root {
    /* Brand Colors */
    --brand-primary: #0d6efd; 
    --brand-dark: #052c65; 
    --brand-accent: #00d4ff;
    --text-dark: #212529;
    --text-muted: #6c757d;
    --bg-light: #f4f7fa;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: var(--bg-light);
}

h1, h2, h3, h4, h5, h6, .btn {
    font-family: 'Poppins', sans-serif;
}

/* --- Glassmorphism Navbar --- */
.navbar {
    padding: 5px 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px); /* Frosted Glass Effect */
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}
.navbar.scrolled {
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    background: rgba(255, 255, 255, 0.95);
}
.nav-link {
    font-weight: 600;
    color: var(--brand-dark) !important;
    position: relative;
}
/* Underline hover effect */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--brand-primary);
    transition: width 0.3s;
}
.nav-link:hover::after {
    width: 100%;
}

/* --- Hero Section with Parallax --- */
#hero {
    position: relative;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(230, 240, 255, 0.8) 100%), url('../../assets/images/hero-bg.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 160px 0 200px; /* Extra padding at bottom for wave overlap */
    overflow: hidden;
}

.gradient-text {
    background: -webkit-linear-gradient(45deg, var(--brand-dark), var(--brand-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Floating Animation for the Dashboard Mockup */
.floating-anim {
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.hero-mockup {
    border-radius: 15px;
    box-shadow: 0 25px 80px rgba(13, 110, 253, 0.25); /* Colored shadow for glow */
    border: 1px solid rgba(255,255,255,0.5);
    background: white;
    padding: 10px;
}

/* --- SVG Waves (The "Modern" Look) --- */
.custom-shape-divider-bottom-1680000000 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}
.custom-shape-divider-bottom-1680000000 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}
.custom-shape-divider-bottom-1680000000 .shape-fill {
    fill: #ffffff;
}

/* --- Feature Cards (Hover Lift) --- */
.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy transition */
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--brand-primary);
    z-index: -1;
    transition: width 0.4s ease;
    opacity: 0.03;
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.15);
    border-color: var(--brand-primary);
}
.feature-card:hover::before {
    width: 100%;
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e6f0ff, #ffffff);
    color: var(--brand-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.1);
}

/* --- Zig Zag Section --- */
.zigzag-img-container {
    position: relative;
    max-width: 80%; /* Reduced size */
    margin: 0 auto;
    perspective: 1000px;
}

/* Modern Box Effect */
.zigzag-img-box {
    position: relative;
    border-radius: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    transition: transform 0.5s ease;
}

.zigzag-img-box:hover {
    transform: translateY(-10px) rotateX(2deg);
}

.zigzag-img {
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    width: 100%;
    display: block;
}

/* --- Stats Section --- */
.stats-section {
    background: white;
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}
.stat-item {
    text-align: center;
    padding: 20px;
    transition: transform 0.3s;
}
.stat-item:hover {
    transform: translateY(-5px);
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-primary);
    margin-bottom: 5px;
    background: -webkit-linear-gradient(45deg, var(--brand-dark), var(--brand-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-label {
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* --- CTA Gradient --- */
#cta {
    background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-primary) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}
/* Abstract circles in CTA background */
.circle-bg {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}

/* --- Footer --- */
.footer {
    background: #ffffff;
    color: var(--text-dark);
    padding: 70px 0 30px;
    border-top: 1px solid #eee;
}
.footer h5 { color: var(--brand-dark); margin-bottom: 25px; }
.footer a { color: var(--text-muted); text-decoration: none; transition: 0.3s; }
.footer a:hover { color: var(--brand-primary); padding-left: 5px; }
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #f4f7fa;
    color: var(--brand-primary);
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
}
.footer-social a:hover {
    background: var(--brand-primary);
    color: white;
    padding-left: 0; /* Override default hover padding */
}

/* --- Page Header (for subpages) --- */
.page-header {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(230, 240, 255, 0.8) 100%), url('../../assets/images/hero-bg.jpg);');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 160px 0 100px;
    text-align: center;
}
.page-title {
    font-weight: 800;
    color: var(--brand-dark);
    margin-bottom: 10px;
}

/* --- Pricing Cards --- */
.pricing-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(13, 110, 253, 0.15);
    border-color: var(--brand-primary);
}
.pricing-card.popular {
    border: 2px solid var(--brand-primary);
    transform: scale(1.05);
    z-index: 2;
}
.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}
.popular-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--brand-primary);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.price-tag {
    font-size: 3rem;
    font-weight: 800;
    color: var(--brand-dark);
    margin: 20px 0;
}
.price-tag span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}
.feature-list li {
    margin-bottom: 15px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
}
.feature-list li i {
    color: var(--brand-primary);
    margin-right: 10px;
    font-size: 1.2rem;
}

/* --- Contact Info Box --- */
.contact-info-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    text-align: center;
    transition: transform 0.3s;
}
.contact-info-box:hover {
    transform: translateY(-5px);
}
.contact-icon {
    font-size: 2.5rem;
    color: var(--brand-primary);
    margin-bottom: 20px;
}

/* --- Content Section (Policies) --- */
.content-section {
    background: white;
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 60px;
}
.content-section h3 {
    color: var(--brand-dark);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}
.content-section p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}
