/* Professional Indian Corporate Website Styles */

:root {
    --primary-color: #1e40af;
    --primary-light: #3b82f6;
    --primary-dark: #1e3a8a;
    --secondary-color: #64748b;
    --accent-color: #f59e0b;
    --success-color: #059669;
    --info-color: #0ea5e9;
    --warning-color: #d97706;
    --danger-color: #dc2626;
    --dark-color: #1f2937;
    --light-color: #f8fafc;
    --border-color: #e2e8f0;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
}

/* Base Styles */
body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: #ffffff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
}

.lead {
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Navigation */
.navbar {
    background-color: #ffffff !important;
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary) !important;
}

.navbar-nav .nav-link {
    color: var(--text-primary) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    background-color: rgba(30, 64, 175, 0.05);
}

/* Hero Section */
.hero-section {
    padding: 80px 0 80px;
    background-color: #ffffff;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
}

.hero-image img {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Buttons */
.btn {
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-width: 1px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
}

/* Divider */
.divider {
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* Value Cards */
.value-card {
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.value-icon {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Company Cards */
.company-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.company-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.company-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(30, 64, 175, 0.05);
    border-radius: 12px;
}

/* Feature Badges */
.feature-badge {
    width: 40px;
    height: 40px;
    background-color: rgba(30, 64, 175, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contact Cards */
.contact-card {
    padding: 2rem 1.5rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.contact-icon {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Badge Styles */
.badge {
    font-weight: 500;
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
}

.bg-primary-subtle {
    background-color: rgba(30, 64, 175, 0.1) !important;
}

.bg-success-subtle {
    background-color: rgba(5, 150, 105, 0.1) !important;
}

.bg-info-subtle {
    background-color: rgba(14, 165, 233, 0.1) !important;
}

.bg-warning-subtle {
    background-color: rgba(217, 119, 6, 0.1) !important;
}

.bg-danger-subtle {
    background-color: rgba(220, 38, 38, 0.1) !important;
}

.bg-secondary-subtle {
    background-color: rgba(100, 116, 139, 0.1) !important;
}

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

.text-success {
    color: var(--success-color) !important;
}

.text-info {
    color: var(--info-color) !important;
}

.text-warning {
    color: var(--warning-color) !important;
}

.text-danger {
    color: var(--danger-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

/* Footer */
footer {
    background-color: var(--dark-color) !important;
    border-top: 1px solid #374151;
}

.social-links a {
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 6px;
}

.social-links a:hover {
    color: var(--primary-light) !important;
    background-color: rgba(59, 130, 246, 0.1);
}

/* Section Spacing */
section {
    padding: 5rem 0;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading States */
img {
    transition: opacity 0.3s ease;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 100px 0 60px;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 3rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 80px 0 40px;
    }
    .mobi{
        display: none;
    }
    .mobilogo{
        width: 100%;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .display-4 {
        font-size: 2rem;
        margin-top: 1em;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
    
    .display-6 {
        font-size: 1.5rem;
    }
    
    .btn-lg {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .company-card .card-body {
        padding: 1.5rem;
    }
    
    .value-card,
    .contact-card {
        padding: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        padding: 60px 0 30px;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .btn:last-child {
        margin-bottom: 0;
    }
}

/* Professional Animations */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Clean Focus States */
.btn:focus,
.nav-link:focus {
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

/* Professional Spacing */
.section-padding {
    padding: 5rem 0;
}

.section-padding-sm {
    padding: 3rem 0;
}

/* Clean Card Shadows */
.shadow {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
}

.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
}

/* Professional Color Overrides */
.bg-light {
    background-color: #f8fafc !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

/* Clean Border Radius */
.rounded {
    border-radius: 8px !important;
}

/* Professional List Styling */
.list-unstyled li {
    padding: 0.25rem 0;
}

/* Clean Table Styling (if needed) */
.table {
    border-color: var(--border-color);
}

.table th {
    border-color: var(--border-color);
    background-color: var(--light-color);
    font-weight: 600;
    color: var(--text-primary);
}

/* Professional Form Styling */
.form-control {
    border-color: var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

/* Clean Alert Styling */
.alert {
    border-radius: 8px;
    border-width: 1px;
}

/* Professional Modal Styling */
.modal-content {
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.modal-header {
    border-bottom-color: var(--border-color);
}

.modal-footer {
    border-top-color: var(--border-color);
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .btn,
    footer {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero-section {
        padding: 2rem 0;
    }
    
    section {
        padding: 1.5rem 0;
        page-break-inside: avoid;
    }
}