* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #0d0d0d 100%);
            color: #f5f5f5;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Container System */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
        }

        .col-lg-7 {
            flex: 0 0 58.33%;
            max-width: 58.33%;
            padding: 0 15px;
        }

        .col-lg-5 {
            flex: 0 0 41.67%;
            max-width: 41.67%;
            padding: 0 15px;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            padding: 100px 0;
            background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 140, 0, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }

        /* Content Column */
        .content-col {
            display: flex;
            align-items: center;
            min-height: 80vh;
        }

        .content {
            width: 100%;
        }

        /* Agency Name */
        .agency-name h5 {
            font-size: 0.9rem;
            font-weight: 600;
            color: #ffd700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 30px;
            position: relative;
            padding-left: 30px;
        }

        .agency-name h5::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 2px;
            background: linear-gradient(90deg, #ffd700, #ff8c00);
        }

        /* Main Heading */
        .main-heading h1 {
            font-size: clamp(3.5rem, 8vw, 7rem);
            font-weight: 900;
            line-height: 0.9;
            margin-bottom: 30px;
            background: linear-gradient(135deg, #ffffff 20%, #ffd700 40%, #ff8c00 60%, #ffd700 80%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            background-size: 300% 100%;
            animation: gradientShift 3s ease-in-out infinite;
        }

        @keyframes gradientShift {
            0%, 100% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
        }

        /* Divider */
        .divider {
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #ffd700, #ff8c00);
            margin: 40px 0;
            border-radius: 2px;
            position: relative;
            overflow: hidden;
        }

        .divider::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            animation: shimmer 2s infinite;
        }

        @keyframes shimmer {
            0% {
                left: -100%;
            }
            100% {
                left: 100%;
            }
        }

        /* Description */
        .description p {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #e0e0e0;
            font-weight: 300;
            max-width: 90%;
        }

        /* CTA Button (commented out but styled) */
        .cta-button {
            margin-top: 40px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 18px 35px;
            background: linear-gradient(135deg, #ffd700, #ff8c00);
            color: #000000;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(255, 215, 0, 0.4);
            background: linear-gradient(135deg, #ff8c00, #ffd700);
        }

        .btn i {
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .btn:hover i {
            transform: translateX(5px);
        }

        /* Visual Content */
        .visual-content {
            position: relative;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Fluid Shape */
        .fluid-shape {
            position: relative;
            width: 100%;
            max-width: 500px;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .fluid-img {
            width: 100%;
            height: 110%;
            /*object-fit: cover;
            border-radius: 30px;
            box-shadow: 
                0 30px 60px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(255, 215, 0, 0.1);*/
            transition: all 0.3s ease;
            filter: brightness(1.1) contrast(1.1);
        }

        .fluid-img:hover {
            transform: scale(1.02);
            box-shadow: 
                0 40px 80px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 215, 0, 0.3),
                0 0 50px rgba(255, 215, 0, 0.2);
        }

        /* Stats Card */
        .stats-card {
            position: absolute;
            bottom: -30px;
            right: -30px;
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.9), rgba(255, 140, 0, 0.9));
            backdrop-filter: blur(20px);
            padding: 30px;
            border-radius: 20px;
            text-align: center;
            color: #000000;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 215, 0, 0.3);
        }

        .stats-number h2 {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 5px;
            color: #000000;
        }

        .stats-label p {
            font-size: 0.9rem;
            color: rgba(0, 0, 0, 0.7);
            margin-bottom: 15px;
        }

        .stats-arrow a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(0, 0, 0, 0.1);
            border-radius: 50%;
            color: #000000;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .stats-arrow a:hover {
            background: rgba(0, 0, 0, 0.2);
            transform: translateY(-2px);
        }

        /* Floating Elements */
        .visual-content::before {
            content: '';
            position: absolute;
            top: -50px;
            left: -50px;
            width: 100px;
            height: 100px;
            background: linear-gradient(45deg, #ffd700, #ff8c00);
            border-radius: 50%;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
        }

        .visual-content::after {
            content: '';
            position: absolute;
            bottom: -30px;
            left: -30px;
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #ff8c00, #ffd700);
            border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
            opacity: 0.15;
            animation: float 4s ease-in-out infinite reverse;
        }

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

        /* Responsive Design */
        @media (max-width: 992px) {
            .col-lg-7, .col-lg-5 {
                flex: 0 0 100%;
                max-width: 100%;
            }

            .hero {
                text-align: center;
                padding: 50px 0;
            }

            .content-col {
                min-height: auto;
                margin-bottom: 50px;
            }

            .main-heading h1 {
                font-size: clamp(2.5rem, 6vw, 4rem);
            }

            .fluid-shape {
                max-width: 400px;
                height: 400px;
            }

            .stats-card {
                position: relative;
                bottom: auto;
                right: auto;
                margin-top: 30px;
                display: inline-block;
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 30px 0;
            }

            .agency-name h5 {
                font-size: 0.8rem;
                padding-left: 25px;
            }

            .description p {
                font-size: 1.1rem;
                max-width: 100%;
            }

            .fluid-shape {
                max-width: 300px;
                height: 300px;
            }
        }

        /* AOS Custom Animations */
        [data-aos="fade-up"] {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        [data-aos="fade-up"].aos-animate {
            opacity: 1;
            transform: translateY(0);
        }

        [data-aos="zoom-out"] {
            opacity: 0;
            transform: scale(1.1);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        [data-aos="zoom-out"].aos-animate {
            opacity: 1;
            transform: scale(1);
        }