/* Vikalp Consultancies - Custom Theme Styles */




/* Mobile view adjustments */

@media (max-width: 768px) {

    .hero-section {

        margin-top: 47px;

        padding-top: 20px;

    }

   

a.btn.btn-outline-light.ms-2 {

    padding: 5px 12px;

}

}



:root {

    /* Primary Colors */

    --primary-navy: #0B2447;

    --secondary-indigo: #1E3A8A;

    --brand-emerald: #10B981;

    --accent-teal: #06B6D4;

    --coral-warning: #FF6B6B;

    --gold-premium: #F59E0B;

    

    /* Neutrals */

    --paper-white: #F9FAFB;

    --gray-light: #E5E7EB;

    --slate-medium: #39486B;

    --charcoal-dark: #0F1724;

    

    /* Gradients */

    --hero-gradient-a: linear-gradient(135deg, #0B2447 0%, #1E3A8A 50%, #06B6D4 100%);

    --hero-gradient-b: linear-gradient(120deg, #0B2447 0%, #10B981 60%, #F59E0B 100%);

    

    /* Shadows */

    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);

    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);

    --shadow-lg: 0 8px 24px rgba(0,0,0,0.2);

    --shadow-glow: 0 0 20px rgba(16, 185, 129, 0.3);

    

    /* Transitions */

    --transition-fast: 0.2s ease;

    --transition-normal: 0.3s ease;

    --transition-slow: 0.5s ease;

}



/* Base Styles */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}



body {

    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    line-height: 1.6;

    color: var(--charcoal-dark);

    background-color: var(--paper-white);

}



/* Typography */

h1, h2, h3, h4, h5, h6 {

    font-weight: 700;

    line-height: 1.2;

    margin-bottom: 1rem;

}



.section-title {

    font-size: 2.5rem;

    color: var(--primary-navy);

    margin-bottom: 1rem;

}



.section-subtitle {

    font-size: 1.1rem;

    color: var(--slate-medium);

    margin-bottom: 2rem;

}



/* Navigation */

.navbar {

    background: rgba(11, 36, 71, 0.95);

    backdrop-filter: blur(10px);

    transition: var(--transition-normal);

    padding: 1rem 0;

}



.navbar-brand {

    font-size: 1.3rem;

    color: white !important;

}

@media (max-width: 991px) {


.navbar-brand {
    font-size: 0.9rem !important;

}
.navbar{
    flex-wrap: nowrap !important;
}
}

.navbar-nav .nav-link {

    color: rgba(255, 255, 255, 0.9) !important;

    font-weight: 500;

    margin: 0 0.5rem;

    transition: var(--transition-fast);

}



.navbar-nav .nav-link:hover,

.navbar-nav .nav-link.active {

    color: var(--brand-emerald) !important;

}



/* Buttons */

.btn {

    border-radius: 12px;

    font-weight: 600;

    padding: 0.75rem 1.5rem;

    transition: var(--transition-normal);

    border: none;

    text-decoration: none;

    display: inline-flex;

    align-items: center;

    justify-content: center;

}



.btn-primary {

    background: var(--hero-gradient-b);

    color: white;

    box-shadow: var(--shadow-md);

}



.btn-primary:hover {

    transform: translateY(-2px);

    box-shadow: var(--shadow-lg);

    color: white;

}



.btn-outline-light {

    border: 2px solid rgba(255, 255, 255, 0.3);

    color: white;

    background: transparent;

}



.btn-outline-light:hover {

    background: white;

    color: var(--primary-navy);

    border-color: white;

}



.btn-outline-primary {

    border: 2px solid var(--brand-emerald);

    color: var(--brand-emerald);

    background: transparent;

}



.btn-outline-primary:hover {

    background: var(--brand-emerald);

    color: white;

}



/* Hero Section */

.hero-section {

    position: relative;

    min-height: 100vh;

    display: flex;

    align-items: center;

    overflow: hidden;

}



