/* NIET TBI Final Design - White & #00afef Theme */

/* CSS Custom Properties for Dark Theme */
:root {
    /* Primary Theme Colors */
    --primary-color: #00afef;
    --primary-dark: #0096d4;
    --primary-light: #33bff2;
    --secondary-color: #ffffff;
    --accent-color: #00d4ff;
    
    /* Dark Theme Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #e2e8f0;
    --text-muted: #a0aec0;
    --text-inverse: #1a202c;
    
    /* Dark Theme Background Colors */
    --bg-primary: #1a202c;
    --bg-secondary: #2d3748;
    --bg-tertiary: #4a5568;
    --bg-overlay: rgba(0, 175, 239, 0.2);
    
    /* Dark Theme Border Colors */
    --border-light: #4a5568;
    --border-medium: #718096;
    --border-dark: #a0aec0;
    
    /* Dark Theme Shadow Colors */
    --shadow-light: rgba(0, 0, 0, 0.3);
    --shadow-medium: rgba(0, 0, 0, 0.5);
    --shadow-dark: rgba(0, 0, 0, 0.7);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #00afef 0%, #00d4ff 100%);
    --gradient-secondary: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    --gradient-hero: linear-gradient(135deg, #00afef 0%, #0096d4 50%, #00d4ff 100%);
    
    /* Animation Variables */
    --animation-speed: 0.3s;
    --animation-curve: cubic-bezier(0.4, 0, 0.2, 1);
    --bounce-curve: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: 100px;
}

html, body {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    transition: all var(--animation-speed) var(--animation-curve);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.dark-mode {
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: white;
}

.loading-logo img {
    width: 300px;
    height: 100px;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
    filter: brightness(1.1);
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border-light);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

.loading-text {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.loading-progress {
    width: 200px;
    height: 4px;
    background: var(--border-light);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.progress-bar {
    height: 100%;
    background: var(--primary-color);
    width: 0%;
    animation: loadingProgress 3s ease-in-out;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes loadingProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 1000;
    transition: width 0.1s ease;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--animation-speed) var(--animation-curve);
    z-index: 1000;
    box-shadow: 0 4px 20px var(--shadow-medium);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px var(--shadow-dark);
}



/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 32, 44, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all var(--animation-speed) var(--animation-curve);
    z-index: 999;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-brand .logo {
    width: 150px;
    height: 50px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color var(--animation-speed) var(--animation-curve);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--animation-speed) var(--animation-curve);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: all var(--animation-speed) var(--animation-curve);
}

/* Button Styles */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: var(--text-inverse);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--animation-speed) var(--animation-curve);
    box-shadow: 0 4px 15px var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px var(--shadow-medium);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--animation-speed) var(--animation-curve);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow: hidden;
    padding-top: 100px;
    box-sizing: border-box;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(0, 175, 239, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 175, 239, 0.05) 0%, transparent 50%);
    animation: floatPattern 20s ease-in-out infinite;
}

@keyframes floatPattern {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: slideInUp 1s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.startup-india-logo {
    max-height: 80px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
    transition: all var(--animation-speed) var(--animation-curve);
}

.startup-india-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.9;
    animation: slideInUp 1s ease-out 0.2s both;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    color: var(--accent-color);
    position: relative;
}

.highlight-primary {
    color: var(--accent-color);
}

.highlight-secondary {
    color: rgba(255, 255, 255, 0.9);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: space-around;
    margin: 0;
    animation: slideInUp 1s ease-out 0.6s both;
    padding: 2rem;
    border-top: 2px solid var(--primary-color);
    border-bottom: 1px solid var(--border-light);
    max-width: 500px;
    width: 100%;
    position: relative;
    background: var(--bg-secondary);
    border-radius: 1rem;
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.hero-stats::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
    line-height: 1.3;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 0;
    animation: slideInUp 1s ease-out 0.4s both;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    animation: slideInUp 1s ease-out 0.8s both;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    animation: slideInRight 1s ease-out 0.5s both;
}

.approval-card {
    background: var(--bg-secondary);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-light);
    border-radius: 1rem;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 20px 40px var(--shadow-medium);
    min-width: 400px;
    max-width: 500px;
}

.approval-header h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.msme-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 2rem;
    filter: brightness(1.2);
}

