    /* =====================================================
        SMAS TECH - MAIN STYLES (MERGE OF ALL FILES)
   ===================================================== */

    /* CSS Variables for SMAS Tech Brand Colors */
    :root {
        /* SMAS Tech Brand Colors */
        --smas-deep: #1e3a8a;
        --smas-royal: #2563eb;
        --smas-kim-deep:#31499B;
        --smas-cyan:#37C6F4;
        --smas-cyan-logo:#39afff;
        /* --smas-cyan: hsl(190 75% 50%); */
        --smas-cyan-light: #67e8f9;
        --smas-navy: #0f172a;
        --smas-light: #f8fafc;
        --smas-gray-50: #f9fafb;
        --smas-gray-100: #f3f4f6;
        --smas-gray-200: #e5e7eb;
        --smas-gray-300: #d1d5db;
        --background: 220 60% 98%;
        --card: #ffffff;
        --border: #e2e8f0;
        --footer-bg: #142c5d;
        --gradient-hero: linear-gradient(135deg, hsl(220 62% 38%) 0%, hsl(220 60% 50%) 50%, hsl(200 65% 45%) 100%);
        --gradient-accent: linear-gradient(135deg, hsl(190 75% 50%) 0%, hsl(200 80% 55%) 100%);
    }

    /* ==================== GLOBAL STYLES ==================== */
    body {
        font-family: 'gothic', 'Space Grotesk', sans-serif;
        background-color: var(--smas-light);
        color: var(--smas-navy);
        overflow-x: hidden;
    }

    h3, h4, h5, h6 {
        font-family: 'gothic', 'Space Grotesk', sans-serif;
        font-weight: 700;
        color:#2D2D2D;
    }

    a {
        text-decoration: none;
    }

    .hero-title {
        font-family: 'Nexa Bold';
        font-weight: 700;

    }

    .thin-text {
        font-family: 'Nexa Light';
        font-weight: 300;
        color:#2D2D2D;
    }

    .text-gradient {
        background: var(--gradient-accent);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .bg-hero-gradient {
        background: var(--smas-deep);
    }

    .bg-accent-gradient {
        background: var(--gradient-accent);
    }

    /* Background variations */
    .bg-smas-light {
        background-color: var(--smas-light);
    }

    .bg-smas-gray-50 {
        background-color: hsl(var(--background));
    }

    .bg-smas-gray-100 {
        background-color: var(--smas-gray-100);
    }

    .bg-smas-gray-200 {
        background-color: var(--smas-gray-200);
    }

    /* Shadow effects */
    .shadow-soft {
        box-shadow: 0 4px 20px -4px rgba(37, 99, 235, 0.15);
    }

    .shadow-card {
        box-shadow: 0 8px 30px -8px rgba(37, 99, 235, 0.12);
    }

    .shadow-glow {
        box-shadow: 0 0 40px -10px rgba(6, 182, 212, 0.4);
    }

    .pattern-overlay {
        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='%2306b6d4' fill-opacity='0.08'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

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

    /* Custom scrollbar */
    ::-webkit-scrollbar {
        width: 10px;
    }

    ::-webkit-scrollbar-track {
        background: #f1f5f9;
    }

    ::-webkit-scrollbar-thumb {
        background: var(--smas-royal);
        border-radius: 5px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: var(--smas-deep);
    }

    /* ==================== NAVBAR ==================== */
    .navbar {
        padding: 1.25rem 0;
        transition: all 0.3s ease;
        z-index: 1030;
        background: transparent;
    }

    .navbar .nav-link {
        color: white;
    }

    .navbar.scrolled {
        padding: 0.75rem 0;
        background: transparent !important;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 4px 20px -4px rgba(37, 99, 235, 0.15);
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }


    .navbar.scrolled .navbar-brand,
    .navbar.scrolled .nav-link {
        color: var(--smas-navy) !important;
    }

    .navbar.scrolled .nav-link:hover {
        color: var(--smas-cyan) !important;
    }

    .nav-link.active {
        color: var(--smas-cyan) !important;
        text-decoration: underline;
        font-weight: 600;
    }

    /* Mobile menu */
    .navbar-collapse {
        background: transparent;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 0 0 12px 12px;
        padding: 1rem;
        box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    }

    @media (min-width: 992px) {
        .navbar-collapse {
            background: transparent;
            backdrop-filter: none;
            padding: 0;
            box-shadow: none;
            border-radius: 0;
        }
    }

    /* ==================== Success Modal Styling ==================== */
        /* Success Modal Styling */
    #successModal .modal-content {
        border-radius: 1rem;
        overflow: hidden;
    }

    #successModal .modal-body {
        padding: 2.5rem !important;
    }

    #successModal .btn-accent {
        padding: 0.75rem 1.5rem;
        font-weight: 600;
    }

    /* Form Alert Animations */
    .form-alert {
        animation: slideInDown 0.3s ease-out;
    }

    @keyframes slideInDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Smooth modal animation */
    .modal.fade .modal-dialog {
        transition: transform 0.3s ease-out;
        transform: translate(0, -50px);
    }

    .modal.show .modal-dialog {
        transform: none;
    }

    /* Loading button state */
    .btn:disabled {
        opacity: 0.7;
        cursor: not-allowed;
    }

    .btn:disabled .spinner-border {
        width: 1rem;
        height: 1rem;
        border-width: 0.15em;
    }

    /* ==================== HERO SECTION ==================== */
    .hero-section {
        min-height: 100vh;
        position: relative;
        overflow: hidden;
        padding-top: 100px;
    }

    /* Hero content animations */
    .hero-content {
        opacity: 0;
        transform: translateY(30px);
        margin-top: 3rem;
        animation: fadeInUp 1s ease forwards;
    }

    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hero-chip {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .wave-bottom {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
    }

    /* Animated background elements */
    .float-element-1 {
        position: absolute;
        top: 20%;
        right: 10%;
        width: 18rem;
        height: 18rem;
        background: rgba(6, 182, 212, 0.2);
        border-radius: 50%;
        filter: blur(3rem);
        animation: float 6s ease-in-out infinite;
    }

    .float-element-2 {
        position: absolute;
        bottom: 20%;
        left: 10%;
        width: 24rem;
        height: 24rem;
        background: rgba(6, 182, 212, 0.1);
        border-radius: 50%;
        filter: blur(3rem);
        animation: float 6s ease-in-out infinite 2s;
    }

    .float-icon-1 {
        position: absolute;
        top: 25%;
        left: 15%;
        opacity: 0.2;
        animation: float 6s ease-in-out infinite;
    }

    .float-icon-2 {
        position: absolute;
        top: 33%;
        right: 20%;
        opacity: 0.2;
        animation: float 6s ease-in-out infinite 1.5s;
    }

    .float-icon-3 {
        position: absolute;
        bottom: 33%;
        left: 25%;
        opacity: 0.2;
        animation: float 6s ease-in-out infinite 3s;
    }

    /* ==================== CARDS ==================== */
    .service-card,
    .team-card,
    .contact-card,
    .smas-card,
    .card-custom {
        background: var(--card);
        border-radius: 1rem;
        border: 1px solid rgba(226, 232, 240, 0.5);
        box-shadow: 0 8px 30px -8px rgba(45, 74, 124, 0.12);
        transition: all 0.3s ease;
    }

    .service-card:hover,
    .contact-card:hover,
    .smas-card:hover,
    .card-custom:hover {
        transform: translateY(-6px);
        border-color: rgba(61, 213, 243, 0.5);
        box-shadow: 0 20px 40px -10px rgba(45, 74, 124, 0.2);
    }

    .smas-card {
        position: relative;
        overflow: hidden;
    }

    .smas-letter {
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: 5rem;
        font-weight: bold;
        color: rgba(6, 182, 212, 0.1);
        transition: color 0.3s ease;
        z-index: 1;
    }

    .smas-card:hover .smas-letter {
        color: rgba(6, 182, 212, 0.2);
    }

    .smas-icon {
        width: 56px;
        height: 56px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        position: relative;
        z-index: 2;
    }

    /* ==================== TEAM CARDS ==================== */
    .team-card {
        position: relative;
        overflow: hidden;
    }

    .team-img {
        height: 256px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .team-card:hover .team-img {
        transform: scale(1.1);
    }

    .team-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, hsl(220 65% 22%), transparent 60%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .team-card:hover .team-overlay {
        opacity: 1;
    }

    .team-social {
        position: absolute;
        bottom: 1rem;
        left: 50%;
        transform: translateX(-50%) translateY(20px);
        opacity: 0;
        transition: all 0.3s ease;
        z-index: 10;
    }

    .team-card:hover .team-social {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    .social-circle {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white !important;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .social-circle:hover {
        background: var(--smas-cyan);
        transform: translateY(-3px);
    }

    /* ==================== BADGES ==================== */
    .badge-custom {
        display: inline-block;
        padding: 0.5rem 1rem;
        border-radius: 2rem;
        background: rgba(61, 213, 243, 0.2);
        color: var(--smas-cyan);
        font-weight: 500;
        font-size: 0.875rem;
    }

    .category-badge {
        padding: 0.25rem 0.75rem;
        border-radius: 2rem;
        background: rgba(26, 41, 66, 0.8);
        color: white;
        font-size: 0.875rem;
        font-weight: 500;
    }

    .featured-badge {
        padding: 0.25rem 0.75rem;
        border-radius: 2rem;
        background: var(--smas-cyan);
        color: var(--smas-navy);
        font-size: 0.875rem;
        font-weight: 500;
    }

    /* Job badges */
    .job-badge {
        padding: 0.25rem 0.75rem;
        border-radius: 2rem;
        font-size: 0.75rem;
        font-weight: 500;
    }

    .badge-fulltime {
        background: #dcfce7;
        color: #15803d;
    }

    .badge-internship {
        background: #dbeafe;
        color: #1e40af;
    }

    .badge-contract {
        background: #fef9c3;
        color: #a16207;
    }


    /* ==================== BUTTONS ==================== */
    .btn-hero {
        background: var(--gradient-accent);
        color: white;
        padding: 1rem 2rem;
        border-radius: 12px;
        font-weight: 600;
        border: none;
        transition: all 0.3s ease;
    }

    .btn-hero:hover {
        transform: translateY(-2px);
        opacity: 0.9;
        color: white;
    }

    .btn-hero-outline {
        background: transparent;
        color: white;
        padding: 1rem 2rem;
        border-radius: 12px;
        font-weight: 600;
        border: 2px solid rgba(255, 255, 255, 0.3);
        transition: all 0.3s ease;
    }

    .btn-hero-outline:hover {
        border-color: white;
        background: rgba(255, 255, 255, 0.1);
        color: white;
    }

    .btn-accent {
        background: var(--smas-cyan);
        color: white;
        padding: 0.875rem 1.75rem;
        border-radius: 12px;
        font-weight: 600;
        border: none;
        transition: all 0.3s ease;
    }

    .btn-accent:hover {
        transform: translateY(-2px);
        opacity: 0.9;
        color:white;
        background: var(--smas-cyan-light);

    }

    .btn-primary-custom {
        background: linear-gradient(135deg, var(--smas-cyan) 0%, var(--smas-cyan-light) 100%);
        border: none;
        color: var(--smas-navy);
        font-weight: 600;
        padding: 0.875rem 1.75rem;
        border-radius: 12px;
        transition: all 0.3s;
    }

    .btn-primary-custom:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px -10px rgba(61, 213, 243, 0.5);
    }

    .btn-outline-custom {
        border: 2px solid rgba(255, 255, 255, 0.3);
        color: white;
        font-weight: 600;
        padding: 0.75rem 1.5rem;
        border-radius: 0.75rem;
        background: transparent;
        transition: all 0.3s;
    }

    .btn-outline-custom:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: white;
    }

    .btn-more {
        border: 2px solid hsl(220 60% 42%);
        color: rgb(116, 116, 116);
        font-weight: 600;
        padding: 0.75rem 1.5rem;
        border-radius: 0.75rem;
        background: transparent;
        transition: all 0.3s;
    }

    .btn-more:hover {
        background: linear-gradient(to right, var(--smas-cyan), hsl(220 60% 42%));
        border-color: var(--smas-cyan);
        color: white;
    }

    .btn-featured-btn {
        background: hsl(220 60% 42%);
        border: none;
        color: white;
        font-weight: 600;
        padding: 0.75rem 1.5rem;
        border-radius: 0.75rem;
        transition: all 0.3s;
    }

    .btn-featured-btn:hover {
        transform: translateY(-2px);
        background: linear-gradient(to right, var(--smas-cyan), hsl(220 60% 42%));
        color: white;
        box-shadow: 0 10px 30px -10px rgba(61, 213, 243, 0.5);
    }

    .btn-update-newsletter {
        background: var(--smas-cyan);
        border: none;
        color: white;
        font-weight: 600;
        padding: 0.75rem 1.5rem;
        border-radius: 0.75rem;
        transition: all 0.3s;
    }

    .btn-update-newsletter:hover {
        background: linear-gradient(to right, hsl(220 60% 42%), var(--smas-cyan));
        box-shadow: 0 10px 30px -10px rgba(61, 213, 243, 0.5);
    }

    .career-btn {
        border-radius: 0.75rem;
        border-color: hsl(190 75% 50%);
        color: #64748b;
        font-weight: 600;
        transition: all 0.3s;
    }

    .career-btn:hover {
        background: var(--smas-cyan);
        color: white;
        box-shadow: 0 10px 30px -10px rgba(61, 213, 243, 0.5);
    }

    .btn-preview {
        border: 1px solid #6c757d;
        color: #6c757d;
        background: #f8f9fa;
        padding: 0.5rem 1.5rem;
        border-radius: 0.5rem;
        transition: all 0.3s ease;
    }

    .btn-preview:hover {
        background: var(--smas-cyan);
        border-color: var(--smas-cyan);
        color: white;
    }

    .btn-xl {
        padding: 1.25rem 2.5rem;
        font-size: 1.125rem;
    }

    /* ==================== FORM CONTROLS ==================== */
    .form-control-custom {
        border: 1px solid var(--smas-gray-200);
        background: var(--smas-light);
        border-radius: 12px;
        padding: 0.75rem 1rem;
        transition: all 0.3s ease;
    }

    .form-control-custom:focus {
        border-color: var(--smas-cyan);
        box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.2);
        background: white;
    }

    .search-input {
        padding-left: 3rem;
        height: 3.5rem;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: white;
        border-radius: 0.75rem;
    }

    .search-input::placeholder {
        color: rgba(255, 255, 255, 0.5);
    }

    .search-input:focus {
        background: rgba(255, 255, 255, 0.2);
        border-color: var(--smas-cyan);
        outline: none;
        box-shadow: 0 0 0 0.2rem rgba(61, 213, 243, 0.25);
    }

    /* ==================== BLOG SPECIFIC ==================== */
    .blog-hero-gradient {
        background: linear-gradient(to bottom, hsl(220 65% 22% / 0.95), hsl(220 65% 22% / 0.4));
    }

    .category-btn {
        padding: 0.5rem 1rem;
        border-radius: 0.5rem;
        border: 1px solid var(--border);
        background: white;
        font-size: 0.875rem;
        white-space: nowrap;
        transition: all 0.3s;
    }

    .category-btn.active {
        background: hsl(220 60% 42%);
        color: white;
        border-color: hsl(220 60% 42%);
    }

    .category-btn:hover {
        background: var(--smas-cyan);
        color: var(--smas-navy);
        border-color: var(--smas-cyan);
    }

    /* Card image hover effects */
    .card-img {
        height: 192px;
        object-fit: cover;
        transition: transform 0.5s;
    }

    .card-custom:hover img {
        transform: scale(1.1);
        transition: transform 0.5s;
    }

    .card-custom:hover .article-text,
    .card-custom:hover .feature-text,
    .card-custom:hover .title-text {
        color: var(--smas-cyan);
    }

    .blog-cta-gradient {
        background: linear-gradient(
            to right,
            hsl(220 65% 22% / 0.95),
            hsl(220 65% 22% / 0.8),
            hsl(220 65% 22% / 0.6)
        );
        color: white;
    }

    .stretched-link {
        position: absolute;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    /* ==================== CAREERS SPECIFIC ==================== */
    .careers-hero-section {
        min-height: 60vh;
        position: relative;
        display: flex;
        align-items: center;
        overflow: hidden;
    }

    .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to right, hsl(220 65% 22% / .95), hsl(220 65% 22% / .85), hsl(220 65% 22% / .7));
    }

    .job-card {
        transition: all 0.3s;
    }

    .job-card:hover {
        border-color: rgba(61, 213, 243, 0.5) !important;
        box-shadow: 0 20px 40px -10px rgba(45, 74, 124, 0.2);
    }

    .icon-gradient {
        width: 56px;
        height: 56px;
        border-radius: 0.75rem;
        background: linear-gradient(135deg, var(--smas-cyan) 0%, var(--smas-cyan-light) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .number-badge {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--smas-cyan) 0%, var(--smas-cyan-light) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.5rem;
        font-weight: 700;
    }

    /* ==================== TECH HUB SPECIFIC ==================== */
        .techhub-hero-section {
        min-height: 70vh;
        padding-top: 100px;
        position: relative;
        display: flex;
        align-items: center;
        overflow: hidden;
    }

    .techhub-hero-section img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .techhub-hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to right, hsl(220 65% 22% / 0.95),hsl(220 65% 22% / 0.8),hsl(220 65% 22% / 0.6));
        z-index: 1;
    }

    .techhub-section {
        position: relative;
        z-index: 1;
    }

    .btn-techhub-accent {
        background: linear-gradient(
                135deg,hsl(190 75% 50%),hsl(200 80% 55%) );
            color: #fff;
            box-shadow: 0 10px 30px -10px hsl(190 75% 50% / 0.6);
    }

    .btn-techhub-accent:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 40px -10px hsl(190 75% 50% / 0.8);
        color: #fff;
    }

    /* ========= Features Section =========  */

    .tech-card-custom {
        background: var(--card);
        border-radius: 1rem;
        border: 1px solid rgba(226, 232, 240, 0.5);
        box-shadow: 0 8px 30px -8px rgba(45, 74, 124, 0.12);
        transition: all 0.3s;
        height: 100%;
    }

    .tech-card-custom:hover {
        border-color: rgba(61, 213, 243, 0.5);
        box-shadow: 0 20px 40px -10px rgba(45, 74, 124, 0.2);
        transform: translateY(-4px);
        .h5 {
            color: var(--smas-cyan);
        }
    }

    /* ================= Projects Section ================= */

    .tech-project-card {
        position: relative;
        overflow: hidden;
    }

    .tech-project-card img {
        height: 192px;
        width: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .tech-project-card:hover img {
        transform: scale(1.1);
    }

    .tech-status-badge {
            position: absolute;
            top: 1rem;
            right: 1rem;
            padding: 0.25rem 0.75rem;
            border-radius: 2rem;
            font-size: 0.875rem;
            font-weight: 500;
        }

    .tech-status-live {
        background: rgba(34, 197, 94, 0.8);
        color: white;
    }

    .tech-status-beta {
        background: rgba(234, 179, 8, 0.8);
        color: white;
    }

    .tech-status-dev {
        background: rgba(59, 130, 246, 0.8);
        color: white;
    }

    .tech-category-badge {
        position: absolute;
        top: 1rem;
        left: 1rem;
        padding: 0.25rem 0.75rem;
        border-radius: 2rem;
        background: rgba(26, 41, 66, 0.8);
        color: white;
        font-size: 0.875rem;
        font-weight: 500;
    }



    .techhub-cta-gradient {
        background: linear-gradient(
            to right,
            hsl(220 65% 22% / 0.95),
            hsl(220 65% 22% / 0.8),
            hsl(220 65% 22% / 0.6)
        );
    }

    .techhub-btn-hero {
        background: transparent;
        color: #fff;
        border: 1.5px solid rgba(255, 255, 255, 0.35);
        backdrop-filter: blur(6px);
    }

    .techhub-btn-hero:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.6);
        color: #fff;
    }