.hero-gradient {

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background: var(--hero-gradient-a);

    z-index: -1;

}



.hero-content {

    color: white;

    z-index: 2;

}



.hero-title {

    font-size: 3.5rem;

    font-weight: 800;

    margin-bottom: 1.5rem;

    line-height: 1.1;

}



.hero-subtitle {

    font-size: 1.2rem;

    margin-bottom: 2rem;

    opacity: 0.9;

    line-height: 1.6;

}

@media (max-width: 768px) {
    .hero-subtitle {
    font-size: 0.88rem;
    line-height: 1.6;
}

}


/* .hero-buttons {

    margin-bottom: 3rem;

} */

.hero-buttons,.cta-buttons {

  display: flex;

  flex-wrap: wrap;       /* allows wrapping if needed */

  justify-content: center; /* center align */

  gap: 10px;             /* space between buttons */

}



.hero-buttons a , .cta-buttons a{

  flex: 1 1 auto;        /* buttons can shrink/grow */

  text-align: center;    /* center text inside */

}



.hero-stats {

    margin-top: 2rem;

}



.stat-item {

    padding: 1rem;

}



.stat-number {

    font-size: 2rem;

    font-weight: 800;

    color: var(--brand-emerald);

    margin-bottom: 0.5rem;

}



.stat-label {

    font-size: 0.9rem;

    opacity: 0.8;

    margin: 0;

}



/* Hero Illustration */

.hero-illustration {

    position: relative;

    height: 500px;

}



.illustration-container {

    position: relative;

    width: 100%;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

}



.main-illustration {

    width: 200px;

    height: 200px;

    background: rgba(255, 255, 255, 0.1);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 4rem;

    color: var(--brand-emerald);

    backdrop-filter: blur(10px);

    border: 2px solid rgba(255, 255, 255, 0.2);

    animation: float 3s ease-in-out infinite;

}



.floating-card {

    position: absolute;

    background: rgba(255, 255, 255, 0.1);

    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.2);

    border-radius: 12px;

    padding: 1rem;

    display: flex;

    flex-direction: column;

    align-items: center;

    color: white;

    font-size: 0.9rem;

    animation: float 3s ease-in-out infinite;

}



.floating-card i {

    font-size: 1.5rem;

    margin-bottom: 0.5rem;

    color: var(--brand-emerald);

}



.card-1 {

    top: 10%;

    left: 10%;

    animation-delay: 0s;

}



.card-2 {

    top: 20%;

    right: 10%;

    animation-delay: 1s;

}



.card-3 {

    bottom: 20%;

    left: 20%;

    animation-delay: 2s;

}



/* Animations */

@keyframes float {

    0%, 100% { transform: translateY(0px); }

    50% { transform: translateY(-20px); }

}



.animate-fade-up {

    opacity: 0;

    transform: translateY(30px);

    animation: fadeUp 0.8s ease forwards;

}



@keyframes fadeUp {

    to {

        opacity: 1;

        transform: translateY(0);

    }

}



/* Plan Cards */

.plan-card {

    background: white;

    border-radius: 20px;

    padding: 2rem;

    text-align: center;

    box-shadow: var(--shadow-md);

    transition: var(--transition-normal);

    position: relative;

    height: 100%;

    border: 2px solid transparent;

}



.plan-card:hover {

    transform: translateY(-10px);

    box-shadow: var(--shadow-lg);

    border-color: var(--brand-emerald);

}



.plan-card.featured {

    border-color: var(--brand-emerald);

    transform: scale(1.05);

}



.plan-badge {

    position: absolute;

    top: -10px;

    left: 50%;

    transform: translateX(-50%);

    background: var(--hero-gradient-b);

    color: white;

    padding: 0.5rem 1rem;

    border-radius: 20px;

    font-size: 0.8rem;

    font-weight: 600;

}



