:root {
    /* Brand Colors */
    --primary: #0a7c7c;
    --primary-hover: #0a7c7c;
    --secondary: #6c757d;
    --accent: #20c997;
    --bg-body: #f8fafc;
    --bg-white: #ffffff;
    --bg-dark: #0f172a;
    --bg-light: #f1f5f9;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --text-light: #f8fafc;
    --text-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --success: #22c55e;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #0dcaf0;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}



.glass-navbar {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    padding: 15px;
    transition: var(--transition);
    z-index: 1030;
}

/* Brand */
.glass-navbar .navbar-brand {
    color: var(--text-dark);
    font-size: 1.25rem;
    letter-spacing: 0.3px;
}

.brand-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    display: inline-block;
}

/* Links */
.glass-navbar .nav-link {
    color: var(--text-muted);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.glass-navbar .nav-link:hover,
.glass-navbar .nav-link.active {
    color: var(--primary);
}

/* Underline animation (desktop only) */
@media (min-width: 992px) {
    .glass-navbar .nav-link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -3px;
        width: 0;
        height: 2px;
        background: var(--primary);
        transition: width 0.3s ease;
    }

    .glass-navbar .nav-link:hover::after,
    .glass-navbar .nav-link.active::after {
        width: 100%;
    }
}


@media (max-width: 991px) {
    .glass-navbar {
        padding: 0.75rem 0;
    }

    .glass-navbar .navbar-collapse {
        /* background: var(--bg-white);
    border-radius: var(--radius-lg); */
        padding: 1rem;
        margin-top: 1rem;
        /* box-shadow: var(--shadow-md); */
    }

    .glass-navbar .nav-link {
        padding: 0.75rem 0;
    }
}


.hlogo {
    width: 100px;
}

.hero-section {
    background: transparent;
}

.hero-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--text-dark);
}

.hero-title span {
    display: block;
    color: var(--primary);
}

.hero-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 520px;
}

.hero-badge {
    background: rgba(13, 110, 253, 0.1);
    color: var(--primary);
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    font-weight: 500;
}

.hero-svg {
    max-width: 100%;
    height: auto;
    transform-style: preserve-3d;
    transition: transform 0.2s ease-out;
    position: relative;
    z-index: 1;
    /* above circle */
}

.hero-float {
    animation: float 4s ease-in-out infinite;
}

.hero-circle {
    position: absolute;
    top: 60%;
    left: 70%;
    width: 400px;
    height: 400px;
    background: rgba(13, 110, 253, 0.08);
    /* light blue */
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    /* behind SVG */
}


.hero-wave {
    display: block;
    width: 100%;
    height: 120px;
    margin-top: -1px;
}



@media (max-width: 991px) {
    .hero-circle {
        position: absolute;
        top: 70%;
        left: 50%;

    }
}



.features-section {
    background: var(--bg-body);
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--text-dark);
}

.section-title span {
    color: var(--primary);
}

.section-text {
    max-width: 650px;
    margin: auto;
    color: var(--text-muted);
}

.feature-card {
    background: rgba(255, 255, 255, 0.6);
    /* glass effect */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-lg);
    padding: 28px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 12px;
    display: inline-block;
    background: rgba(13, 110, 253, 0.1);
    padding: 12px;
    border-radius: 50%;
    color: var(--primary);
}

.feature-card h5 {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.how-it-works-section {
    background: var(--bg-body);
}

.step-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 28px 20px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.step-icon {
    font-size: 36px;
    margin-bottom: 16px;
    display: inline-block;
    background: rgba(13, 110, 253, 0.1);
    padding: 18px;
    border-radius: 50%;
    color: var(--primary);
}

.step-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.step-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.da/* =========================
   DASHBOARD PREVIEW SECTION
========================= */
.dashboard-preview-section {
    background: var(--bg-body);
    position: relative;
    overflow: hidden;
}

.dashboard-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    padding: 20px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.dashboard-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}


