/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary: #0f4c81;
    --secondary: #ff6b00;
    --light: #f8f9fa;
    --dark: #343a40;
    --success: #28a745;
    --warning: #ffc107;
    --info: #17a2b8;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background: var(--primary);
    color: white !important;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn:hover {
    background: #0a3a62;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    color: white !important;
}

.btn-secondary {
    background: var(--secondary);
    color: white !important;
}

.btn-secondary:hover {
    background: #e05a00;
    color: white !important;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary);
}

/* Header Styles */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.header-top {
    background: var(--primary);
    color: white;
    padding: 8px 0;
    font-size: 0.9rem;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-top-right {
    display: flex;
    gap: 20px;
}

.language-selector select {
    background: transparent;
    border: none;
    color: white;
    padding: 5px;
    cursor: pointer;
}

.language-selector select option {
    color: var(--dark);
}

.help-desk {
    cursor: pointer;
    transition: opacity 0.3s;
}

.help-desk:hover {
    opacity: 0.8;
}

.main-header {
    padding: 15px 0;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 50px;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--primary);
    margin: 0;
}

.logo span {
    color: var(--secondary);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
}

nav ul li {
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    padding: 8px 0;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

nav ul li a:hover {
    color: var(--primary);
}

nav ul li a.active {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 4px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 100;
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    padding: 0;
}

.dropdown li a {
    display: block;
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    color: var(--dark);
}

.dropdown li:last-child a {
    border-bottom: none;
}

.auth-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.auth-buttons .btn {
    padding: 8px 15px;
    font-size: 0.9rem;
}


.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(15, 76, 129, 0.8), rgba(15, 76, 129, 0.9)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    position: relative;
    left: 0;
    right: 0;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
}

.search-bars {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.search-bar {
    display: flex;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.search-bar input {
    flex: 1;
    padding: 15px 25px;
    border: none;
    outline: none;
    font-size: 1rem;
}

.search-bar button {
    background: var(--secondary);
    color: white;
    border: none;
    padding: 0 25px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.3s;
}

.search-bar button:hover {
    background: #e05a00;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Quick Access Section */
.quick-access {
    padding: 80px 0;
    background: white;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.quick-access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.access-card {
    background: white;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--primary);
}

.access-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.access-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.access-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.access-card p {
    color: #666;
    margin-bottom: 20px;
}

/* MSME Section */
.msme-section {
    padding: 80px 0;
    background: #f8f9fa;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.msme-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.msme-text {
    flex: 1;
}

.msme-text h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.msme-text p {
    margin-bottom: 30px;
    color: #555;
}

.msme-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature i {
    color: var(--secondary);
    font-size: 1.5rem;
    margin-top: 5px;
}

.msme-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.msme-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Investors Section */
.investors-section {
    padding: 80px 0;
    background: white;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.investors-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.investors-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.investors-image img {
    width: 100%;
    height: auto;
    display: block;
}

.investors-text {
    flex: 1;
}

.investors-text h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.investors-text p {
    margin-bottom: 30px;
    color: #555;
}

.stats {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.stat {
    text-align: center;
}

.stat h4 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 5px;
}

.stat p {
    font-size: 0.9rem;
    color: #666;
}

/* Live Updates */
.live-updates {
    background: var(--primary);
    color: white;
    padding: 15px 0;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.live-updates .container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.live-label {
    background: var(--secondary);
    padding: 5px 15px;
    border-radius: 4px;
    font-weight: 600;
    white-space: nowrap;
}

.ticker {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 25px;
}

.ticker-content {
    position: absolute;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
}

@keyframes ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Success Stories */
.success-stories {
    padding: 80px 0;
    background: #f8f9fa;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.stories-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.story-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.story-image {
    height: 200px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.story-card:hover .story-image img {
    transform: scale(1.1);
}

.story-content {
    padding: 25px;
}

.story-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.story-content p {
    color: #666;
    margin-bottom: 15px;
}

.story-meta {
    display: flex;
    justify-content: space-between;
    color: #888;
    font-size: 0.9rem;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 20px;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    color: #bbb;
}

.contact-info i {
    color: var(--secondary);
    margin-top: 3px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.newsletter input {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border: none;
    border-radius: 4px;
    background: rgba(255,255,255,0.1);
    color: white;
}

.newsletter input::placeholder {
    color: #bbb;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #bbb;
    font-size: 0.9rem;
}

/* Main Content Styles */
main {
    flex-grow: 1;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Container styling for content pages - ensure proper padding */
main .container {
    padding-top: 20px;
    padding-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
    max-width: 1200px;
}

/* Hero sections should be full-width */
.hero .container {
    padding: 0 20px;
}

/* Bootstrap component overrides to use new color scheme */
.bg-primary {
    background-color: var(--primary) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: white !important;
}

.btn-primary:hover {
    background-color: #0a3a62 !important;
    border-color: #0a3a62 !important;
    color: white !important;
}

.btn-outline-primary {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
    background-color: transparent !important;
}

.btn-outline-primary:hover {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: white !important;
}

.bg-success {
    background-color: var(--success) !important;
}

.text-success {
    color: var(--success) !important;
}

.btn-success {
    background-color: var(--success) !important;
    border-color: var(--success) !important;
    color: white !important;
}

.btn-success:hover {
    color: white !important;
}

.btn-outline-success {
    color: var(--success) !important;
    border-color: var(--success) !important;
    background-color: transparent !important;
}

.btn-outline-success:hover {
    background-color: var(--success) !important;
    border-color: var(--success) !important;
    color: white !important;
}

.btn-outline-info {
    color: var(--info) !important;
    border-color: var(--info) !important;
    background-color: transparent !important;
}

.btn-outline-info:hover {
    background-color: var(--info) !important;
    border-color: var(--info) !important;
    color: white !important;
}

.alert-info {
    background-color: rgba(15, 76, 129, 0.1) !important;
    border-color: rgba(15, 76, 129, 0.2) !important;
    color: var(--primary) !important;
}

.card {
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
}

.card-header {
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.shadow-sm {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
}

/* Responsive Design */
@media (max-width: 992px) {
    .msme-content, .investors-content {
        flex-direction: column;
    }
    
    .msme-image, .investors-image {
        order: -1;
    }
    
    nav ul {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s;
        z-index: 1001;
        padding: 80px 20px 20px;
        overflow-y: auto;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    nav ul li {
        width: 100%;
    }
    
    nav ul li a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid #eee;
    }
    
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        margin-left: 15px;
        margin-top: 10px;
        display: none;
    }
    
    .dropdown.active {
        display: block;
    }
    
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .msme-features {
        grid-template-columns: 1fr;
    }
    
    .stats {
        flex-wrap: wrap;
        gap: 20px;
    }

            .auth-buttons {
                flex-direction: column;
                width: 100%;
            }

            .auth-buttons .btn {
                width: 100%;
                text-align: center;
            }