.plan-header h3 {

    font-size: 1.5rem;

    color: var(--primary-navy);

    margin-bottom: 1rem;

}



.plan-price {

    margin-bottom: 2rem;

}



.plan-price .currency {

    font-size: 1.2rem;

    color: var(--slate-medium);

}



.plan-price .amount {

    font-size: 3rem;

    font-weight: 800;

    color: var(--brand-emerald);

}



.plan-price .period {

    font-size: 0.9rem;

    color: var(--slate-medium);

    display: block;

}



.plan-features ul {

    list-style: none;

    padding: 0;

    margin-bottom: 2rem;

}



.plan-features li {

    padding: 0.5rem 0;

    display: flex;

    align-items: center;

    justify-content: center;

}



.plan-features i {

    color: var(--brand-emerald);

    margin-right: 0.5rem;

}



/* Benefits Section */

.benefits-section {

    background: var(--hero-gradient-a);

    position: relative;

}



.benefit-card {

    background: rgba(255, 255, 255, 0.1);

    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.2);

    border-radius: 16px;

    padding: 2rem;

    text-align: center;

    color: white;

    transition: var(--transition-normal);

    height: 100%;

}



.benefit-card:hover {

    transform: translateY(-5px);

    background: rgba(255, 255, 255, 0.15);

}



.benefit-icon {

    width: 80px;

    height: 80px;

    background: rgba(16, 185, 129, 0.2);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    margin: 0 auto 1.5rem;

    font-size: 2rem;

    color: var(--brand-emerald);

}



.benefit-card h4 {

    margin-bottom: 1rem;

    color: white;

}



.benefit-card p {

    opacity: 0.9;

    line-height: 1.6;

}



/* CTA Section */

.cta-section {

    background: var(--hero-gradient-b);

    color: white;

    text-align: center;

}



.cta-title {

    font-size: 2.5rem;

    margin-bottom: 1rem;

    color: white;

}



.cta-subtitle {

    font-size: 1.1rem;

    margin-bottom: 2rem;

    opacity: 0.9;

}



/* Footer */

.footer {

    background: var(--charcoal-dark);

    color: white;

    padding: 3rem 0 1rem;

}



.footer-title {

    color: var(--brand-emerald);

    margin-bottom: 1rem;

}



.footer-text {

    opacity: 0.8;

    margin-bottom: 1.5rem;

}



.social-links {

    display: flex;

    gap: 1rem;

}



.social-links a {

    width: 40px;

    height: 40px;

    background: rgba(255, 255, 255, 0.1);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: white;

    text-decoration: none;

    transition: var(--transition-fast);

}



.social-links a:hover {

    background: var(--brand-emerald);

    transform: translateY(-2px);

}



.footer-heading {

    color: var(--brand-emerald);

    margin-bottom: 1rem;

    font-weight: 600;

}



.footer-links {

    list-style: none;

    padding: 0;

}



.footer-links li {

    margin-bottom: 0.5rem;

}



.footer-links a {

    color: rgba(255, 255, 255, 0.8);

    text-decoration: none;

    transition: var(--transition-fast);

}



.footer-links a:hover {

    color: var(--brand-emerald);

}



.contact-info p {

    margin-bottom: 0.5rem;

    opacity: 0.8;

}



.contact-info i {

    color: var(--brand-emerald);

    width: 20px;

}



.footer-divider {

    border-color: rgba(255, 255, 255, 0.1);

    margin: 2rem 0 1rem;

}



.footer-copyright {

    opacity: 0.7;

    margin: 0;

}



/* Accordion */

.accordion-item {

    border: 1px solid var(--gray-light);

    border-radius: 12px !important;

    margin-bottom: 1rem;

    overflow: hidden;

}



.accordion-button {

    background: white;

    border: none;

    font-weight: 600;

    color: var(--primary-navy);

    border-radius: 12px !important;

}



.accordion-button:not(.collapsed) {

    background: var(--brand-emerald);

    color: white;

    box-shadow: none;

}



