﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification\
for details on configuring this project to bundle and minify static web assets. */
body {
    padding-top: 0;
    padding-bottom: 20px;
}

/* ============================================
   MODAL POPUPS - Site colors
   ============================================ */
.modal.modal-primary .modal-header {
    background: linear-gradient(135deg, #0288d1 0%, #01579b 100%) !important;
}

.modal.modal-primary .modal-content {
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

.modal.modal-primary .modal-header .modal-title,
.modal.modal-primary .modal-header h3,
.modal.modal-primary .modal-header .ms-site-title {
    color: #fff;
}

.modal.modal-primary .modal-header .close {
    color: #fff;
    opacity: 0.8;
}

.modal.modal-primary .modal-header .close:hover {
    opacity: 1;
}

.modal.modal-primary .modal-header .ms-logo {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

/* ============================================
   GLASSMORPHISM HEADER
   ============================================ */
.glass-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1200px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.glass-header:hover {
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

.glass-header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
}

.glass-header .header-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.glass-header .header-logo {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.glass-header .header-title {
    font-size: 1.3rem;
    font-weight: 400;
    color: #fff;
    letter-spacing: 1px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.glass-header .header-title strong {
    font-weight: 700;
}

.glass-header .header-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.glass-header .nav-links {
    list-style: none;
    display: flex;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.glass-header .nav-links li a {
    display: block;
    padding: 10px 18px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: transparent;
}

.glass-header .nav-links li a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

/* Nav link icons */
.glass-header .nav-links li a i {
    margin-right: 6px;
    font-size: 15px;
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(1, 87, 155, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-overlay .mobile-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 20px;
}

.mobile-menu-overlay .mobile-nav a {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 500;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.mobile-menu-overlay .mobile-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Language Switcher */
.language-switcher {
    margin-left: 15px;
}

.language-switcher form {
    display: inline;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

.lang-flag {
    font-weight: 700;
    letter-spacing: 1px;
}

/* Mobile Language Switcher */
.mobile-language-switcher {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-language-switcher form {
    display: block;
}

.lang-btn-mobile {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 12px 24px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 500;
    width: 100%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.lang-btn-mobile:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lang-btn-mobile i {
    font-size: 1.2rem;
}

body.menu-open {
    overflow: hidden;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .glass-header {
        top: 10px;
        width: calc(100% - 20px);
    }

    .glass-header .header-inner {
        padding: 10px 16px;
    }

    .glass-header .header-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .glass-header .header-logo {
        height: 32px;
    }

    .glass-header .header-title {
        font-size: 1.1rem;
    }
}

/* Hide the static navbar initially - it shows on scroll via JS when it gets .navbar-fixed-top class */
.ms-navbar.navbar-static {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
}

.ms-navbar.navbar-static.navbar-fixed-top {
    transform: translateY(0);
    opacity: 1;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* ============================================
   MODERN HERO SECTION
   ============================================ */
.hero-modern {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0288d1 0%, #01579b 50%, #002f6c 100%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 40%),
        radial-gradient(circle at 40% 40%, rgba(255,255,255,0.05) 0%, transparent 30%);
    animation: patternFloat 20s ease-in-out infinite;
}

@keyframes patternFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.02); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title .text-gradient {
    font-weight: 700;
    background: linear-gradient(90deg, #4fc3f7, #81d4fa, #b3e5fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 50px;
    font-weight: 300;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.hero-feature .feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.hero-feature:hover .feature-icon {
    background: rgba(255,255,255,0.25);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-feature .feature-icon i {
    font-size: 32px;
    color: #fff;
}

.hero-feature span {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: #fff !important;
    color: #0288d1 !important;
    padding: 15px 35px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    transition: all 0.3s ease !important;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
}

.btn-hero-outline {
    background: transparent !important;
    color: #fff !important;
    padding: 15px 35px !important;
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    border: 2px solid rgba(255,255,255,0.5) !important;
    border-radius: 50px !important;
    transition: all 0.3s ease !important;
}

.btn-hero-outline:hover {
    background: rgba(255,255,255,0.1) !important;
    border-color: #fff !important;
    transform: translateY(-3px);
}

/* Hero responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
    .hero-features {
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .hero-modern {
        padding: 100px 0 60px;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-feature .feature-icon {
        width: 60px;
        height: 60px;
    }
    .hero-feature .feature-icon i {
        font-size: 24px;
    }
    .btn-hero-primary,
    .btn-hero-outline {
        padding: 12px 25px !important;
        font-size: 1rem !important;
    }
}

/* ============================================
   MODERN FOOTER
   ============================================ */
.footer-modern {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 60px 0 0;
}

.footer-brand h4 {
    color: #fff;
    font-weight: 600;
    margin: 0;
}

.footer-description {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 15px 0;
}

.footer-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #0288d1;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links li a:hover {
    color: #4fc3f7;
    padding-left: 5px;
}

.footer-links li a i {
    font-size: 12px;
    margin-right: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.7);
}

.footer-contact li i {
    font-size: 20px;
    margin-right: 15px;
    color: #4fc3f7;
}

.footer-contact li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact li a:hover {
    color: #fff;
}

.btn-footer-contact {
    background: #0288d1 !important;
    color: #fff !important;
    border-radius: 25px !important;
    padding: 10px 25px !important;
    font-size: 0.9rem !important;
}

.btn-footer-contact:hover {
    background: #0277bd !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    margin-top: 40px;
}

.footer-bottom .copyright {
    color: rgba(255,255,255,0.5);
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-bottom a:hover {
    color: #4fc3f7;
}

/* ============================================
   PAGE HEADER (matches hero section style)
   ============================================ */
.page-header-modern {
    position: relative;
    background: linear-gradient(135deg, #0288d1 0%, #01579b 50%, #002f6c 100%);
    padding: 140px 0 80px;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

/* Add the same pattern as hero */
.page-header-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(255,255,255,0.05) 0%, transparent 30%);
    pointer-events: none;
}

.page-header-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.page-header-modern .container {
    position: relative;
    z-index: 1;
}

.page-header-modern h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.page-header-modern .lead {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .page-header-modern {
        padding: 120px 0 60px;
    }
    .page-header-modern h1 {
        font-size: 2.2rem;
    }
    .page-header-modern .lead {
        font-size: 1.1rem;
    }
}

/* ============================================
   PAGE CONTENT SECTIONS (blue gradient backgrounds)
   ============================================ */
.page-content-dark {
    background: linear-gradient(135deg, #01579b 0%, #002f6c 100%);
    position: relative;
}

.page-content-medium {
    background: linear-gradient(135deg, #0277bd 0%, #01579b 100%);
    position: relative;
}

.page-content-light {
    background: linear-gradient(135deg, #0288d1 0%, #0277bd 100%);
    position: relative;
}

/* Text utilities for dark backgrounds */
.text-white-80 {
    color: rgba(255, 255, 255, 0.85) !important;
}

.text-white-70 {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* ============================================
   PRIVACY PAGE
   ============================================ */
.privacy-section {
    margin-bottom: 2rem;
}

.privacy-section h2 {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.privacy-section ul {
    padding-left: 1.5rem;
}

.privacy-section ul li {
    margin-bottom: 0.5rem;
}

.table-dark-custom {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.table-dark-custom th,
.table-dark-custom td {
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.15);
    padding: 12px 15px;
}

.table-dark-custom thead th {
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.table-dark-custom tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.table-dark-custom code {
    background: rgba(0, 0, 0, 0.3);
    color: #4fc3f7;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.85em;
}

/* ============================================
   CONTACT PAGE CARDS
   ============================================ */
.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-card-icon i {
    font-size: 32px;
    color: #fff;
}

.contact-card h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.contact-card p {
    margin: 0;
}

.contact-card a {
    color: #4fc3f7;
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: #81d4fa;
}

.contact-cta h2 {
    color: #fff;
}

.contact-cta .lead {
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   VALUE CARDS (About page)
   ============================================ */
.value-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 30px 20px;
    height: 100%;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
}

.value-icon.color-info {
    background: rgba(41, 182, 246, 0.2);
    color: #4fc3f7;
}

.value-icon.color-warning {
    background: rgba(255, 167, 38, 0.2);
    color: #ffb74d;
}

.value-icon.color-success {
    background: rgba(102, 187, 106, 0.2);
    color: #81c784;
}

.value-icon.color-danger {
    background: rgba(239, 83, 80, 0.2);
    color: #ef5350;
}

.value-card h4 {
    color: #fff;
    margin-bottom: 10px;
}

.value-card p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.95rem;
}

/* ============================================
   FEATURE LIST (dark background version)
   ============================================ */
.feature-list-check-dark {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list-check-dark li {
    padding: 12px 0;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-list-check-dark li:last-child {
    border-bottom: none;
}

.feature-list-check-dark li i {
    margin-right: 12px;
    color: #81c784;
    font-size: 1.2rem;
}

/* ============================================
   PROCESS STEPS (dark background version)
   ============================================ */
.process-step-dark {
    padding: 20px;
}

.process-number-light {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

/* ============================================
   SERVICE CARDS (transparent with dark contour)
   ============================================ */
.service-card.card {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.2) !important;
    border-radius: 12px;
    transition: transform 0.3s, background 0.3s;
    overflow: hidden;
}

.service-card.card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2) !important;
}

.service-card img {
    object-fit: cover;
}

.service-card .card-body {
    color: #fff;
}

.service-card .card-title {
    color: #fff;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.service-icon.color-info { color: #4fc3f7; }
.service-icon.color-success { color: #81c784; }
.service-icon.color-warning { color: #ffb74d; }
.service-icon.color-primary { color: #4fc3f7; }
.service-icon.color-danger { color: #ef5350; }

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    color: rgba(255, 255, 255, 0.85);
}

.service-list li::before {
    content: '\f26b';
    font-family: 'Material-Design-Iconic-Font';
    position: absolute;
    left: 0;
    color: #4fc3f7;
}

.object-cover {
    object-fit: cover;
}

/* ============================================
   APPLICATION TYPE CARDS (transparent with dark contour)
   ============================================ */
.app-type-card.card {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.2) !important;
    border-radius: 12px;
    transition: transform 0.3s, background 0.3s;
}

.app-type-card.card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2) !important;
}

.app-type-card .card-body {
    color: #fff;
}

.app-type-card .card-title {
    color: #fff;
}

.app-type-card h5 {
    color: rgba(255, 255, 255, 0.9);
}

.app-type-card ul {
    color: rgba(255, 255, 255, 0.8);
}

.app-type-icon {
    font-size: 3rem;
    color: #4fc3f7;
    margin-bottom: 20px;
}

.app-type-icon.color-info { color: #4fc3f7; }
.app-type-icon.color-success { color: #81c784; }

.app-type-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.app-type-card ul li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    color: rgba(255, 255, 255, 0.85);
}

.app-type-card ul li::before {
    content: '\f26b';
    font-family: 'Material-Design-Iconic-Font';
    position: absolute;
    left: 0;
    color: #81c784;
}

/* ============================================
   PROCESS STEPS
   ============================================ */
.process-step {
    padding: 20px;
}

.process-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0288d1, #01579b);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.process-step h4 {
    color: #0288d1;
    margin-bottom: 10px;
}

/* ============================================
   FEATURE LIST
   ============================================ */
.feature-list-check {
    list-style: none;
    padding: 0;
}

.feature-list-check li {
    padding: 10px 0;
    font-size: 1.1rem;
}

.feature-list-check li i {
    margin-right: 10px;
    font-size: 1.3rem;
}

/* ============================================
   STATS
   ============================================ */
.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-label {
    color: #666;
    font-size: 0.95rem;
}

/* ============================================
   CTA SECTION (matches hero/page header style)
   ============================================ */
.cta-section .cta-box {
    position: relative;
    background: linear-gradient(135deg, #0288d1 0%, #01579b 50%, #002f6c 100%);
    border-radius: 16px;
    overflow: hidden;
    padding: 50px 30px;
}

.cta-section .cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 40%);
    pointer-events: none;
}

.cta-section .cta-box h2,
.cta-section .cta-box p {
    position: relative;
    z-index: 1;
}

.cta-section .cta-box .btn {
    position: relative;
    z-index: 1;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.py-6 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.mt-6 {
    margin-top: 4rem;
}

.mb-6 {
    margin-bottom: 4rem;
}

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Carousel */
.carousel-caption p {
    font-size: 20px;
    line-height: 1.4;
}

/* Make .svg files in the carousel display properly in older browsers */
.carousel-inner .item img[src$=".svg"] {
    width: 100%;
}

/* QR code generator */
#qrCode {
    margin: 15px;
}

/* Hide/rearrange for smaller screens */
@media screen and (max-width: 767px) {
    /* Hide captions */
    .carousel-caption {
        display: none;
    }
}
.switch .form-control {
    padding-top: 7px;
    margin-bottom: 0;
}

.switch * {
    cursor: pointer;
}

.switch input {
    opacity: 0;
    position: absolute;
    z-index: -1;
}

.switch {
    display: flex;
    align-items: center;
    direction: row;
}

    .switch span {
        position: relative;
        display: inline-block;
        width: 40px;
        height: 20px;
        background-color: #fff;
        border: 1px solid #ddd;
        border-radius: 100px;
        transition: all .5s;
        box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.1) inset;
    }

        .switch span:after {
            content: "";
            position: absolute;
            background-color: #fff;
            top: 0;
            left: 0;
            height: 18px;
            width: 18px;
            border: 1px solid #ddd;
            border-radius: 400px;
            box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
            -webkit-transition: all .2s;
        }

    .switch.switch-lg span {
        width: 50px;
        height: 25px;
    }

        .switch.switch-lg span:after {
            height: 23px;
            width: 23px;
        }

    .switch.switch-sm span {
        width: 30px;
        height: 15px;
    }

        .switch.switch-sm span:after {
            height: 13px;
            width: 13px;
        }

    .switch input:checked + span {
        background-color: #5d9cec;
        border-color: #5d9cec;
        transition: all .5s;
    }

        .switch input:checked + span:after {
            left: 50%;
            transition: all .2s;
        }

    .switch input:disabled + span {
        background-color: #f1f1f1;
        cursor: not-allowed;
    }

/* ============================================
   HOMEPAGE QUICK LINKS SECTION
   ============================================ */
.home-links-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.home-link-card {
    display: block;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.home-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: inherit;
}

.home-link-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #0288d1, #01579b);
}

.home-link-icon i {
    font-size: 28px;
    color: #fff;
}

.home-link-icon.color-info {
    background: linear-gradient(135deg, #29b6f6, #0288d1);
}

.home-link-icon.color-success {
    background: linear-gradient(135deg, #66bb6a, #43a047);
}

.home-link-icon.color-warning {
    background: linear-gradient(135deg, #ffa726, #fb8c00);
}

.home-link-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.home-link-card p {
    color: #666;
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ============================================
   VM CALCULATOR CTA SECTION (inline - attached to hero)
   ============================================ */
.vm-calculator-cta-inline {
    position: relative;
    background: linear-gradient(135deg, #002f6c 0%, #01579b 100%);
    padding: 40px 0;
    margin-top: -1px; /* Seamless connection to hero */
}

.vm-calculator-cta-inline .container {
    position: relative;
    z-index: 1;
}

.vm-calculator-cta-inline h2 {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.vm-calculator-cta-inline h2 i {
    margin-right: 10px;
    color: #ffc107;
}

.vm-calculator-cta-inline p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    margin-bottom: 0;
}

.vm-calculator-cta-inline .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
}

@media (max-width: 991px) {
    .vm-calculator-cta-inline {
        text-align: center;
    }

    .vm-calculator-cta-inline .text-lg-right {
        margin-top: 20px;
    }
}

/* Original VM Calculator CTA (for other pages) */
.vm-calculator-cta {
    position: relative;
    background: linear-gradient(135deg, #0288d1 0%, #01579b 50%, #002f6c 100%);
    padding: 50px 0;
    margin-top: 0;
    overflow: hidden;
}

.vm-calculator-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 10% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 50%, rgba(255,255,255,0.08) 0%, transparent 40%);
    pointer-events: none;
}

.vm-calculator-cta .container {
    position: relative;
    z-index: 1;
}

.vm-calculator-cta h2 {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.vm-calculator-cta h2 i {
    margin-right: 10px;
}

.vm-calculator-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 0;
}

.vm-calculator-cta .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
}

@media (max-width: 991px) {
    .vm-calculator-cta {
        text-align: center;
    }

    .vm-calculator-cta .text-lg-right {
        margin-top: 20px;
    }
}