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

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-card: #ffffff;
    --text-primary: #1a1a1a;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --accent-blue: #1e4d8b;
    --accent-light: #6ba3ff;
    --accent-glow: #e0f0ff;
    --border: #e2e8f0;
    --shadow: rgba(0, 0, 0, 0.08);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
}

/* Navigation */
.navbar {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px var(--shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 75px; /* Increased by 50% from 50px */
}

.nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: var(--accent-blue);
}

.nav-menu a.active {
    color: var(--accent-blue);
    font-weight: 600;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s;
}

/* Hero Section - Overlay Style */
.hero {
    background: none;
    padding: 0;
    position: relative;
    min-height: 650px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 58, 107, 0.1) 0%, rgba(91, 79, 197, 0.6) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 24px 100px;
    text-align: center;
	
}

/* Fade-in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-container {
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
}

.hero .description {
    font-size: 20px;
    color: white;
	font-weight: 600;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
    text-shadow: 0 3px 8px rgba(0, 0, 0, 0.8);
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #f0f4f8 0%, #e8eef3 100%);
    padding: 60px 24px;
    text-align: center;
}

.page-header h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.page-header p {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Container & Sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px 40px;
}

.section-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 48px;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadow);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    color: var(--accent-blue);
}

.feature-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Applications Section */
.applications-section {
    background: var(--bg-secondary);
    padding: 80px 24px;
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.app-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.app-item i {
    font-size: 24px;
    color: var(--accent-blue);
    margin-top: 4px;
}

.app-item h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.app-item p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Application Detail Cards */
.application-detail {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 48px;
    margin-bottom: 48px;
}

.application-detail h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.application-detail h2 i {
    font-size: 40px;
    color: var(--accent-blue);
}

.application-detail .subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-weight: 500;
}

.application-detail p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.capabilities-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.capability-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: var(--bg-secondary);
    border-radius: 8px;
}

.capability-item i {
    font-size: 20px;
    color: var(--accent-blue);
    margin-top: 2px;
}

.capability-item strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.capability-item span {
    font-size: 14px;
    color: var(--text-muted);
}

/* Use Case Section */
.use-case-section {
    background: var(--bg-secondary);
    padding: 80px 24px;
}

.use-case-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.use-case-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
}

.use-case-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.use-case-card ul {
    list-style: none;
    padding: 0;
}

.use-case-card ul li {
    padding: 8px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.use-case-card ul li i {
    color: var(--accent-blue);
    margin-top: 4px;
}

/* Options/Purchase Page */
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.option-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.option-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px var(--shadow);
    border-color: var(--accent-light);
}

.option-card .badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.option-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.option-card .description {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

.option-card .benefits {
    list-style: none;
    margin-bottom: 24px;
}

.option-card .benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.option-card .benefits li i {
    color: var(--accent-blue);
    font-size: 18px;
    margin-top: 2px;
}

.option-card .ideal-for {
    background: var(--bg-secondary);
    border-radius: 8px;
    padding: 16px;
    margin-top: 24px;
}

.option-card .ideal-for strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-weight: 600;
}

.option-card .ideal-for p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* Data Services */
.data-section {
    background: var(--bg-secondary);
    padding: 80px 24px;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    color: var(--accent-blue);
}

.service-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-card ul {
    list-style: none;
}

.service-card ul li {
    color: var(--text-muted);
    font-size: 14px;
    padding: 6px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.service-card ul li i {
    color: var(--accent-blue);
    margin-top: 4px;
    font-size: 12px;
}

/* Reporting Page */
.report-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.report-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.report-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadow);
}

.report-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    color: var(--accent-blue);
}

.report-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.report-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.report-card ul {
    list-style: none;
    padding: 0;
}

.report-card ul li {
    color: var(--text-muted);
    font-size: 14px;
    padding: 6px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.report-card ul li i {
    color: var(--accent-blue);
    margin-top: 4px;
    font-size: 12px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 24px;
    text-align: center;
}

.cta-section h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

/* Story/About Page */
.story-section {
    margin-bottom: 48px;
}

.story-section h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.story-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 17px;
}

.highlight-box {
    background: linear-gradient(135deg, #667eea10 0%, #764ba210 100%);
    border-left: 4px solid var(--accent-blue);
    padding: 24px;
    margin: 32px 0;
    border-radius: 8px;
}

.highlight-box p {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
}

/* News Section */
.news-section {
    background: var(--bg-secondary);
    padding: 80px 24px;
}

.news-container {
    max-width: 900px;
    margin: 0 auto;
}

.news-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 32px;
    text-align: center;
}

.news-article {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.news-article:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--shadow);
}

.news-article h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.news-article .source {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 16px;
}

.news-article p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.news-article a {
    display: inline-block;
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.news-article a:hover {
    color: var(--accent-light);
}

/* Contact Page */
.contact-container {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.contact-info p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.contact-method i {
    font-size: 24px;
    color: var(--accent-blue);
    margin-top: 4px;
}

.contact-method h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.contact-method a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-method a:hover {
    color: var(--accent-light);
}

.contact-form-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 16px var(--shadow);
}

.contact-form-section h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 14px 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

/* Footer */
footer {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    padding: 48px 24px 24px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 32px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    height: 90px; /* Increased by 50% from 60px */
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.footer-section h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-section ul li a:hover {
    color: var(--accent-blue);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

.company-logos {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-top: 16px;
}

.company-logo-link {
    opacity: 0.6;
    transition: opacity 0.2s;
}

.company-logo-link:hover {
    opacity: 1;
}

.company-logo-small {
    height: 40px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        flex-direction: column;
        gap: 0;
        padding: 16px 24px;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 4px 8px var(--shadow);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero .subtitle {
        font-size: 20px;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }

    .application-detail {
        padding: 32px 24px;
    }

    .application-detail h2 {
        font-size: 28px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-section {
        padding: 28px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .company-logos {
        flex-direction: column;
        gap: 16px;
    }
}

/* AESTHETIC ENHANCEMENTS */

/* Pulse animation for CTA button */
@keyframes pulse {
    0%, 100% { 
        box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 6px 24px rgba(255, 255, 255, 0.5);
        transform: scale(1.02);
    }
}

.cta-button {
    animation: pulse 2s infinite;
}

/* Enhanced feature cards with gradient and hover effects */
.feature-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 58, 107, 0.03) 0%, rgba(91, 79, 197, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(13, 58, 107, 0.15);
    border-color: rgba(91, 79, 197, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

/* Gradient icon backgrounds */
.feature-icon {
    background: linear-gradient(135deg, #0d3a6b 0%, #5b4fc5 100%) !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(91, 79, 197, 0.25);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    box-shadow: 0 6px 20px rgba(91, 79, 197, 0.4);
    transform: scale(1.1) rotate(5deg);
}

/* Section dividers */
.section-divider {
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #0d3a6b 25%, #5b4fc5 50%, #0d3a6b 75%, transparent 100%);
    margin: 20px auto;
    max-width: 80%;
    opacity: 0.3;
}

/* Fade-in for sections */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.container {
    animation: fadeIn 1s ease-out;
}

/* Coverage section enhancements */
.container img {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.container img:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(13, 58, 107, 0.15) !important;
}

/* Responsive hero adjustments */
@media (max-width: 768px) {
    .hero {
        min-height: 500px;
    }
    
    .hero h1 {
        font-size: 40px;
    }

    .hero .description {
        font-size: 18px;
    }
    
    .hero-container {
        padding: 60px 24px;
    }
}