.accordion-button:focus {

    box-shadow: 0 0 0 0.25rem rgba(16, 185, 129, 0.25);

}



.accordion-body {

    background: var(--paper-white);

    color: var(--slate-medium);

    line-height: 1.6;

}



/* Dashboard Styles */

.dashboard-sidebar {

    background: var(--primary-navy);

    min-height: 100vh;

    padding: 2rem 0;

    position: fixed;

    left: 0;

    top: 0;

    width: 250px;

    z-index: 1000;

    transition: var(--transition-normal);

}



.dashboard-content {

    margin-left: 250px;

    padding: 2rem;

    min-height: 100vh;

    background: var(--paper-white);

}



.sidebar-brand {

    color: white;

    font-size: 1.2rem;

    font-weight: 700;

    text-align: center;

    margin-bottom: 2rem;

    padding: 0 1rem;

}



.sidebar-nav {

    list-style: none;

    padding: 0;

}



.sidebar-nav li {

    margin-bottom: 0.5rem;

}



.sidebar-nav a {

    display: flex;

    align-items: center;

    padding: 0.75rem 1rem;

    color: rgba(255, 255, 255, 0.8);

    text-decoration: none;

    transition: var(--transition-fast);

    border-radius: 0 25px 25px 0;

    margin-right: 1rem;

}



.sidebar-nav a:hover,

.sidebar-nav a.active {

    background: var(--brand-emerald);

    color: white;

}



.sidebar-nav i {

    margin-right: 0.75rem;

    width: 20px;

}



/* Dashboard Cards */

.dashboard-card {

    background: white;

    border-radius: 16px;

    padding: 1.5rem;

    box-shadow: var(--shadow-md);

    margin-bottom: 1.5rem;

    transition: var(--transition-normal);

}



.dashboard-card:hover {

    transform: translateY(-2px);

    box-shadow: var(--shadow-lg);

}



.card-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 1rem;

}



.card-title {

    font-size: 1.1rem;

    font-weight: 600;

    color: var(--primary-navy);

    margin: 0;

}



.card-icon {

    width: 40px;

    height: 40px;

    border-radius: 10px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 1.2rem;

    color: white;

}



.card-icon.primary { background: var(--brand-emerald); }

.card-icon.warning { background: var(--gold-premium); }

.card-icon.danger { background: var(--coral-warning); }

.card-icon.info { background: var(--accent-teal); }



.stat-card {

    text-align: center;

}



.stat-value {

    font-size: 2rem;

    font-weight: 800;

    color: var(--brand-emerald);

    margin-bottom: 0.5rem;

}



.stat-label {

    color: #000000;

    font-size: 0.9rem;

    margin: 0;

}



/* Forms */

.form-control {

    border-radius: 12px;

    border: 2px solid var(--gray-light);

    padding: 0.75rem 1rem;

    transition: var(--transition-fast);

}



.form-control:focus {

    border-color: var(--brand-emerald);

    box-shadow: 0 0 0 0.25rem rgba(16, 185, 129, 0.25);

}



.form-label {

    font-weight: 600;

    color: var(--primary-navy);

    margin-bottom: 0.5rem;

}



/* Tables */

.table {

    background: white;

    border-radius: 12px;

    overflow: hidden;

    box-shadow: var(--shadow-sm);

}



.table thead th {

    background: var(--primary-navy);

    color: white;

    border: none;

    font-weight: 600;

    padding: 1rem;

}



.table tbody td {

    padding: 1rem;

    border-color: var(--gray-light);

    vertical-align: middle;

}



/* Modals */

.modal-content {

    border-radius: 16px;

    border: none;

    box-shadow: var(--shadow-lg);

}



.modal-header {

    background: var(--primary-navy);

    color: white;

    border-radius: 16px 16px 0 0;

    border: none;

}



.modal-title {

    font-weight: 600;

}



.btn-close {

    filter: invert(1);

}



