
        /* --------------------------------------------- */
        /* GLOBAL & RESET */
        /* --------------------------------------------- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            background-color: #f3f3f3;
            color: #2c2c2c;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6,
        .navbar-brand,
        .offcanvas-title,
        .footer-heading {
            font-family: 'Poppins', sans-serif;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #fd621d;
            margin-bottom: 1.2rem;
            position: relative;
            display: inline-block;
        }
section{
    overflow: hidden;
}
        .section-subtitle {
            font-size: 1.1rem;
            color: #6c757d;
            margin-bottom: 2rem;
            font-weight: 400;
        }

        .bg-light-custom {
            background-color: #f3f3f3;
        }

        .btn-red-link {
            color: #fd621d;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .btn-red-link:hover {
            color: #8f1f1f;
            letter-spacing: 1px;
        }

        /* Header */
        .fixed-top-custom {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: #ffffff;
            border-bottom: 1px solid #e5e5e5;
            z-index: 1030;
            height: 90px;
            transition: all 0.2s ease;
        }

        .header-container {
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 30px;
        }

        .hamburger-icon {
            background: transparent;
            border: none;
            font-size: 28px;
            color: #fd621d;
            cursor: pointer;
            padding: 8px;
            line-height: 1;
            transition: 0.2s;
        }

        .logo-wrapper {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            top: 50%;
            transform: translate(-50%, -50%);
        }

        .logo-img {
            width: 180px;
            height: auto;
            display: block;
        }

        .linkedin-icon-header {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border: 1px solid #000;
            background: #fff;
            border-radius: 6px;
            transition: all 0.2s;
            color: #0a66c2;
            font-size: 22px;
        }

        .linkedin-icon-header:hover {
            background: #0a66c2;
            border-color: #0a66c2;
            color: white;
        }

        /* offcanvas menu */
        .offcanvas-body .nav-link-custom {
            font-size: 1.6rem;
            font-weight: 500;
            color: #1e1e1e;
            padding: 12px 20px;
            transition: 0.2s;
            font-family: 'Poppins', sans-serif;
            display: block;
            text-decoration: none;
        }

        .offcanvas-body .nav-link-custom:hover {
            color: #fd621d;
            padding-left: 28px;
            background-color: #f8f9fa;
        }

        /* Hero Swiper */
        .hero-swiper {
            width: 100%;
            height: 620px;
            margin-top: 90px;
        }

        .swiper-slide {
            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
        }

        .swiper-button-next,
        .swiper-button-prev {
            color: white;
            background: rgba(0, 0, 0, 0.4);
            width: 44px;
            height: 44px;
            border-radius: 50%;
        }

        .swiper-pagination-bullet-active {
            background: #fd621d;
        }

        /* about + contact card */
        .contact-card {
            background: white;
            border-radius: 16px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
            padding: 30px;
            transition: 0.2s;
        }

        .form-control,
        .form-select {
            border-radius: 8px;
            border: 1px solid #dee2e6;
            padding: 12px 15px;
        }

        .btn-reset {
            background: #e9ecef;
            border: none;
            color: #495057;
            padding: 10px 28px;
            border-radius: 40px;
            font-weight: 500;
        }

        .btn-submit {
            background: #fd621d;
            border: none;
            color: white;
            padding: 10px 30px;
            border-radius: 40px;
            font-weight: 600;
            transition: 0.2s;
        }

        .btn-submit:hover {
            background: #8a1f1f;
        }

        /* project cards */
        .project-card {
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
        }

        .project-img {
            width: 100%;
            height: 260px;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .project-card:hover .project-img {
            transform: scale(1.08);
        }

        /* testimonials */
        .testimonial-card {
            background: white;
            border-radius: 28px;
            padding: 2rem 2rem;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
            text-align: center;
            margin: 20px 0;
        }

        .testimonial-quote {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #2c3e50;
            font-style: italic;
            margin-bottom: 20px;
        }

        .client-name {
            font-weight: 700;
            color: #fd621d;
            font-size: 1.2rem;
        }

        .testimonial-nav {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 15px;
        }

        .testimonial-nav button {
            background: white;
            border: 1px solid #ddd;
            border-radius: 50%;
            width: 48px;
            height: 48px;
            font-size: 24px;
            transition: 0.2s;
        }

        .testimonial-nav button:hover {
            background: #fd621d;
            color: white;
            border-color: #fd621d;
        }

        /* Footer */
        .footer-dark {
            background-color: #3d4146;
            color: #e0e0e0;
            padding-top: 60px;
        }

        .footer-logo {
            max-width: 180px;
            margin-bottom: 20px;
                border-radius: 10px;
            /* filter: brightness(0) invert(1); */
        }

        .footer-links {
            list-style: none;
            padding-left: 0;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a,
        .footer-contact a {
            color: #cfcfcf;
            text-decoration: none;
            transition: 0.2s;
        }

        .footer-links a:hover,
        .footer-contact a:hover {
            color: #f0c419;
            padding-left: 4px;
        }

        .footer-heading {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .footer-divider {
            width: 50px;
            height: 3px;
            background: #f0c419;
            margin: 10px 0 20px 0;
        }

        .bottom-footer {
            background-color: #34383d;
            padding: 18px 0;
            margin-top: 50px;
        }

        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 25px;
            background: #fd621d;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            cursor: pointer;
            z-index: 1050;
            transition: 0.2s;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            left: 25px;
            background: #25d366;
            width: 52px;
            height: 52px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            color: white;
            z-index: 1050;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            transition: 0.2s;
        }

        @media (max-width: 991px) {
            .hero-swiper {
                height: 500px;
                margin-top: 75px;
            }

            .fixed-top-custom {
                height: 75px;
            }

            .logo-img {
                width: 180px;
            }

            .section-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 767px) {
            .hero-swiper {
                height: 280px;
                margin-top: 65px;
            }

            .fixed-top-custom {
                height: 75px;
            }

            .logo-img {
                width: 150px;
            }

            .header-container {
                padding: 0 16px;
            }

            .offcanvas-body .nav-link-custom {
                font-size: 1.3rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .bottom-footer .row {
                flex-direction: column;
                text-align: center;
                gap: 8px;
            }

            .bottom-footer .col-md-4 {
                text-align: center;
            }
        }

        @media (min-width: 1200px) {
            .container {
                max-width: 1200px;
            }
        }

        a,
        button {
            cursor: pointer;
        }

        .glightbox img {
            cursor: pointer;
        }