/* Section Container */
        .hero-section {
            position: relative;
            min-height: 600px;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding: 60px 0;
        }

        /* Background Layer */
        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
            background-size: cover;
            background-position: center;
        }

        /* Overlay - black/65 */
        .hero-overlay {
            position: absolute;
            inset: 0;
            background-color: rgba(0, 0, 0, 0.65);
        }

        .content-box {
            width: 100%; /* max-w-4xl */
            z-index: 10;
            position: relative;
        }
        /* Heading Style */
        h1.hero-title {
            text-align: left;
            max-width: 800px;
            margin-top: 0;
        }
        /* Gradient Text for "Offices" */
        .hero-title .gradient-text {
            /* background-image: linear-gradient(to right, #5da9e9, rgb(255 255 255 / 0.9), #80c4f4); */
            -webkit-text-fill-color: transparent;
            color: transparent;
            -webkit-background-clip: text;
            background-clip: text;
            display: inline-block;
        }

        /* Description Paragraph */
        p.hero-description {
            font-size: 20px;
            color: #cbd5e1;
            max-width: 650px;
            font-weight: 300;
            margin-bottom: 36px;
            line-height: 1.5;
        }

        /* Button Styling */
        .btn-quote {
            background-color: #1fa3e4;
            color: white;
            font-weight: 600;
            font-size: 16px;
            padding: 12px 24px;
            border: none;
            border-radius: 0.375rem; /* rounded-md */
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); /* shadow-xl */
            width: fit-content;
            text-decoration: none;
        }

        .btn-quote:hover {
            background-color: #4a98d8;
            color: #fff;
        }

        /* Arrow Icon Animation */
        .btn-icon {
            height: 1.25rem;
            width: 1.25rem;
            margin-left: 0.5rem;
            transition: transform 0.3s ease;
        }

        .btn-quote:hover .btn-icon {
            transform: translateX(4px); /* translate-x-1 */
        }

        /* Bottom Gradient Fade */
        .bottom-fade {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 6rem; /* h-24 */
            background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
            pointer-events: none;
        }

        /* Desktop Adjustments (lg: breakpoint) */
        @media (min-width: 1024px) {
            .hero-title {
                font-size: 3.75rem; /* lg:text-6xl */
            }
            .hero-description {
                font-size: 1.125rem; /* lg:text-lg */
            }
        }
        @media screen and (max-width: 1024px){
            .hero-section {
                height: fit-content;
                min-height: fit-content;
                padding: 60px 0;
            }
            .hero-section h1.hero-title {
                margin-top: 0;
            }
            .hero-section .btn-quote {
                padding: 12px;
                font-size: 14px;
                line-height: normal;
            }
        }
        @media screen and (min-width:768px) and (max-width:1024px){
            .hero-section h1.hero-title {
                font-size: 50px;
                line-height: 1;
            }
            p.hero-description {
                font-size: 18px;
                line-height: 1.4;
            }
        }