/* Charts */

.chart-container {

    position: relative;

    height: 300px;

    margin: 1rem 0;

}



/* Status Badges */

.badge {

    padding: 0.5rem 1rem;

    border-radius: 20px;

    font-weight: 500;

}



.badge-success { background: var(--brand-emerald); color: white; }

.badge-warning { background: var(--gold-premium); color: white; }

.badge-danger { background: var(--coral-warning); color: white; }

.badge-info { background: var(--accent-teal); color: white; }

.badge-secondary { background: var(--slate-medium); color: white; }



/* Responsive Design */

@media (max-width: 768px) {

    .hero-title {

        font-size: 1.75rem !important;

    }

    

    .section-title {

        font-size: 2rem;

    }

    

    .dashboard-sidebar {

        transform: translateX(-100%);

    }

    

    .dashboard-content {

        margin-left: 0;

    }

    

    .sidebar-open .dashboard-sidebar {

        transform: translateX(0);

    }

    

    .plan-card.featured {

        transform: none;

    }

}



/* Loading Animation */

.loading {

    display: inline-block;

    width: 20px;

    height: 20px;

    border: 3px solid rgba(255,255,255,.3);

    border-radius: 50%;

    border-top-color: #fff;

    animation: spin 1s ease-in-out infinite;

}



@keyframes spin {

    to { transform: rotate(360deg); }

}



/* Toast Notifications */

.toast-container {

    position: fixed;

    top: 20px;

    right: 20px;

    z-index: 9999;

}



.toast {

    border-radius: 12px;

    border: none;

    box-shadow: var(--shadow-lg);

}



.toast-header {

    background: var(--primary-navy);

    color: white;

    border: none;

}



.toast-body {

    background: white;

    color: var(--charcoal-dark);

}



/* File Upload */

.file-upload-area {

    border: 2px dashed var(--gray-light);

    border-radius: 12px;

    padding: 2rem;

    text-align: center;

    transition: var(--transition-fast);

    cursor: pointer;

}



.file-upload-area:hover {

    border-color: var(--brand-emerald);

    background: rgba(16, 185, 129, 0.05);

}



.file-upload-area.dragover {

    border-color: var(--brand-emerald);

    background: rgba(16, 185, 129, 0.1);

}



/* Progress Bars */

.progress {

    height: 8px;

    border-radius: 4px;

    background: var(--gray-light);

}



.progress-bar {

    background: var(--brand-emerald);

    border-radius: 4px;

}



/* Custom Scrollbar */

::-webkit-scrollbar {

    width: 8px;

}



::-webkit-scrollbar-track {

    background: var(--gray-light);

}



::-webkit-scrollbar-thumb {

    background: var(--brand-emerald);

    border-radius: 4px;

}



::-webkit-scrollbar-thumb:hover {

    background: var(--secondary-indigo);

}



/* ROI Calculator Styles */

.calculator-section {

    background: var(--paper-white);

    padding: 4rem 0;

}



.calculator-card {

    background: white;

    border-radius: 20px;

    padding: 2rem;

    box-shadow: var(--shadow-lg);

    border: 2px solid transparent;

    transition: var(--transition-normal);

}



.calculator-card:hover {

    border-color: var(--brand-emerald);

    transform: translateY(-2px);

    box-shadow: var(--shadow-glow), var(--shadow-lg);

}



.calculator-header {

    margin-bottom: 2rem;

}



.calculator-header h3 {

    font-size: 1.8rem;

    color: var(--primary-navy);

    margin-bottom: 0.5rem;

}



.calculator-header p {

    color: var(--slate-medium);

}



.calculator-form .row {

    margin-bottom: 1.5rem;

}



.calculator-form .form-control {

    border-radius: 12px;

    border: 2px solid var(--gray-light);

    padding: 0.75rem 1rem;

    transition: var(--transition-fast);

}



