.elementor-7969 .elementor-element.elementor-element-4265590{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-5b315dd *//* Base Styles & Typography */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --accent-color: #f59e0b;
    --text-main: #1f2937;
    --text-muted: #4b5563;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --card-bg: #ffffff;
    --gradient: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Hind Siliguri', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
h1, h2, h3, h4 { font-weight: 700; line-height: 1.3; }
p { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 10px; }

/* Cover Section */
.cover-page {
    background: var(--gradient);
    color: white;
    padding: 140px 20px;
    text-align: center;
    border-bottom-left-radius: 50% 10%;
    border-bottom-right-radius: 50% 10%;
}

.cover-page h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cover-page .highlight {
    color: var(--accent-color);
}

.cover-page .subtitle {
    font-size: 1.3rem;
    color: #cbd5e1;
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto;
}

/* Sections */
.intro-section { padding: 60px 0 20px; }
.content-section { padding: 80px 0; }
.bg-light { background-color: var(--bg-light); }

.intro-section h2, .content-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #111827;
}

.highlight-text { color: var(--primary-color); }

/* 20 Ideas Grid */
.ideas-section {
    padding: 80px 0;
}

.ideas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.idea-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border: 1px solid #e5e7eb;
    border-top: 4px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.idea-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-top: 4px solid var(--accent-color);
}

.idea-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: #eff6ff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.idea-card h3 {
    font-size: 1.4rem;
    color: #1e40af;
    margin-bottom: 15px;
}

.idea-card p strong {
    color: #374151;
    font-weight: 600;
}

/* Graphical Graph (CSS based) */
.graph-container {
    max-width: 700px;
    margin: 40px auto 0;
    padding: 40px 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.bar-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 250px;
    padding-bottom: 30px;
    position: relative;
    border-bottom: 3px solid #cbd5e1;
    border-left: 3px solid #cbd5e1;
}

.bar {
    width: 60px;
    background: linear-gradient(180deg, #93c5fd 0%, #3b82f6 100%);
    border-radius: 6px 6px 0 0;
    position: relative;
    transition: 1s ease-out;
}

.highlight-bar { 
    background: linear-gradient(180deg, #fbbf24 0%, #d97706 100%);
}

.bar::after {
    content: attr(data-year);
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
}

/* Steps Timeline */
.steps-timeline {
    max-width: 800px;
    margin: 50px auto 0;
    position: relative;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    top: 0; left: 30px;
    height: 100%; width: 4px;
    background: #bfdbfe;
}

.step {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    position: relative;
}

.step-number {
    width: 65px; height: 65px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.4);
    border: 4px solid white;
}

.step-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    width: 100%;
    border-left: 4px solid transparent;
    transition: border-color 0.3s;
}

.step:hover .step-content {
    border-left: 4px solid var(--accent-color);
}

.step-content h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-main);
}

/* Call to Action */
.cta-section {
    background: url('https://images.unsplash.com/photo-1557683316-973673baf926?auto=format&fit=crop&w=1920&q=80') center/cover;
    position: relative;
    padding: 120px 20px;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 23, 42, 0.9);
}

.cta-box {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 60px 40px;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.cta-section p {
    font-size: 1.4rem;
    color: #e2e8f0;
    margin: 0 auto 40px auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--accent-color);
    color: #fff;
    padding: 20px 50px;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.5);
}

.cta-button:hover {
    background-color: #d97706;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.6);
}

.arrow { font-size: 1.5rem; transition: transform 0.3s; }
.cta-button:hover .arrow { transform: translateX(8px); }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .cover-page h1 { font-size: 2.2rem; }
    .steps-timeline::before { left: 22px; }
    .step-number { width: 45px; height: 45px; font-size: 1.1rem; }
    .cta-section h2 { font-size: 2rem; }
    .bar { width: 40px; }
    .cover-page { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; }
}/* End custom CSS */