/* Header Section */
        .main-title {
            background: linear-gradient(135deg, #2c3e50, #3498db);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
            margin-bottom: 80px;
            position: relative;
        }


        .collaboration-section {
            max-width: 1000px;
            margin: 0 auto 70px;
            position: relative;
        }

        .collab-box {
            display: flex;
            border-radius: 25px;
            overflow: visible;
            position: relative;
            height: 160px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }

        .left-side {
            width: 50%;
            background: linear-gradient(135deg, #fff7e6, #ffe8cc);
            border-radius: 25px 0 0 25px;
            position: relative;
        }

        .right-side {
            width: 50%;
            background: linear-gradient(135deg, #d7e5f5, #ecf4ff);
            border-radius: 0 25px 25px 0;
            position: relative;
        }

        .person-info {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 5;
        }

        .akbar-info {
            left: 8%;
            text-align: left;
        }

        .yani-info {
            right: 8%;
            text-align: right;
        }

        .person-info h3 {
            font-weight: 700;
            margin-bottom: 8px;
            font-size: 26px;
            line-height: 1.2;
        }

        .separator {
            margin: 8px 0;
            font-size: 24px;
            font-weight: 300;
            opacity: 0.7;
        }

        .role {
            font-size: 14px;
            margin-top: 5px;
            color: #6c757d;
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        /* Person Images */
        .person-images {
            position: absolute;
            top: -200px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            z-index: 10;
        }

        .akbar-image, .yani-image {
            filter: drop-shadow(0 10px 25px rgba(0,0,0,0.15));
            border-radius: 15px;
        }

        .akbar-image {
            height: 335px;
            width: 250px;
            z-index: 1;
            position: relative;
            left: 160px;
            margin-top: 35px;
        }

        .yani-image {
            height: 290px;
            width: auto;
            z-index: 2;
            position: relative;
            right: 55px;
            margin-top: 70px;
        }

        .akbar-icon, .yani-icon {
            position: absolute;
            top: -60px;
            z-index: 15;
        }

        .akbar-icon {
            left: 18%;
        }

        .yani-icon {
            right: 18%;
        }

        .iconn {
            display: inline-block;
            background: white;
            padding: 12px;
            border-radius: 50%;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }

        .dotted-path {
            position: absolute;
        }

        .akbar-icon .dotted-path {
            top: 20px;
            left: 25px;
        }

        .yani-icon .dotted-path {
            top: 20px;
            right: 25px;
        }

        .business-section {
            max-width: 650px;
            margin: 0px auto 80px;
            position: relative;
        }

        .business-container {
            position: relative;
            padding: 0;
        }

        .business-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.8fr;
            gap: 0px;
            align-items: center;
        }

        .business-content {
            padding: 0px 30px;
        }

        .business-content h3 {
            font-weight: 700;
            margin-bottom: 0px;
            background: linear-gradient(135deg, #ff7b54, #ff9a8b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            font-size: 20px;
        }

        .business-content .separator {
            font-size: 1.5rem;
            margin: 8px 0;
            color: #ff7b54;
            opacity: 0.6;
        }

        .business-content .role {
            font-size: 0.9rem;
            color: #6c757d;
            font-weight: 500;
            letter-spacing: 0.5px;
            margin-bottom: 15px;
        }

        .business-image-container {
            
            position: relative;
            text-align: center;
        }

        .arrohman-image {
            height: 280px;
            width: 180px;
            border-radius: 20px;
            filter: drop-shadow(0 15px 30px rgba(0,0,0,0.15));
            position: relative;
            z-index: 2;
            top: -30px;
        }

        /* Enhanced Icons */
        .business-info-item {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
            padding: 8px 12px;
            background: rgba(255, 123, 84, 0.05);
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .business-info-item:hover {
            background: rgba(255, 123, 84, 0.1);
            transform: translateX(5px);
        }

        .business-info-item:last-child {
            margin-bottom: 0;
        }

        .icon-wrapper {
            background: linear-gradient(135deg, #ff7b54, #ff9a8b);
            padding: 8px;
            border-radius: 8px;
            margin-right: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(255, 123, 84, 0.3);
        }

        .business-info-item small {
            font-size: 0.85rem;
            font-weight: 500;
            color: #495057;
        }

        .business-decoration {
            position: absolute;
            width: 70px; /* Reduced from 100px */
            height: 70px;
            border-radius: 50%;
            opacity: 0.08; /* More subtle */
        }

        .decoration-1 {
            top: -15px;
            right: -15px;
            background: linear-gradient(135deg, #ff7b54, #ff9a8b);
        }

        .decoration-2 {
            bottom: -20px;
            left: -20px;
            background: linear-gradient(135deg, #4facfe, #00f2fe);
        }

        .business-card {
            background: linear-gradient(135deg, #fff5f5, #ffe8e8);
            border-radius: 25px;
            position: relative;
            overflow: hidden;
            /* padding: 15px; */
            padding: 0pxx;
        }

        .business-card::before {
            content: '';
            position: absolute;
            top: -40%;
            right: -40%;
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, rgba(255, 123, 84, 0.08) 0%, transparent 70%);
            border-radius: 50%;
        }

        .business-card {
            transition: transform 0.3s ease;
        }

        .business-card:hover {
            transform: translateY(-5px);
        }

        /* Responsive Design */
        @media screen and (max-width: 991px) {
            .collaboration-section {
                padding-top: 80px;
            }

            .collab-box {
                height: 140px;
            }

            .person-images {
                top: -170px;
            }

            .akbar-image {
                height: 280px;
                width: 210px;
                left: 100px;
            }

            .yani-image {
                height: 250px;
                right: 20px;
                margin-top: 30px;
            }

            .business-grid {
                gap: 30px;
            }

            .arrohman-image {
                height: 300px;
                width: 190px;
            }
        }

        @media screen and (max-width: 767px) {
            .main-title {
                font-size: 28px;
                margin-bottom: 50px;
            }

            .collaboration-container {
                padding-top: 0;
            }

            .collab-box {
                flex-direction: column;
                height: auto;
                background: linear-gradient(145deg, #fff7e6, #ecf4ff);
                padding: 20px;
                margin-top: 40px;
            }

            .left-side, .right-side {
                width: 100%;
                padding: 20px 0;
                background: none;
                border-radius: 0;
            }

            .person-images {
                display: none;
            }

            .akbar-info, .yani-info {
                position: static;
                transform: none;
                text-align: center;
                margin: 20px 0;
            }

            .akbar-info::before, .yani-info::before {
                content: '';
                display: block;
                width: 200px;
                height: 200px;
                margin: 0 auto 15px;
                background-size: contain;
                background-position: center;
                background-repeat: no-repeat;
                border-radius: 15px;
            }

            .akbar-info::before {
                background-image: url('https://via.placeholder.com/200x200/FFE8CC/FF7B54?text=Akbar');
            }

            .yani-info::before {
                background-image: url('https://via.placeholder.com/200x200/ECF4FF/4FACFE?text=Yani');
            }

            .akbar-icon, .yani-icon {
                display: none;
            }

            /* Business section mobile */
            .business-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .business-card {
                padding: 30px;
            }

            .business-content {
                padding: 20px;
                text-align: center;
                order: 2;
            }

            .business-image-container {
                order: 1;
                text-align: center;
            }

            .arrohman-image {
                height: 280px;
                width: 170px;
            }
        }

        @media screen and (max-width: 480px) {
           .business-content {
                padding: 15px;
            }

            .business-content h3 {
                font-size: 1.4rem;
            }

            .arrohman-image {
                height: 220px;
                width: 130px;
            }

            .business-info-item {
                padding: 6px 10px;
                font-size: 0.8rem;
            }

            .icon-wrapper {
                padding: 6px;
                margin-right: 8px;
            }

            .akbar-info::before, .yani-info::before {
                width: 180px;
                height: 180px;
            }
        }