.calculator-form .form-control:focus {

    border-color: var(--brand-emerald);

    box-shadow: 0 0 0 0.25rem rgba(16, 185, 129, 0.25);

}



.calculator-form .form-label {

    font-weight: 600;

    color: var(--primary-navy);

    margin-bottom: 0.5rem;

}



.preset-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 0.5rem;

    margin-bottom: 1.5rem;

}



.preset-btn {

    flex: 1;

    min-width: 120px;

    padding: 0.75rem 1rem;

    border-radius: 12px;

    border: 2px solid var(--gray-light);

    background: white;

    color: var(--slate-medium);

    font-weight: 600;

    cursor: pointer;

    transition: var(--transition-fast);

}



.preset-btn:hover {

    border-color: var(--brand-emerald);

    color: var(--brand-emerald);

}



.preset-btn.active {

    background: var(--brand-emerald);

    border-color: var(--brand-emerald);

    color: white;

}



.calculate-btn {

    width: 100%;

    padding: 1rem;

    background: var(--hero-gradient-b);

    color: white;

    border: none;

    border-radius: 12px;

    font-weight: 700;

    font-size: 1.1rem;

    cursor: pointer;

    transition: var(--transition-normal);

    box-shadow: var(--shadow-md);

}



.calculate-btn:hover {

    transform: translateY(-2px);

    box-shadow: var(--shadow-lg);

}



.calculate-btn:disabled {

    opacity: 0.6;

    cursor: not-allowed;

    transform: none;

}



.results-section {

    margin-top: 2rem;

}



.results-header {

    margin-bottom: 1.5rem;

}



.results-header h4 {

    font-size: 1.5rem;

    color: var(--primary-navy);

    margin-bottom: 0.5rem;

}



.results-summary {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));

    gap: 1rem;

    margin-bottom: 2rem;

}



.result-card {

    background: white;

    border-radius: 16px;

    padding: 1.5rem;

    box-shadow: var(--shadow-md);

    border: 2px solid transparent;

    transition: var(--transition-normal);

    text-align: center;

}



.result-card:hover {

    transform: translateY(-2px);

    box-shadow: var(--shadow-lg);

}



.result-card.primary {

    border-color: var(--brand-emerald);

    background: rgba(16, 185, 129, 0.05);

}



.result-card.warning {

    border-color: var(--gold-premium);

    background: rgba(245, 158, 11, 0.05);

}



.result-card.danger {

    border-color: var(--coral-warning);

    background: rgba(255, 107, 107, 0.05);

}



.result-card.info {

    border-color: var(--accent-teal);

    background: rgba(6, 182, 212, 0.05);

}



.result-icon {

    width: 60px;

    height: 60px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 1.5rem;

    margin: 0 auto 1rem;

    color: white;

}



.result-icon.primary { background: var(--brand-emerald); }

.result-icon.warning { background: var(--gold-premium); }

.result-icon.danger { background: var(--coral-warning); }

.result-icon.info { background: var(--accent-teal); }



.result-value {

    font-size: 1.8rem;

    font-weight: 800;

    color: var(--primary-navy);

    margin-bottom: 0.5rem;

}



.result-label {

    font-size: 0.9rem;

    color: var(--slate-medium);

    margin: 0;

}



.detail-section {

    margin-top: 2rem;

}



.detail-section h4 {

    font-size: 1.3rem;

    color: var(--primary-navy);

    margin-bottom: 1.5rem;

}



.detail-table {

    width: 100%;

    border-collapse: collapse;

    background: white;

    border-radius: 12px;

    overflow: hidden;

    box-shadow: var(--shadow-sm);

}



.detail-table th {

    background: var(--primary-navy);

    color: white;

    padding: 1rem;

    text-align: left;

    font-weight: 600;

}



.detail-table td {

    padding: 0.75rem 1rem;

    border-bottom: 1px solid var(--gray-light);

}



.detail-table tr:last-child td {

    border-bottom: none;

}



