/* 1. Placement & Distance from Head/Content */
.sf-ev-premium-sidebar {
    position: fixed;
    /* Center + Half of 800px content + 80px gap for plenty of distance */
    left: calc(50% + 480px); 
    /* Increased distance from top menu to prevent overlapping */
    top: 140px; 
    width: 320px;
    z-index: 99;
margin-top: 180px;
}

/* 2. Decent & Modern Visual Design */
.sf-ev-sidebar-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.sf-ev-sidebar-header {
    padding: 20px;
    background: #f8fafc;
    border-bottom: 1px solid #edf2f7;
}

.sf-ev-sidebar-heading {
    margin: 0;
    font-size: 1rem;
    color: #1a202c;
    line-height: 1.4;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

/* 3. Link Styling */
.sf-ev-sidebar-nav {
    padding: 12px;
}

.sf-ev-nav-item {
    display: block;
    padding: 12px 16px;
    margin-bottom: 6px;
    color: #4a5568;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: all 0.2s ease-in-out;
    line-height: 1.3;
}

.sf-ev-nav-item:hover {
    background-color: #f1f5f9;
    color: #2563eb;
    border-color: #e2e8f0;
    transform: translateX(4px);
}

.sf-ev-sidebar-footer {
    padding: 12px;
    background: #f8fafc;
    text-align: center;
    font-size: 0.7rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-top: 1px solid #edf2f7;
}

/* 4. Responsive & Mobile View Logic */
@media screen and (max-width: 1450px) {
    /* If screen is too narrow for a right sidebar, move it below content */
    .sf-ev-premium-sidebar {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
    
        margin: 40px auto;
        z-index: 1;
    }
}

@media screen and (max-width: 768px) {
    .sf-ev-sidebar-nav {
        display: grid;
        grid-template-columns: 1fr; /* Single column on phones for readability */
        gap: 8px;
    }
    .sf-ev-sidebar-heading {
        text-align: center;
    }
}
/* style.css - Basic styling for the breadcrumb navigation */

.breadcrumb {
  display: flex;
  list-style: none;
  padding: 1px 0;
  font-family: Arial, sans-serif;
}

.breadcrumb li {
  margin-right: 1px;
}

.breadcrumb li + li:before {
  content: ">";
  margin-right: 5px;
  color: #555;
}

.breadcrumb a {
  text-decoration: none;
  color: #007bff;
}

.breadcrumb a:hover {
  text-decoration: underline;
}
/* background of the page */
:root {
    --sf-ev-primary: #1a5fb4;
    --sf-ev-bg: #fdfdfd;
    --sf-ev-text: #1a2b3c;
    --sf-ev-text-light: #4a5568;
    --sf-ev-border: #e2e8f0;
    --sf-ev-white: #ffffff;
    --sf-ev-accent-bg: #f0f7ff;
    --sf-ev-h-color: #0f172a;
}
.sf-ev-layout-wrapper {
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            line-height: 1.75;
            color: var(--sf-ev-text);
            background-color: var(--sf-ev-bg);
            max-width: 850px;
            margin: 0 auto;
            padding: 20px;
            text-rendering: optimizeLegibility;
        }
.faq-section{
    background: var(--sf-ev-white);
    border: 1px solid var(--sf-ev-border);
    border-radius: 10px;
    padding: 10px 20px;
    margin: 30px 0;
}
body { 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    scroll-behavior: smooth; 
}

.hero-bg { 
    background: radial-gradient(circle at top right, #1e40af 0%, #0f172a 100%); 
}
.hero-title {
    color: #ffffff !important;
}
.glass-card { 
    background: rgba(255, 255, 255, 0.98); 
    backdrop-filter: blur(20px); 
    border: 1px solid rgba(255, 255, 255, 0.2); 
}

.stats-grid div { 
    border-right: 1px solid rgba(255, 255, 255, 0.1); 
}

.stats-grid div:last-child { 
    border: none; 
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none; 
    height: 20px; 
    width: 20px; 
    border-radius: 50%; 
    background: #2563eb; 
    cursor: pointer; 
    border: 3px solid white; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.city-link {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.city-link:hover { 
    transform: translateY(-3px); 
    background-color: #2563eb !important;
}

/* GLOBAL STYLES */
body {
    font-family: sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
}

main {
  
    margin: 0 auto;
    padding: 20px;
}

/* CALCULATOR SECTION */
section.tool-area {
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.tool-title {
    text-align: center;
    margin-top: 0;
    color: #0056b3;
}

/* SUMMARY ASIDE */
aside.highlight-box {
    background: #eef6ff;
    border-left: 5px solid #0056b3;
    padding: 25px;
    margin-bottom: 30px;
}

.grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
}

.grid-item b {
    display: block;
    font-size: 11px;
    color: #0056b3;
    text-transform: uppercase;
}

/* ARTICLE TYPOGRAPHY */
h1 { font-size: 30px; color: #111; margin-bottom: 10px; text-align: center;}
h2 { font-size: 24px; color: #0056b3; margin-top: 30px; border-bottom: 1px solid #eee; padding-bottom: 5px; }
h3 { font-size: 20px; margin-top: 20px; }
h4 { font-size: 18px; margin-top: 15px; }
h5 { font-size: 16px; color: #666; margin-top: 10px; }
p { margin-bottom: 15px; }

/* LISTS */
ul, ol { margin: 15px 0 20px 25px; padding: 0; }
li { margin-bottom: 10px; }

/* INTERACTIVE FAQ */
section.faq-section {
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-top: 20px;
    overflow: hidden;
}

details {
    border-bottom: 1px solid #eee;
}

details:last-child {
    border-bottom: none;
}

summary {
    padding: 15px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none; /* Hides default triangle */
}

summary::-webkit-details-marker {
    display: none; /* Hide default triangle in Safari */
}

/* The Plus Sign */
summary::after {
    content: "+";
    color: #0056b3;
    font-size: 20px;
    font-weight: bold;
}

/* Change to Minus when open */
details[open] summary::after {
    content: "−";
}

.answer-text {
    padding: 0 15px 15px 15px;
    color: #666;
    font-size: 15px;
}

/* FOOTER VERDICT */
.ip-verdict {
    background: #f9f9f9;
    padding: 20px;
    border-top: 4px solid #0056b3;
    margin-top: 40px;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    h1 { font-size: 24px; }
    main { padding: 15px; }
}