.approval-partners {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.8rem;
    border: 1px solid var(--border-light);
    transition: all var(--animation-speed) ease;
    flex: 1;
    min-width: 120px;
}

.partner-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 175, 239, 0.2);
}

.partner-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
    color: var(--primary-color);
}

.partner-logo {
    max-width: 100px;
    height: auto;
    filter: brightness(1.1);
    transition: all var(--animation-speed) ease;
}

.partner-logo:hover {
    filter: brightness(1.3);
    transform: scale(1.05);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    color: var(--text-secondary);
}

.scroll-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Section */
.about {
    background: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 40px var(--shadow-light);
}

.about-content {
    animation: slideInLeft 1s ease-out;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.feature-list {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Innovation Philosophy */
.innovation-philosophy {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    padding: 6rem 0;
}

.philosophy-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.philosophy-description {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Offerings Section */
.offerings {
    background: var(--bg-primary);
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.offering-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all var(--animation-speed) var(--animation-curve);
    position: relative;
    overflow: hidden;
}

.offering-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 175, 239, 0.1), transparent);
    transition: left 0.6s ease;
}

.offering-card:hover::before {
    left: 100%;
}

.offering-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow-light);
    border-color: var(--primary-color);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    padding: 1rem;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.card-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.card-footer {
    margin-top: auto;
}

.card-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--animation-speed) var(--animation-curve);
}

.card-link:hover {
    gap: 1rem;
}

/* Why Us Section */
.why-us {
    background: var(--bg-secondary);
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.subsection-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.advantages-section {
    margin: 2rem 0;
}

.advantages-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.advantages-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.advantage-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.advantage-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
}

.why-us-visual {
    position: relative;
}

.why-us-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 20px 40px var(--shadow-light);
}

/* Partners Section */
.partners {
    background: var(--bg-primary);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.partner-category {
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all var(--animation-speed) var(--animation-curve);
}

.partner-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow-light);
}

.partner-category-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.partner-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80px;
}

.partner-logo {
    max-width: 120px;
    height: auto;
}

.partner-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.ecosystem-partners {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.ecosystem-logo {
    max-width: 100px;
    height: auto;
}

/* Contact Section */
.contact {
    background: var(--bg-primary);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 175, 239, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 175, 239, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 500px;
    position: relative;
    z-index: 2;
}

/* Contact Form Side */
.contact-form-side {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 0;
    border: none;
    border-bottom: 2px solid var(--border-light);
    background: transparent;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--animation-speed) ease;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--primary-color);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.contact-submit-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all var(--animation-speed) ease;
    text-transform: uppercase;
    margin-top: 1rem;
}

.contact-submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 175, 239, 0.3);
}

/* Contact Info Side */
.contact-info-side {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 2rem;
}

.contact-header {
    max-width: 400px;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.highlight-blue {
    color: var(--primary-color);
}

.contact-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.reach-out-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.reach-out-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.reach-out-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .contact-info-side {
        padding-left: 0;
        order: -1;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-form {
        max-width: 100%;
    }
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-light);
    padding: 1.5rem 0 0.75rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.footer-logo img {
    width: 250px;
    height: 75px;
    object-fit: contain;
}

.footer-brand {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-color);
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 300px;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.footer-contact-item {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 0.25rem;
}

.footer-contact-item.compact {
    flex: 1;
    min-width: 200px;
}

.footer-contact-item i {
    color: var(--primary-color);
    font-size: 1rem;
    flex-shrink: 0;
}

.footer-contact-item strong {
    color: var(--text-primary);
    font-weight: 600;
    margin-right: 0.5rem;
}

.footer-contact-item p {
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.footer-contact-item span {
    color: var(--text-secondary);
    line-height: 1.4;
}

.footer-contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-contact-item a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding-top: 1rem;
    text-align: center;
}

.footer-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-text p {
    margin: 0;
}

/* Floating Action Button */
.floating-action {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.fab-apply {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 3rem;
    font-weight: 600;
    box-shadow: 0 8px 32px rgba(0, 175, 239, 0.4);
    transition: all var(--animation-speed) var(--animation-curve);
    animation: fabPulse 3s infinite;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    min-width: 140px;
    justify-content: center;
}

.fab-apply:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 175, 239, 0.6);
    animation: none;
    border-color: rgba(255, 255, 255, 0.4);
}