.detail-table tr:hover {

    background: rgba(16, 185, 129, 0.05);

}



.chart-section {

    margin-top: 2rem;

}



.chart-section h4 {

    font-size: 1.3rem;

    color: var(--primary-navy);

    margin-bottom: 1.5rem;

}



.chart-container-large {

    position: relative;

    height: 400px;

    background: white;

    border-radius: 16px;

    padding: 1.5rem;

    box-shadow: var(--shadow-md);

}



.actions-section {

    margin-top: 2rem;

    display: flex;

    gap: 1rem;

    flex-wrap: wrap;

}



.action-btn {

    padding: 0.75rem 1.5rem;

    border-radius: 12px;

    border: 2px solid var(--gray-light);

    background: white;

    color: var(--slate-medium);

    font-weight: 600;

    cursor: pointer;

    transition: var(--transition-fast);

    display: flex;

    align-items: center;

    gap: 0.5rem;

}



.action-btn:hover {

    border-color: var(--brand-emerald);

    color: var(--brand-emerald);

}



.action-btn.primary {

    background: var(--brand-emerald);

    border-color: var(--brand-emerald);

    color: white;

}



.action-btn.primary:hover {

    background: var(--secondary-indigo);

    border-color: var(--secondary-indigo);

}



/* Responsive Calculator */

@media (max-width: 768px) {

    .calculator-section {

        padding: 2rem 0;

    }

    

    .calculator-card {

        padding: 1.5rem;

    }

    

    .calculator-header h3 {

        font-size: 1.5rem;

    }

    

    .results-summary {

        grid-template-columns: 1fr;

    }

    

    .chart-container-large {

        height: 300px;

        padding: 1rem;

    }

    

    .preset-buttons {

        flex-direction: column;

    }

    

    .preset-btn {

        min-width: auto;

    }

    

    .detail-table {

        display: block;

        overflow-x: auto;

    }

}

@media (max-width: 576px) {  /* Bootstrap mobile breakpoint */

  .hero-buttons {

    display: flex;

    justify-content: center;

    gap: 10px;

  }

}