/* ==================== WHY US SECTION ==================== */
    .why-point {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .why-point-icon {
        flex-shrink: 0;
        width: 48px;
        height: 48px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(6, 182, 212, 0.1);
        color: var(--smas-cyan);
        font-size: 1.25rem;
    }

    .why-point-content {
        flex: 1;
    }

    .why-point-title {
        font-family: 'Space Grotesk', sans-serif;
        font-weight: 700;
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
        color: var(--smas-navy);
    }

    .why-point-description {
        font-size: 0.95rem;
        color: #64748b;
        line-height: 1.5;
    }

    /* ==================== GLASSY BADGE ==================== */
    .glassy-badge {
        position: absolute;
        bottom: -1.5rem;
        left: -1.5rem;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 1rem;
        padding: 1.5rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        z-index: 5;
    }

    .glassy-text {
        font-family: 'Nexa Bold';
        font-weight: 500;
        line-height: 1.2;
        margin-left: -20px;
        font-size: 3rem;
        color: var(--smas-cyan);
    }

    .glassy-text-sub {
        font-size: 0.9rem;
        color: var(--smas-deep);
    }

    /* ==================== CHECK CIRCLES ==================== */
    .check-circle {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: var(--smas-cyan);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        color: white;
        font-size: 0.875rem;
    }

    /* ==================== GRADIENT BACKGROUNDS ==================== */
    .cta-gradient {
        background: linear-gradient(to right, var(--smas-navy), var(--smas-blue), var(--smas-navy));
    }

    /* ==================== ANIMATIONS ==================== */
    @keyframes float {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-20px); }
    }

    .animate-float {
        animation: float 6s ease-in-out infinite;
    }

    .animate-float-delayed {
        animation: float 6s ease-in-out infinite 2s;
    }

    .pulse-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--smas-cyan);
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0% { opacity: 1; }
        50% { opacity: 0.5; }
        100% { opacity: 1; }
    }
    
    /* =================== Tech-preview-Hub ============== */
     /* Hero Section */

         /* Buttons */
        .btn-accent {
            background: linear-gradient(135deg, hsl(190 75% 50%), hsl(200 80% 55%));
            color: #fff;
            box-shadow: 0 10px 30px -10px hsl(190 75% 50% / 0.6);
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 0.75rem;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn-accent:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px -10px hsl(190 75% 50% / 0.8);
            color: #fff;
        }

        .btn-primary-custom {
            background: linear-gradient(135deg, var(--smas-cyan) 0%, var(--smas-cyan-light) 100%);
            border: none;
            color: var(--smas-navy);
            font-weight: 600;
            padding: 0.75rem 1.5rem;
            border-radius: 0.75rem;
            transition: all 0.3s;
        }

        .btn-primary-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px -10px rgba(61, 213, 243, 0.5);
        }

        .btn-outline-custom {
            border: 2px solid var(--smas-cyan);
            color: var(--smas-cyan);
            font-weight: 600;
            padding: 0.75rem 1.5rem;
            border-radius: 0.75rem;
            background: transparent;
            transition: all 0.3s;
        }

        .btn-outline-custom:hover {
            background: var(--smas-cyan);
            color: white;
        }


        .btn-copy {
            background: var(--smas-light);
            border: 1px solid var(--border);
            color: var(--muted-foreground);
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            font-size: 0.875rem;
            transition: all 0.3s;
        }

        .btn-copy:hover {
            background: var(--smas-cyan);
            border-color: var(--smas-cyan);
            color: white;
        }



        .badge-custom {
            display: inline-block;
            padding: 0.5rem 1rem;
            border-radius: 2rem;
            background: rgba(61, 213, 243, 0.2);
            color: var(--smas-cyan);
            font-weight: 500;
            font-size: 0.875rem;
        }

        .status-badge {
            padding: 0.35rem 0.85rem;
            border-radius: 2rem;
            font-size: 0.875rem;
            font-weight: 500;
        }

        .status-live {
            background: rgba(34, 197, 94, 0.15);
            color: #16a34a;
            border: 1px solid rgba(34, 197, 94, 0.3);
        }

        /* Cards */
        .card-custom {
            background: var(--card);
            border-radius: 1rem;
            border: 1px solid rgba(226, 232, 240, 0.5);
            box-shadow: 0 8px 30px -8px rgba(45, 74, 124, 0.12);
            transition: all 0.3s;
        }

        .contact-cta {
            background: linear-gradient(135deg, var(--smas-deep) 0%, var(--smas-kim-deep) 100%) !important;
            border-radius: 1rem;
            border: 1px solid rgba(226, 232, 240, 0.5);
            box-shadow: 0 8px 30px -8px rgba(45, 74, 124, 0.12);
            transition: all 0.3s;
        }

        .card-custom:hover {
            border-color: rgba(61, 213, 243, 0.5);
            box-shadow: 0 20px 40px -10px rgba(45, 74, 124, 0.2);
        }

        .stats-card {
            text-align: center;
            padding: 2rem 1.5rem;
        }

        .stats-icon {
            width: 56px;
            height: 56px;
            border-radius: 0.75rem;
            background: linear-gradient(135deg, var(--smas-cyan) 0%, var(--smas-blue) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
        }

        .credential-box {
            background: var(--smas-light);
            border: 1px solid var(--border);
            border-radius: 0.75rem;
            padding: 1rem;
            font-family: 'Courier New', monospace;
            font-size: 0.875rem;
            position: relative;
        }

        .credential-label {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--muted-foreground);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0.5rem;
        }

        .credential-value {
            color: var(--foreground);
            font-weight: 500;
            word-break: break-all;
        }

        .feature-list {
            list-style: none;
            padding: 0;
        }

        .feature-list li {
            padding: 0.75rem 0;
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: start;
            gap: 0.75rem;
        }

        .feature-list li:last-child {
            border-bottom: none;
        }

        .feature-list i {
            color: var(--smas-cyan);
            font-size: 1.25rem;
            margin-top: 0.125rem;
        }

        .tech-badge {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: var(--smas-light);
            border: 1px solid var(--border);
            border-radius: 0.5rem;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--foreground);
            margin: 0.25rem;
        }

        .screenshot-preview {
            border-radius: 1rem;
            overflow: hidden;
            border: 1px solid var(--border);
            box-shadow: 0 20px 60px -10px rgba(45, 74, 124, 0.2);
        }

        .screenshot-preview img {
            width: 100%;
            height: auto;
            display: block;
        }


    /* ==================== FOOTER ==================== */
    .footer {
        background: var(--footer-bg);
        color: white;
        position: relative;
        z-index: 1;
    }

    .footer::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 0;
        background: transparent;
        z-index: -1;
    }

    .footer a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer a:hover {
        color: var(--smas-cyan);
    }

    .footer-links li {
        margin-bottom: 0.75rem;
    }

    /* ==================== LOGO Styles ==================== */

    .logo-container {
        display: flex;
        align-items: center;
        height: 60px;
        transition: all 0.3s ease;
    }

    .logo-svg {
        height: 50px; /* Fixed height */
        width: auto;
        max-width: 180px;
        object-fit: contain;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    /* Smas Logo on Normal operations */

    .navbar-brand svg #smas-part {
        fill: rgb(253, 253, 253);
        transition: fill 0.3s ease;
    }

    .navbar-brand svg #tech-part{
        fill: white;
    }

    .logo-svg #tech-part {
        fill: white;
        transition: fill 0.3s ease;
    }

    /* Logo Colors on Scroll */

    .navbar.scrolled .navbar-brand svg #logo {
        fill: var(--smas-deep);
        transition: fill 0.3s ease;
    }

    .navbar.scrolled .navbar-brand svg #smas-part {
        fill: var(--smas-cyan-logo);
        transition: fill 0.3s ease;
    }

    .navbar.scrolled .navbar-brand svg #tech-part {
        fill: var(--smas-deep);
        transition: fill 0.3s ease;
    }

    .navbar.scrolled .navbar-brand svg #smas-c-reserve {
        stroke: var(--smas-deep);
        transition: fill 0.3s ease;
    }

    .navbar.scrolled .navbar-brand svg #smas-r-reserve {
        fill: var(--smas-cyan);
    }

    /* Logo hover effect */
    .logo-svg:hover {
        transform: scale(1.05);
    }

    /* Mobile adjustments */
    @media (max-width: 768px) {
        .logo-container {
            height: 50px;
        }

        .navbar .logo-svg {
            height: 45px;
            max-width: 150px;
        }

        .navbar.scrolled .logo-svg {
            height: 40px;
            max-width: 140px;
        }
    }

    @media (max-width: 576px) {
        .navbar .logo-svg {
            height: 40px;
            max-width: 130px;
        }

        .navbar.scrolled .logo-svg {
            height: 35px;
            max-width: 120px;
        }
    }

    /* =========== Logo Fall Back Styles ============= */

    .logo-fallback {
        font-family: 'Nexa Bold';
        font-weight: 700;
        font-size: 1.8rem;
        color: white;
    }

    .navbar.scrolled .logo-fallback {
        color: var(--smas-navy);
    }

    .logo-fallback .text-smas-cyan {
        color: var(--smas-cyan);
    }


    /* ==================== RESPONSIVE ADJUSTMENTS ==================== */
    @media (max-width: 768px) {
        .hero-title {
            font-size: 2.5rem;
        }

        .section-title {
            font-size: 2rem;
        }

        .smas-letter {
            font-size: 4rem;
        }

        .hero-section {
            padding-top: 90px;
        }

        .hero-content {
            margin-top: 1rem;
        }

        .glassy-badge {
            position: relative;
            bottom: auto;
            left: auto;
            margin-top: 1.5rem;
            width: 100%;
        }

        .why-point-title {
            font-size: 1rem;
        }

        .why-point-description {
            font-size: 0.9rem;
        }
    }

    @media (max-width: 576px) {
        .hero-title {
            font-size: 2rem;
        }

        .hero-subtitle {
            font-size: 1.1rem;
        }

        .section-title {
            font-size: 1.75rem;
        }
    }

    /* ==================== CUSTOM SPACING ==================== */
    .section-py {
        padding: 6rem 0;
    }

    .mb-section {
        margin-bottom: 4rem;
    }