.fab-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.fab-text {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

@keyframes fabPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 32px rgba(0, 175, 239, 0.4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 10px 40px rgba(0, 175, 239, 0.6);
    }
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .hero-content,
    .about-grid,
    .why-us-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .philosophy-title {
        font-size: 2.5rem;
    }
}

/* Contact and Footer Responsive Design */
@media (max-width: 1024px) {
    .footer-main {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-form-container {
        padding: 0 1rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-description {
        max-width: none;
    }
    
    .footer-contact-item {
        justify-content: center;
        text-align: left;
    }
    
    .footer-contact-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-contact-item.compact {
        min-width: auto;
        flex: none;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 20px var(--shadow-light);
        transform: translateY(-100%);
        visibility: hidden;
        opacity: 0;
        transition: all var(--animation-speed) var(--animation-curve);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        visibility: visible;
        opacity: 1;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-visual {
        gap: 1.5rem;
    }
    
    .approval-card {
        min-width: auto;
        max-width: 100%;
        padding: 1.5rem;
        margin: 0 auto;
    }
    
    .approval-partners {
        flex-direction: column;
        gap: 1rem;
    }
    
    .partner-item {
        padding: 0.8rem;
        min-width: auto;
    }
    
    .partner-logo {
        max-width: 80px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        align-items: center;
        text-align: center;
    }
    
    .startup-india-logo {
        max-height: 60px;
    }
    
    .hero-actions {
        flex-direction: column;
        margin-bottom: 1.5rem;
        gap: 0.75rem;
        align-items: center;
        width: 100%;
    }
    
    .btn-large {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: row;
        justify-content: space-around;
        gap: 0.8rem;
        text-align: center;
        margin: 0;
        padding: 1.5rem 1rem;
        flex-wrap: wrap;
        max-width: 100%;
        border-radius: 0.8rem;
    }
    
    .stat-item {
        flex: 1;
        min-width: 90px;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
        line-height: 1.2;
    }
    
    .offerings-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .philosophy-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .floating-action {
        bottom: 2rem;
        right: 1.5rem;
    }
    
    .fab-apply {
        padding: 1rem 1.25rem;
        gap: 0.6rem;
        min-width: 130px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-main {
        gap: 1.5rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-logo img {
        width: 180px;
        height: 60px;
    }
    
    .footer-brand {
        font-size: 1.1rem;
    }
    
    .footer-contact {
        gap: 1rem;
    }
    
    .footer-contact-item {
        gap: 0.75rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .startup-india-logo {
        max-height: 50px;
    }
    
    .approval-card {
        padding: 1.2rem;
    }
    
    .approval-partners {
        gap: 0.8rem;
    }
    
    .partner-item {
        padding: 0.6rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
    }
    
    .partner-label {
        font-size: 0.8rem;
        text-align: left;
        flex: 1;
    }
    
    .partner-logo {
        max-width: 60px;
        flex-shrink: 0;
    }
    
    .hero-stats {
        padding: 1rem 0.8rem;
        gap: 0.5rem;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        margin: 1rem 0;
    }
    
    .stat-item {
        padding: 0.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .philosophy-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-action {
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .fab-apply {
        padding: 0.875rem 1.25rem;
        gap: 0.5rem;
        border-radius: 2.5rem;
        min-width: 120px;
        box-shadow: 0 6px 24px rgba(0, 175, 239, 0.5);
    }
    
    .fab-text {
        font-size: 0.875rem;
    }
    
    .fab-icon {
        width: 20px;
        height: 20px;
    }
    
    .fab-apply:hover {
        transform: translateY(-2px) scale(1.02);
    }
}

/* Print Styles */
@media print {
    .loading-screen,
    .scroll-progress,
    .back-to-top,
    .theme-toggle,
    .floating-action {
        display: none;
    }
    
    .navbar {
        position: static;
        box-shadow: none;
    }
    
    section {
        page-break-inside: avoid;
        padding: 2rem 0;
    }
    
    .hero {
        min-height: auto;
        padding: 4rem 0;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --border-light: #000000;
        --border-medium: #000000;
        --shadow-light: rgba(0, 0, 0, 0.5);
        --shadow-medium: rgba(0, 0, 0, 0.7);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}