        /* ============================================================
                   ROOT VARIABLES - Skyward Brand Colors
                   ============================================================ */
        :root {
            --primary: #2563eb;
            --primary-light: #3b82f6;
            --primary-dark: #1d4ed8;
            --secondary: #f97316;
            --accent: #06b6d4;
            --dark: #0f172a;
            --dark-light: #1e293b;
            --light-bg: #f1f5f9;
            --shadow-sm: 0 4px 24px rgba(37, 99, 235, 0.12);
            --shadow-md: 0 12px 48px rgba(37, 99, 235, 0.18);
            --shadow-lg: 0 24px 64px rgba(37, 99, 235, 0.25);
            --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --radius: 20px;
        }

        /* ============================================================
                   BASE
                   ============================================================ */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--light-bg);
            color: #1a1a2e;
            overflow-x: hidden;
        }

        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: var(--light-bg);
        }
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 10px;
        }

        /* ============================================================
                   ANIMATED BACKGROUND SHAPES
                   ============================================================ */
        .bg-shapes {
            position: fixed;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        .bg-shapes .shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.06;
            animation: floatShape 20s ease-in-out infinite alternate;
        }

        .bg-shapes .shape:nth-child(1) {
            width: 500px;
            height: 500px;
            background: var(--primary);
            top: -10%;
            right: -5%;
            animation-delay: 0s;
        }

        .bg-shapes .shape:nth-child(2) {
            width: 350px;
            height: 350px;
            background: var(--secondary);
            bottom: 10%;
            left: -5%;
            animation-delay: -5s;
            animation-duration: 25s;
        }

        .bg-shapes .shape:nth-child(3) {
            width: 200px;
            height: 200px;
            background: var(--accent);
            top: 50%;
            left: 40%;
            animation-delay: -10s;
            animation-duration: 18s;
        }

        @keyframes floatShape {
            0% {
                transform: translate(0, 0) scale(1) rotate(0deg);
            }
            33% {
                transform: translate(40px, -30px) scale(1.05) rotate(10deg);
            }
            66% {
                transform: translate(-20px, 40px) scale(0.95) rotate(-5deg);
            }
            100% {
                transform: translate(30px, -20px) scale(1.02) rotate(5deg);
            }
        }

        /* ============================================================
                   LOADING ANIMATION
                   ============================================================ */
        #loader {
            position: fixed;
            inset: 0;
            background: var(--dark);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 99999;
            transition: opacity 0.8s ease, visibility 0.8s ease;
        }

        #loader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        #loader .loader-ring {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            border: 4px solid transparent;
            border-top-color: var(--primary);
            border-bottom-color: var(--secondary);
            animation: spin 1s linear infinite;
            position: relative;
        }

        #loader .loader-ring::after {
            content: '';
            position: absolute;
            inset: 8px;
            border-radius: 50%;
            border: 4px solid transparent;
            border-left-color: var(--accent);
            border-right-color: var(--primary-light);
            animation: spin 0.6s linear infinite reverse;
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        /* ============================================================
                   TOP HEADER BAR
                   ============================================================ */
        .top-header-bar {
            background: var(--dark);
            color: #b0b0ca;
            padding: 6px 0;
            font-size: 0.82rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            position: relative;
            z-index: 1060;
        }

        .top-header-bar .contact-info a {
            color: #b0b0ca;
            text-decoration: none;
            transition: color var(--transition);
            font-size: 0.82rem;
        }

        .top-header-bar .contact-info a:hover {
            color: #fff;
        }

        .top-header-bar .contact-info .divider {
            color: rgba(255, 255, 255, 0.12);
            margin: 0 10px;
            font-weight: 300;
        }

        .top-header-bar .contact-info i {
            color: var(--primary-light);
            margin-right: 6px;
            font-size: 0.78rem;
        }

        .top-header-bar .social-icons a {
            color: #8888aa;
            text-decoration: none;
            transition: all var(--transition);
            margin-left: 14px;
            font-size: 0.9rem;
            display: inline-block;
        }

        .top-header-bar .social-icons a:hover {
            color: #fff;
            transform: translateY(-2px);
        }

        .top-header-bar .social-icons a:hover .fa-facebook-f {
            color: #1877f2;
        }
        .top-header-bar .social-icons a:hover .fa-twitter {
            color: #1da1f2;
        }
        .top-header-bar .social-icons a:hover .fa-linkedin-in {
            color: #0a66c2;
        }
        .top-header-bar .social-icons a:hover .fa-instagram {
            color: #e4405f;
        }
        .top-header-bar .social-icons a:hover .fa-youtube {
            color: #ff0000;
        }

        @media (max-width: 767.98px) {
            .top-header-bar .contact-info a {
                font-size: 0.7rem;
            }
            .top-header-bar .contact-info .divider {
                margin: 0 5px;
            }
            .top-header-bar .social-icons a {
                margin-left: 10px;
                font-size: 0.8rem;
            }
            .top-header-bar .contact-info i {
                margin-right: 3px;
                font-size: 0.7rem;
            }
        }

        @media (max-width: 575.98px) {
            .top-header-bar .contact-info a {
                font-size: 0.6rem;
            }
            .top-header-bar .contact-info .divider {
                margin: 0 3px;
            }
            .top-header-bar .social-icons a {
                margin-left: 8px;
                font-size: 0.7rem;
            }
            .top-header-bar {
                padding: 4px 0;
            }
        }

        /* ============================================================
                   NAVBAR
                   ============================================================ */
        .navbar {
            background: rgba(255, 255, 255, 0.92) !important;
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            padding: 8px 0;
            transition: all var(--transition);
            z-index: 1050;
        }

        .navbar.scrolled {
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
            background: rgba(255, 255, 255, 0.98) !important;
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 800;
            font-size: 1.4rem;
            color: var(--dark) !important;
            letter-spacing: -0.3px;
            text-decoration: none;
            padding: 4px 0;
        }

        .navbar-brand .brand-logo {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            flex-shrink: 0;
            background: #fff;
            box-shadow: 0 2px 12px rgba(37, 99, 235, 0.15);
            transition: all var(--transition);
        }

        .navbar-brand .brand-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 4px;
        }

        .navbar-brand:hover .brand-logo {
            transform: scale(1.04) rotate(-2deg);
            box-shadow: 0 4px 20px rgba(37, 99, 235, 0.25);
        }

        .navbar-brand .brand-text {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--dark);
            line-height: 1.2;
            white-space: nowrap;
        }

        .navbar-brand .brand-text .highlight-text {
            color: var(--primary);
        }

        @media (max-width: 575.98px) {
            .navbar-brand .brand-text {
                font-size: 0.85rem;
            }
            .navbar-brand .brand-logo {
                width: 36px;
                height: 36px;
            }
        }

        @media (min-width: 576px) and (max-width: 767.98px) {
            .navbar-brand .brand-text {
                font-size: 1rem;
            }
        }

        .navbar .nav-link {
            font-weight: 600;
            color: #4a4a6a !important;
            padding: 8px 18px !important;
            border-radius: 10px;
            transition: all var(--transition);
            position: relative;
            font-size: 0.92rem;
        }

        .navbar .nav-link::before {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 20px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border-radius: 4px;
            transition: transform var(--transition);
        }

        .navbar .nav-link:hover::before,
        .navbar .nav-link.active::before {
            transform: translateX(-50%) scaleX(1);
        }

        .navbar .nav-link:hover,
        .navbar .nav-link.active {
            color: var(--primary) !important;
            background: rgba(37, 99, 235, 0.06);
        }

        .navbar-toggler {
            border: none;
            padding: 10px 12px;
            border-radius: 12px;
            background: rgba(37, 99, 235, 0.06);
        }

        .navbar-toggler:focus {
            box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
        }

        .navbar-toggler-icon {
            background-image: none;
            display: flex;
            flex-direction: column;
            gap: 5px;
            width: 28px;
            height: 22px;
            justify-content: center;
        }

        .navbar-toggler-icon span {
            display: block;
            height: 3px;
            width: 100%;
            background: var(--dark);
            border-radius: 4px;
            transition: all var(--transition);
        }

        .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }
        .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }
        .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }

        /* ============================================================
                   SLIDER / CAROUSEL
                   ============================================================ */
        .hero-carousel {
            margin-top: 0;
            position: relative;
            z-index: 1;
        }

        .hero-carousel .carousel-item {
            height: 92vh;
            min-height: 500px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .hero-carousel .carousel-item::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg,
                    rgba(15, 23, 42, 0.75) 0%,
                    rgba(15, 23, 42, 0.35) 60%,
                    rgba(15, 23, 42, 0.10) 100%);
            z-index: 1;
        }

        .hero-carousel .carousel-caption {
            z-index: 2;
            bottom: 50%;
            transform: translateY(50%);
            text-align: left;
            padding: 0 2rem;
        }

        .hero-carousel .carousel-caption .badge-slide {
            display: inline-block;
            background: rgba(37, 99, 235, 0.25);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            padding: 6px 20px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            color: #fff;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-bottom: 16px;
        }

        .hero-carousel .carousel-caption h1 {
            font-size: 4.2rem;
            font-weight: 900;
            line-height: 1.08;
            text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 1s ease forwards;
        }

        .hero-carousel .carousel-caption h1 .gradient-text {
            background: linear-gradient(135deg, var(--primary-light), var(--secondary), #facc15);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-carousel .carousel-caption p {
            font-size: 1.3rem;
            max-width: 520px;
            opacity: 0.92;
            text-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
            animation: fadeInUp 1s ease 0.15s forwards;
            opacity: 0;
            animation-fill-mode: forwards;
        }

        .hero-carousel .carousel-caption .btn-group-slide {
            animation: fadeInUp 1s ease 0.3s forwards;
            opacity: 0;
            animation-fill-mode: forwards;
        }

        .hero-carousel .carousel-caption .btn {
            padding: 14px 40px;
            font-weight: 600;
            border-radius: 50px;
            transition: all var(--transition);
            font-size: 1rem;
        }

        .hero-carousel .carousel-caption .btn-primary-glow {
            background: linear-gradient(145deg, var(--primary), var(--primary-dark));
            border: none;
            box-shadow: 0 8px 32px rgba(37, 99, 235, 0.45);
            color: #fff;
        }

        .hero-carousel .carousel-caption .btn-primary-glow:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 16px 48px rgba(37, 99, 235, 0.55);
        }

        .hero-carousel .carousel-caption .btn-outline-glass {
            border: 2px solid rgba(255, 255, 255, 0.4);
            color: #fff;
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(6px);
        }

        .hero-carousel .carousel-caption .btn-outline-glass:hover {
            background: #fff;
            color: var(--dark);
            border-color: #fff;
            transform: translateY(-4px);
        }

        .hero-carousel .carousel-indicators button {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.5);
            background: transparent;
            opacity: 0.5;
            transition: all var(--transition);
        }

        .hero-carousel .carousel-indicators .active {
            background: #fff;
            opacity: 1;
            transform: scale(1.2);
            border-color: #fff;
        }

        .hero-carousel .carousel-control-prev,
        .hero-carousel .carousel-control-next {
            width: 6%;
            opacity: 0.4;
            transition: all var(--transition);
        }

        .hero-carousel .carousel-control-prev:hover,
        .hero-carousel .carousel-control-next:hover {
            opacity: 1;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ============================================================
                   SECTION TITLES
                   ============================================================ */
        .section-wrapper {
            position: relative;
            z-index: 1;
            padding: 100px 0;
        }

        .section-label {
            display: inline-block;
            background: rgba(37, 99, 235, 0.10);
            color: var(--primary);
            padding: 4px 18px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 0.75rem;
            line-height: 1.15;
        }

        .section-title .highlight {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-subtitle {
            color: #6c6c8a;
            font-size: 1.1rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.7;
        }

        /* ============================================================
                   SERVICES
                   ============================================================ */
        #services {
            background: #ffffff;
        }

        #services .service-card {
            background: #fff;
            border: none;
            border-radius: var(--radius);
            padding: 40px 28px;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
            height: 100%;
            text-align: center;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(37, 99, 235, 0.04);
        }

        #services .service-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(145deg, rgba(37, 99, 235, 0.03), rgba(249, 115, 22, 0.02));
            opacity: 0;
            transition: opacity var(--transition);
        }

        #services .service-card:hover::before {
            opacity: 1;
        }

        #services .service-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.6s ease;
        }

        #services .service-card:hover::after {
            transform: scaleX(1);
        }

        #services .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-md);
            border-color: rgba(37, 99, 235, 0.10);
        }

        #services .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(145deg, rgba(37, 99, 235, 0.08), rgba(37, 99, 235, 0.02));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 22px;
            font-size: 2.4rem;
            color: var(--primary);
            transition: all var(--transition);
        }

        #services .service-card:hover .service-icon {
            background: linear-gradient(145deg, var(--primary), var(--primary-dark));
            color: #fff;
            transform: scale(1.06) rotate(-4deg);
            box-shadow: 0 8px 28px rgba(37, 99, 235, 0.3);
        }

        #services .service-card h5 {
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 10px;
            font-size: 1.2rem;
        }

        #services .service-card p {
            color: #5a5a7a;
            font-size: 0.95rem;
            margin-bottom: 0;
            line-height: 1.7;
        }

        /* ============================================================
                   ABOUT
                   ============================================================ */
        #about {
            background: var(--light-bg);
        }

        #about .about-image-wrapper {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: all var(--transition);
            position: relative;
        }

        #about .about-image-wrapper::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.10), transparent 60%);
            z-index: 1;
            pointer-events: none;
        }

        #about .about-image-wrapper:hover {
            transform: scale(1.01);
            box-shadow: var(--shadow-lg);
        }

        #about .about-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            min-height: 320px;
            transition: transform 0.8s ease;
        }

        #about .about-image-wrapper:hover img {
            transform: scale(1.03);
        }

        #about .about-content h3 {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--dark);
            line-height: 1.2;
        }

        #about .about-content p {
            color: #5a5a7a;
            line-height: 1.8;
        }

        #about .about-feature {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 14px;
            padding: 10px 16px;
            border-radius: 12px;
            background: rgba(37, 99, 235, 0.04);
            transition: all var(--transition);
        }

        #about .about-feature:hover {
            background: rgba(37, 99, 235, 0.08);
            transform: translateX(6px);
        }

        #about .about-feature i {
            width: 44px;
            height: 44px;
            background: linear-gradient(145deg, var(--primary), var(--primary-dark));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        #about .about-feature span {
            font-weight: 500;
            color: var(--dark);
        }

        /* ============================================================
                   PORTFOLIO
                   ============================================================ */
        #portfolio {
            background: #ffffff;
        }

        #portfolio .portfolio-item {
            border-radius: var(--radius);
            overflow: hidden;
            position: relative;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
            cursor: pointer;
            border: 1px solid rgba(37, 99, 235, 0.04);
        }

        #portfolio .portfolio-item:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-md);
            border-color: rgba(37, 99, 235, 0.10);
        }

        #portfolio .portfolio-item img {
            width: 100%;
            height: 270px;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        #portfolio .portfolio-item:hover img {
            transform: scale(1.06);
        }

        #portfolio .portfolio-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top,
                    rgba(15, 23, 42, 0.85) 0%,
                    rgba(15, 23, 42, 0.20) 50%,
                    transparent 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 28px 24px;
            opacity: 0;
            transition: all var(--transition);
        }

        #portfolio .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }

        #portfolio .portfolio-overlay .project-tag {
            display: inline-block;
            background: rgba(37, 99, 235, 0.30);
            backdrop-filter: blur(10px);
            padding: 2px 16px;
            border-radius: 50px;
            font-size: 0.7rem;
            font-weight: 600;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            align-self: flex-start;
            margin-bottom: 8px;
        }

        #portfolio .portfolio-overlay h6 {
            color: #fff;
            font-weight: 700;
            font-size: 1.15rem;
            margin-bottom: 2px;
        }

        #portfolio .portfolio-overlay small {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.85rem;
        }

        #portfolio .portfolio-overlay .btn-link {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            padding: 0;
            margin-top: 10px;
            align-self: flex-start;
            transition: all var(--transition);
            border-bottom: 2px solid transparent;
        }

        #portfolio .portfolio-overlay .btn-link:hover {
            color: var(--secondary);
            border-bottom-color: var(--secondary);
        }

        /* ============================================================
                   TESTIMONIALS
                   ============================================================ */
        #testimonials {
            background: var(--light-bg);
            padding: 80px 0;
        }

        #testimonials .testimonial-card {
            background: #fff;
            border-radius: var(--radius);
            padding: 32px 28px;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition);
            border: 1px solid rgba(37, 99, 235, 0.04);
            height: 100%;
        }

        #testimonials .testimonial-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-md);
        }

        #testimonials .testimonial-card .stars {
            color: #facc15;
            font-size: 0.9rem;
            letter-spacing: 2px;
            margin-bottom: 12px;
        }

        #testimonials .testimonial-card .quote-text {
            font-size: 1rem;
            line-height: 1.7;
            color: #4a4a6a;
            font-style: italic;
            margin-bottom: 16px;
        }

        #testimonials .testimonial-card .client-info {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        #testimonials .testimonial-card .client-info .avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(145deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        #testimonials .testimonial-card .client-info .name {
            font-weight: 700;
            color: var(--dark);
            font-size: 0.95rem;
            margin-bottom: 0;
        }

        #testimonials .testimonial-card .client-info .role {
            font-size: 0.8rem;
            color: #6c6c8a;
            margin-bottom: 0;
        }

        /* ============================================================
                   CONTACT SECTION
                   ============================================================ */
        #contact {
            background: #ffffff;
            padding: 100px 0;
            position: relative;
            z-index: 1;
        }

        #contact .contact-info-card {
            background: var(--light-bg);
            border-radius: var(--radius);
            padding: 40px 32px;
            height: 100%;
            transition: all var(--transition);
            border: 1px solid rgba(37, 99, 235, 0.04);
        }

        #contact .contact-info-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-sm);
        }

        #contact .contact-info-card .icon-box {
            width: 56px;
            height: 56px;
            background: linear-gradient(145deg, var(--primary), var(--primary-dark));
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.4rem;
            flex-shrink: 0;
        }

        #contact .contact-info-card h6 {
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 2px;
        }

        #contact .contact-info-card p {
            color: #5a5a7a;
            margin-bottom: 0;
            font-size: 0.95rem;
        }

        #contact .contact-form-wrapper {
            background: #fff;
            border-radius: var(--radius);
            padding: 40px 36px;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(37, 99, 235, 0.04);
            transition: all var(--transition);
        }

        #contact .contact-form-wrapper:hover {
            box-shadow: var(--shadow-md);
        }

        #contact .form-control {
            border: 2px solid #e9ecf2;
            border-radius: 12px;
            padding: 14px 18px;
            font-size: 0.95rem;
            transition: all var(--transition);
            background: var(--light-bg);
        }

        #contact .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10);
            background: #fff;
        }

        #contact .form-label {
            font-weight: 600;
            color: var(--dark);
            font-size: 0.9rem;
        }

        #contact .btn-submit {
            background: linear-gradient(145deg, var(--primary), var(--primary-dark));
            border: none;
            padding: 14px 44px;
            font-weight: 600;
            border-radius: 50px;
            color: #fff;
            transition: all var(--transition);
            box-shadow: 0 6px 28px rgba(37, 99, 235, 0.35);
        }

        #contact .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(37, 99, 235, 0.45);
        }

        /* ============================================================
                   SCROLL TO TOP BUTTON
                   ============================================================ */
        #scrollTopBtn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 9999;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(145deg, var(--primary), var(--primary-dark));
            color: #fff;
            border: none;
            box-shadow: 0 8px 32px rgba(37, 99, 235, 0.40);
            cursor: pointer;
            font-size: 1.6rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all var(--transition);
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px) scale(0.8);
            pointer-events: none;
        }

        #scrollTopBtn.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
            pointer-events: auto;
        }

        #scrollTopBtn:hover {
            transform: translateY(-4px) scale(1.06);
            box-shadow: 0 12px 48px rgba(37, 99, 235, 0.55);
        }

        #scrollTopBtn:active {
            transform: scale(0.92);
        }

        #scrollTopBtn i {
            animation: bounceArrow 2s ease-in-out infinite;
        }

        @keyframes bounceArrow {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-4px);
            }
        }

        /* ============================================================
                   TOAST
                   ============================================================ */
        .toast-container {
            position: fixed;
            bottom: 100px;
            right: 30px;
            z-index: 99999;
        }

        .toast {
            border: none;
            border-radius: 16px;
            box-shadow: var(--shadow-lg);
            background: #fff;
            padding: 4px 8px;
        }

        .toast .toast-body {
            display: flex;
            align-items: center;
            gap: 14px;
            font-weight: 500;
            color: var(--dark);
        }

        .toast .toast-body i {
            font-size: 1.8rem;
            color: #22c55e;
        }

        /* ============================================================
                   FOOTER
                   ============================================================ */
        footer {
            background: var(--dark);
            color: #b0b0ca;
            padding: 70px 0 30px;
            position: relative;
            z-index: 1;
        }

        footer .footer-brand {
            font-size: 1.4rem;
            font-weight: 700;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        footer .footer-brand .brand-logo-sm {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
            flex-shrink: 0;
        }

        footer .footer-brand .brand-logo-sm img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 4px;
        }

        footer .footer-brand .brand-text-footer {
            font-size: 1.1rem;
            line-height: 1.2;
        }

        footer .footer-brand .brand-text-footer .highlight-text {
            color: var(--primary-light);
        }

        footer h6 {
            color: #fff;
            font-weight: 700;
            margin-bottom: 20px;
            font-size: 1.05rem;
        }

        footer .footer-link {
            color: #b0b0ca;
            text-decoration: none;
            transition: all var(--transition);
            display: inline-block;
            margin-bottom: 8px;
            font-size: 0.95rem;
        }

        footer .footer-link:hover {
            color: #fff;
            transform: translateX(4px);
        }

        footer .social-link {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #b0b0ca;
            font-size: 1.1rem;
            transition: all var(--transition);
            text-decoration: none;
            border: 1px solid rgba(255, 255, 255, 0.04);
        }

        footer .social-link:hover {
            background: linear-gradient(145deg, var(--primary), var(--primary-dark));
            color: #fff;
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
            border-color: transparent;
        }

        footer .footer-divider {
            border-color: rgba(255, 255, 255, 0.06);
            margin: 32px 0 20px;
        }

        footer .footer-bottom-text {
            color: #666688;
            font-size: 0.9rem;
        }

        footer .footer-bottom-text i {
            color: #f43f5e;
            animation: heartbeat 1.8s ease-in-out infinite;
        }

        @keyframes heartbeat {
            0%,
            100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.2);
            }
        }

        /* ============================================================
                   SCROLL ANIMATIONS (Intersection Observer)
                   ============================================================ */
        .reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .reveal-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .reveal-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-scale {
            opacity: 0;
            transform: scale(0.92);
            transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .reveal-scale.visible {
            opacity: 1;
            transform: scale(1);
        }

        .reveal-stagger>* {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .reveal-stagger.visible>*:nth-child(1) {
            transition-delay: 0.05s;
            opacity: 1;
            transform: translateY(0);
        }
        .reveal-stagger.visible>*:nth-child(2) {
            transition-delay: 0.15s;
            opacity: 1;
            transform: translateY(0);
        }
        .reveal-stagger.visible>*:nth-child(3) {
            transition-delay: 0.25s;
            opacity: 1;
            transform: translateY(0);
        }
        .reveal-stagger.visible>*:nth-child(4) {
            transition-delay: 0.35s;
            opacity: 1;
            transform: translateY(0);
        }

        /* ============================================================
                   RESPONSIVE
                   ============================================================ */
        @media (max-width: 1199.98px) {
            .hero-carousel .carousel-caption h1 {
                font-size: 3.4rem;
            }
        }

        @media (max-width: 991.98px) {
            .hero-carousel .carousel-item {
                height: 70vh;
                min-height: 420px;
            }
            .hero-carousel .carousel-caption h1 {
                font-size: 2.8rem;
            }
            .hero-carousel .carousel-caption p {
                font-size: 1.1rem;
                max-width: 100%;
            }
            .section-wrapper {
                padding: 70px 0;
            }
            .section-title {
                font-size: 2.2rem;
            }
            #about .about-image-wrapper {
                margin-bottom: 30px;
            }
            #about .about-image-wrapper img {
                min-height: 250px;
            }
            #contact .contact-form-wrapper {
                padding: 30px 24px;
                margin-top: 30px;
            }
        }

        @media (max-width: 767.98px) {
            .navbar-brand .brand-text {
                font-size: 1rem;
            }
            .navbar-brand .brand-logo {
                width: 40px;
                height: 40px;
            }
            .hero-carousel .carousel-item {
                height: 60vh;
                min-height: 360px;
            }
            .hero-carousel .carousel-caption {
                bottom: 50%;
                transform: translateY(50%);
                text-align: center;
                padding: 0 1rem;
            }
            .hero-carousel .carousel-caption h1 {
                font-size: 2rem;
            }
            .hero-carousel .carousel-caption p {
                font-size: 0.95rem;
                margin-left: auto;
                margin-right: auto;
            }
            .hero-carousel .carousel-caption .btn {
                padding: 12px 28px;
                font-size: 0.9rem;
            }
            .hero-carousel .carousel-control-prev,
            .hero-carousel .carousel-control-next {
                width: 10%;
            }
            .section-wrapper {
                padding: 50px 0;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .section-subtitle {
                font-size: 0.95rem;
            }
            #services .service-card {
                padding: 30px 20px;
            }
            #services .service-icon {
                width: 64px;
                height: 64px;
                font-size: 1.8rem;
            }
            #about .about-content h3 {
                font-size: 1.7rem;
            }
            #portfolio .portfolio-item img {
                height: 210px;
            }
            #testimonials .testimonial-card {
                padding: 24px 20px;
            }
            #contact {
                padding: 60px 0;
            }
            #contact .contact-info-card {
                padding: 28px 20px;
            }
            #contact .contact-form-wrapper {
                padding: 24px 18px;
            }
            #scrollTopBtn {
                width: 48px;
                height: 48px;
                font-size: 1.3rem;
                bottom: 20px;
                right: 20px;
            }
            .toast-container {
                bottom: 80px;
                right: 20px;
                left: 20px;
            }
            .toast {
                width: 100% !important;
                max-width: 100% !important;
            }
            footer {
                padding: 40px 0 20px;
            }
            footer .footer-brand {
                font-size: 1.2rem;
                justify-content: center;
            }
            footer .text-md-end {
                text-align: center !important;
                margin-top: 16px;
            }
            footer .social-link {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
            .navbar .nav-link.active::before {
                display: none;
            }
        }

        @media (max-width: 575.98px) {
            .hero-carousel .carousel-item {
                height: 50vh;
                min-height: 300px;
            }
            .hero-carousel .carousel-caption h1 {
                font-size: 1.5rem;
            }
            .hero-carousel .carousel-caption .badge-slide {
                font-size: 0.7rem;
                padding: 4px 14px;
            }
            .hero-carousel .carousel-caption p {
                font-size: 0.85rem;
            }
            .hero-carousel .carousel-caption .btn {
                padding: 10px 20px;
                font-size: 0.8rem;
            }
            .section-title {
                font-size: 1.5rem;
            }
            #portfolio .portfolio-item img {
                height: 180px;
            }
            #about .about-image-wrapper img {
                min-height: 200px;
            }
            #testimonials .testimonial-card .quote-text {
                font-size: 0.9rem;
            }
            #contact .btn-submit {
                padding: 12px 32px;
                font-size: 0.95rem;
                width: 100%;
            }
            #scrollTopBtn {
                width: 44px;
                height: 44px;
                font-size: 1.1rem;
                bottom: 16px;
                right: 16px;
            }
        }