/* addded 11-12-25 */









      .about-hero {

            position: relative;

            min-height: 60vh;

            display: flex;

            align-items: center;

            overflow: hidden;

        }



        .hero-gradient {

            position: absolute;

            top: 0;

            left: 0;

            right: 0;

            bottom: 0;

            background: var(--hero-gradient-a);

            z-index: -1;

        }



        .story-content h3 {

            color: var(--primary-navy);

            margin-bottom: 1.5rem;

        }



        .story-content p {

            color: var(--slate-medium);

            line-height: 1.8;

            margin-bottom: 1.5rem;

        }



        .story-stats {

            margin-top: 2rem;

        }



        .story-stats .stat-item {

            text-align: center;

        }



        .story-stats h4 {

            color: var(--brand-emerald);

            font-size: 2rem;

            font-weight: 800;

            margin-bottom: 0.5rem;

        }



        .story-stats p {

            color: var(--slate-medium);

            margin: 0;

            font-size: 0.9rem;

        }



        .story-image {

            text-align: center;

        }



        .image-placeholder {

            background: var(--paper-white);

            border: 2px dashed var(--gray-light);

            border-radius: 16px;

            padding: 4rem 2rem;

            text-align: center;

            color: var(--slate-medium);

        }



        .image-placeholder i {

            font-size: 4rem;

            margin-bottom: 1rem;

            color: var(--brand-emerald);

        }



        .mission-section {

            background: var(--paper-white);

        }



        .mission-card {

            background: white;

            padding: 2rem;

            border-radius: 16px;

            box-shadow: var(--shadow-md);

            height: 100%;

            text-align: center;

        }



        .mission-icon {

            width: 80px;

            height: 80px;

            background: var(--brand-emerald);

            border-radius: 50%;

            display: flex;

            align-items: center;

            justify-content: center;

            margin: 0 auto 1.5rem;

            color: white;

            font-size: 2rem;

        }



        .mission-card h3 {

            color: var(--primary-navy);

            margin-bottom: 1rem;

        }



        .mission-card p {

            color: var(--slate-medium);

            line-height: 1.6;

        }



        .value-card {

            background: white;

            padding: 2rem;

            border-radius: 16px;

            box-shadow: var(--shadow-md);

            text-align: center;

            height: 100%;

            transition: var(--transition-normal);

        }



        .value-card:hover {

            transform: translateY(-5px);

            box-shadow: var(--shadow-lg);

        }



        .value-icon {

            width: 60px;

            height: 60px;

            background: rgba(16, 185, 129, 0.1);

            border-radius: 50%;

            display: flex;

            align-items: center;

            justify-content: center;

            margin: 0 auto 1.5rem;

            color: var(--brand-emerald);

            font-size: 1.5rem;

        }



        .value-card h4 {

            color: var(--primary-navy);

            margin-bottom: 1rem;

        }



        .value-card p {

            color: var(--slate-medium);

            line-height: 1.6;

        }



        .team-section {

            background: var(--hero-gradient-b);

        }



        .team-card {

            background: rgba(255, 255, 255, 0.1);

            backdrop-filter: blur(10px);

            border: 1px solid rgba(255, 255, 255, 0.2);

            border-radius: 16px;

            padding: 2rem;

            text-align: center;

            height: 100%;

            transition: var(--transition-normal);

        }



        .team-card:hover {

            transform: translateY(-5px);

            background: rgba(255, 255, 255, 0.15);

        }



        .team-image {

            margin-bottom: 1.5rem;

        }



        .team-image .image-placeholder {

            background: rgba(255, 255, 255, 0.1);

            border: 2px solid rgba(255, 255, 255, 0.2);

            color: white;

            padding: 2rem;

        }



        .team-image i {

            color: var(--brand-emerald);

        }



        .team-info h4 {

            color: white;

            margin-bottom: 0.5rem;

        }



        .team-role {

            color: var(--brand-emerald);

            font-weight: 600;

            margin-bottom: 1rem;

        }



        .team-description {

            color: rgba(255, 255, 255, 0.8);

            line-height: 1.6;

            margin-bottom: 1.5rem;

        }



        .team-social {

            display: flex;

            justify-content: center;

            gap: 1rem;

        }



        .team-social a {

            width: 40px;

            height: 40px;

            background: rgba(255, 255, 255, 0.1);

            border-radius: 50%;

            display: flex;

            align-items: center;

            justify-content: center;

            color: white;

            text-decoration: none;

            transition: var(--transition-fast);

        }



        .team-social a:hover {

            background: var(--brand-emerald);

            transform: translateY(-2px);

        }



        .feature-card {

            background: white;

            padding: 2rem;

            border-radius: 16px;

            box-shadow: var(--shadow-md);

            text-align: center;

            height: 100%;

            transition: var(--transition-normal);

        }



        .feature-card:hover {

            transform: translateY(-5px);

            box-shadow: var(--shadow-lg);

        }



        .feature-icon {

            width: 60px;

            height: 60px;

            background: rgba(16, 185, 129, 0.1);

            border-radius: 50%;

            display: flex;

            align-items: center;

            justify-content: center;

            margin: 0 auto 1.5rem;

            color: var(--brand-emerald);

            font-size: 1.5rem;

        }



        .feature-card h4 {

            color: var(--primary-navy);

            margin-bottom: 1rem;

        }



        .feature-card p {

            color: var(--slate-medium);

            line-height: 1.6;

        }

/* css started 02-01-25 for employee dashboard */





/* .stat-label {

    color: #0F1724;

} */

/* css started 06-01-25 */

@media (max-width: 768px) {

    .stat-number {
    font-size: 1.6rem;
    line-height: 1.4;
    }

}