.dashboard-card img {
    width: 100%;
    border-radius: var(--radius-md);
    object-fit: cover;
}


.dashboard-card h5 {
    font-weight: 600;
    margin-top: 12px;
    color: var(--text-dark);
}


.carousel-inner {
    padding: 10px 0;
}

.carousel-control-prev,
.carousel-control-next {
    width: 6%;
    opacity: 1;
}

/* Button circle */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 44px;
    height: 44px;
    background-size: 18px 18px;
    background-color:var(--primary) !important;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.25s ease;
}

/* Hover effect */
.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    transform: scale(1.1);
    background-color: var(--primary);
}

.carousel-control-prev {
    left: -20px;
}

.carousel-control-next {
    right: -20px;
}

@media (max-width: 767px) {
    .carousel-control-prev,
    .carousel-control-next {
        width: 12%;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 767px) {
    .carousel-item .row {
        flex-direction: column;
    }

    .dashboard-card {
        margin: 0 auto;
        max-width: 90%;
    }
}

@media (min-width: 768px) {
    .carousel-item .col-md-4 {
        display: flex;
    }

    .dashboard-card {
        width: 100%;
    }
}


.pricing-section {
    background: var(--bg-body);
}

.pricing-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-card.popular {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.pricing-header h5 {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.price span {
    font-size: 2rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-top: 15px;
    color: var(--text-muted);
}

.pricing-features li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.pricing-card .btn {
    border-radius: var(--radius-md);
}



.demo-section {
    background: var(--bg-body);
    position: relative;
    overflow: hidden;
}

.demo-content {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.demo-content:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.demo-section .section-title {
    font-size: clamp(2rem, 3vw, 2.6rem);
    color: var(--text-dark);
}

.demo-section .section-title span {
    color: var(--primary);
}

.demo-section .section-text {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.demo-section .btn-primary {
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition);
}

.demo-section .btn-primary:hover {
    background: var(--primary-hover);
}


.demo-bg-circle {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    z-index: 0;
    pointer-events: none;
}



.demo-roles-section {
    background: var(--bg-body);
}

.role-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    padding: 28px 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.role-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.role-icon {
    font-size: 40px;
    margin-bottom: 12px;
    display: inline-block;
    background: rgba(13, 110, 253, 0.1);
    padding: 18px;
    border-radius: 50%;
    color: var(--primary);
}

.role-card h5 {
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    font-size: 1rem;
}



.footer-section {
    background: var(--bg-body);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
    padding-bottom: 20px;
    color: var(--text-dark);
}

.footer-title {
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.footer-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-social .social-link {
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.1);
    color: var(--primary);
    transition: var(--transition);
}

.footer-social .social-link:hover {
    background: var(--primary);
    color: var(--text-white);
}

.footer-divider {
    border-color: rgba(0, 0, 0, 0.05);
}

.footer-copy {
    font-size: 0.875rem;
    color: var(--text-muted);
}


.error-page {
    background: var(--bg-body);
}

.error-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-dark);
}

.error-text {
    max-width: 480px;
    color: var(--text-muted);
    font-size: 1rem;
}

.error-svg {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}

/* Light background circle behind SVG */
.error-svg-bg {
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle,
            rgba(108, 99, 255, 0.15),
            rgba(108, 99, 255, 0.05),
            transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.page-loader {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loader {
    width: 22px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--primary);
    box-shadow:
        0 0 0 0 rgba(9, 129, 241, 0.7),
        0 0 25px rgba(255, 255, 255, 0.8);
    animation: pulse 1.2s infinite ease-out;
}

@keyframes pulse {
    100% {
        box-shadow:
            0 0 0 40px rgba(255, 255, 255, 0),
            0 0 40px rgba(255, 255, 255, 0);
    }
}

.page-loader.hide {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
}

.page-hero {
    background: linear-gradient(180deg,
            rgba(13, 110, 253, 0.08),
            transparent);
    padding: 80px 0 60px;
}

.page-title {
    font-size: clamp(2rem, 2vw, 2.1rem);
    font-weight: 700;
    color: var(--text-dark);
}

.page-title span {
    color: var(--primary);
}

.page-subtitle {
    max-width: 720px;
    margin: 12px auto 0;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.features-page {
    background: var(--bg-body);
}

.feature-box {
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.feature-box i {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 14px;
}

.feature-box h5 {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-box p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.feature-box:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.section-padding {
    padding: 80px 0;
}

.text-muted-sm {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.rounded-xl {
    border-radius: var(--radius-lg);
}

.glass-bg {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
}

.shadow-hover:hover {
    box-shadow: var(--shadow-lg);
}

.transition {
    transition: var(--transition);
}

@media (max-width: 767px) {
    .page-hero {
        padding: 60px 0 40px;
    }

    .feature-box {
        padding: 24px;
    }
}

.pricing-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    text-align: center;
    transition: all .3s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.plan-name {
    font-size: 1.3rem;
    font-weight: 700;
}

.plan-desc {
    color: var(--text-muted);
}

.price {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 20px 0;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px;
}

.plan-features li {
    margin-bottom: 10px;
}

.pricing-card.popular {
    border: 2px solid var(--primary);
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 6px 14px;
    font-size: 12px;
    border-radius: 20px;
}

.contact-section {
    background: var(--bg-body);
}

.contact-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.contact-item {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
}

.contact-item i {
    font-size: 20px;
    color: var(--primary);
    margin-top: 4px;
}

.contact-item p {
    margin: 0;
    color: var(--text-muted);
}

.contact-social a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--primary);
    margin-right: 8px;
    transition: var(--transition);
}

.contact-social a:hover {
    background: var(--primary);
    color: var(--text-white);
}

.map-wrapper {

    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
    width: 100%;
    height: 360px;
    border: 0;
}

@media (max-width: 767px) {
    .contact-card {
        padding: 24px;
    }

    .map-wrapper iframe {
        height: 260px;
    }
}

@media (max-width: 767px) {
    .contact-card {
        padding: 24px;
    }

    .map-wrapper iframe {
        height: 260px;
    }
}

/* ================================
   GLOBAL FORM STYLES
================================ */

.form-control,
.form-select {
    min-height: 48px;
    padding: 10px 14px;
    font-size: 0.95rem;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.3);
    color: var(--text-dark);
    transition: all 0.2s ease;
}

.form-control::placeholder {
    color: var(--text-muted);
    opacity: 0.85;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0px rgba(13, 110, 253, 0.15);
    background: #fff;
}

/* Textarea */
textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Floating Labels */
.form-floating>.form-control,
.form-floating>.form-select {
    padding: 1.2rem 0.75rem;
}

.form-floating>label {
    color: var(--text-muted);
    padding: 0.8rem 0.75rem;
}

/* Input Group */
.input-group-text {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--primary);
}

.form-check-input {
    width: 1.15em;
    height: 1.15em;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.form-check-label {
    color: var(--text-muted);
    cursor: pointer;
}

.is-valid {
    border-color: #198754 !important;
}

.is-invalid {
    border-color: #dc3545 !important;
}

.invalid-feedback,
.valid-feedback {
    font-size: 0.85rem;
}

.btn {
    border-radius: 25px;
    padding: 10px 18px;
    font-weight: 500;
    transition: all 0.25s ease;
}

.btn-primary {
    background: var(--primary);
    border: none;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
}

.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
}

/* Disabled */
.form-control:disabled,
.form-select:disabled {
    background: #f1f3f5;
    cursor: not-allowed;
    opacity: 0.75;
}




/* Modal glass background */
.modal-content {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Remove default borders */
.modal-header,
.modal-footer {
    border: none;
}

/* Optional: darker overlay behind modal */
.modal-backdrop.show {
    background-color: rgba(15, 23, 42, 0.5);
}

/* ================================
   GLASS INPUTS INSIDE MODAL
================================ */

.modal .form-control,
.modal .form-select,
.modal textarea {
    background: transparent;
    /* slightly transparent */
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #111;
    border-radius: 5px;
    padding: 10px 14px;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.25s ease;
}

.modal .form-control::placeholder,
.modal textarea::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.modal .form-control:focus,
.modal .form-select:focus,
.modal textarea:focus {
    background: transparent;
    border-color: var(--primary);
    /* box-shadow: 0 0 0 4px rgba(13,110,253,0.15); */
    outline: none;
}

.modal .btn {
    border-radius: 12px;
    padding: 10px 20px;
    transition: all 0.25s ease;
}

.modal .form-check-input {
    width: 1.15em;
    height: 1.15em;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.3);
}

.modal .form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.modal .form-check-label {
    color: #111;
}

.auth-body {
    position: fixed;
    inset: 0;
    z-index: 0;
    background: var(--primary);
}

.auth-wrapper {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-card {
    width: 100%;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.auth-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary);
}

.auth-subtitle {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 24px;
}

.auth-footer {
    margin-top: 20px;
    font-size: 0.85rem;
}

.auth-footer a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.auth-footer a:hover {
    color: var(--primary-hover);
}

.glass-toast {
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    color: #fff;
}

.glass-header {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.glass-toast .toast-body {
    font-size: 0.95rem;
}

.glass-toast small {
    color: rgba(255, 255, 255, 0.7);
}

.glass-toast .btn-close {
    filter: invert(1);
}

/* ===============================
   SPLIT LAYOUT
================================ */
.about-split img {
    border-radius: 18px;
    transition: transform 0.4s ease;
}
.about-split img:hover {
    transform: scale(1.03);
}

/* ===============================
   CARDS (Mission / Vision / Values)
================================ */
.about-cards .about-card {
    background: #fff;
    padding: 32px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.about-cards .about-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(0,0,0,0.04), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-cards .about-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}
.about-cards .about-card:hover::after {
    opacity: 1;
}

.about-cards .about-card.highlight {
    background: var(--primary);
    color: #fff;
}

.about-card i {
    font-size: 30px;
    margin-bottom: 14px;
}

/* ===============================
   TIMELINE (ARROW + FLOW)
================================ */
.about-timeline {
    position: relative;
}

.timeline {
    display: grid;
    gap: 35px;
    max-width: 820px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 22px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--primary),
        transparent
    );
}

/* Timeline item */
.timeline-item {
    position: relative;
    padding: 26px 30px 26px 70px;
    background:transparent;
    border-radius: 5px;
    transition: all 0.35s ease;
}

/* Arrow pointer */
.timeline-item::before {
    content: "";
    position: absolute;
    left: 34px;
    top: 34px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 10px solid #fff;
}

/* Number circle */
.timeline-item span {
    position: absolute;
    left: 6px;
    top: 24px;
    width: 34px;
    height: 34px;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hover animation */
.timeline-item:hover {
    transform: translateX(3px);
}


.step-box {
    padding: 32px;
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.35s ease;
    position: relative;
}

.step-box::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(0,0,0,0.05), transparent);
    opacity: 0;
    transition: 0.3s;
}

.step-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.step-box:hover::after {
    opacity: 1;
}

.step-box i {
    font-size: 28px;
    margin-bottom: 12px;
    color: var(--primary);
}

.about-commitment {
    background: var(--primary);
    color: #fff;
}

.commit-icons {
    display: flex;
    justify-content: center;
    gap: 50px;
    font-weight: 600;
    flex-wrap: wrap;
}

.commit-icons div {
    text-align: center;
    transition: transform 0.3s ease;
}

.commit-icons div:hover {
    transform: translateY(-6px);
}

.commit-icons i {
    display: block;
    font-size: 30px;
    margin-bottom: 8px;
}

/* ===============================
   MOBILE OPTIMIZATION
================================ */
@media (max-width: 767px) {
    .timeline::before {
        left: 16px;
    }
    .timeline-item {
        padding-left: 60px;
    }
}


